.footer-section {
  width: 100%;
  padding: 50px 5%;
  display: flex;
  justify-content: space-around;   /* FIXED */
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: inherit;
  gap: 40px;
  flex-wrap: wrap;
}





/* LEFT SIDE */
.footer-left {
  flex: 2;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.4);
  transition: 0.3s ease;
}

.footer-photo:hover {
  transform: scale(1.05);
}

.footer-left-text {
  display: flex;
  flex-direction: column;
}

.footer-name {
  font-size: 1.6rem;
  margin: 0;
}

.footer-role {
  font-size: 1rem;
  opacity: 0.8;
}

/* RIGHT SIDE */
.footer-right {
    flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: left;   /* keep center */
  text-align: left;
  padding-left: 45px;    /* FIX: moves it away from the picture */
}


.footer-connect {
  font-size: 2rem;
  font-weight: 700;      /* ✔ bold */
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}

/* ICONS */
.footer-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: 0.25s ease;
}

.footer-icons img:hover {
  transform: translateY(-5px) scale(1.1);
}

/* NAV LINKS */
.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: inherit;
  font-size: 1.1rem;
  opacity: 0.75;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .footer-left {
    justify-content: center;
    width: 100%;
  }

  .footer-right {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-icons {
    justify-content: center;
  }
}

.footer-icons img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: 0.3s ease;
  filter: drop-shadow(0px 0px 2px rgba(255,255,255,0.2));
}
.neon-icon img:hover {
  transform: translateY(-6px) scale(1.12);
  filter: 
    drop-shadow(0 0 8px rgba(0, 255, 255, 0.9))
    drop-shadow(0 0 16px rgba(0, 255, 255, 0.6))
    drop-shadow(0 0 24px rgba(0, 255, 255, 0.4));
}


.neon-icon img {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s ease;
}

.neon-icon:hover img {
  transform: translateY(-5px) scale(1.1);
}

