* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #1d2a49;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1002;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 100px;
  height: auto;
}

/* Nav Links */
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links ul {
  display: flex;
  font-size: 1.2em;
  gap: 50px;
}

.nav-links ul li a {
  color: #1d2a49;
  transition: 0.3s;
}

.nav-links ul li.active a {
  color: #bfdcec;
  font-weight: 600;
}

/* Right Section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons a {
  font-size: 30px;
  color: #1d2a49;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons a:hover i.fa-instagram { color: #e244a0; }
.social-icons a:hover i.fa-linkedin  { color: #0077b5; }
.social-icons a:hover i.fa-envelope  { color: #ab6bc5; }

/* Language Switch */
.language-switch .lang-btn,
.lang-button {
  font-size: 16px;
  padding: 6px 14px;
  border: 2px solid #1d2a49;
  border-radius: 20px;
  color: #1d2a49;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: 20px;
  
}
.lang-btn {
  background-color: transparent;
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.lang-btn:hover {
  background-color: #1d2a49;
  color: white;
}


.lang-button {
  background-color: transparent;
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.lang-button:hover {
  background-color: #1d2a49;
  color: white;
}

/* Device Visibility */
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* Hamburger */
.menu-hamburger { display: none; width: 35px; cursor: pointer; }

/* Close Button */
.close-btn { display: none; }

/* RESPONSIVE NAVBAR */
@media screen and (max-width: 900px) {
  .mobile-only { display: flex !important; }
  .desktop-only { display: none !important; }

  .navbar { padding: 10px 20px; }
  .navbar .logo { margin-right: auto; }
  .menu-hamburger { display: block; margin-left: auto; }

  /* Mobile Menu Overlay */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .nav-links.mobile-menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links ul { flex-direction: column; gap: 30px; text-align: center; }

  /* Show social icons & language switch inside mobile menu */
  .nav-links.mobile-menu .social-icons,
  .nav-links.mobile-menu .lang-button {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    z-index: 1004;
  }
}
/* SCROLL REVEAL SECTION  */
.scroll-reveal {
  height: 200vh;
  position: relative;
  background: #fff;
}

.image-and-text {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
  padding: 0;
}

.full-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s ease-in-out;
  z-index: 2;
}

.full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.text-content {
  opacity: 0;
  max-width: 600px;
  z-index: 1;
  padding: 40px;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(40px);
  color: #1d2a49;
  background: white;
  border-radius: 20px;
}

.text-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.image-and-text.scrolled .full-image {
  width: 50%;
  height: 80%;
  left: 0;
  top: 10%;
  border-radius: 20px;
}

.image-and-text.scrolled .text-content {
  opacity: 1;
  transform: translateY(0);
  z-index: 3;
  margin-left: 55%;
}

.spacer {
  height: 100vh;
  background-color: #f3f3f3;
}

/* ========== SCROLL: RESPONSIVE ========== */
@media (max-width: 768px) {
  .image-and-text {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
  }

  .image-and-text.scrolled .full-image {
    width: 90%;
    height: 50vh;
    top: 0;
    left: 5%;
    border-radius: 20px;
  }

  .image-and-text.scrolled .text-content {
    margin: 0;
    margin-top: 55vh;
    padding: 20px;
    width: 90%;
  }

  .text-content h1 { font-size: 2rem; }
  .text-content p   { font-size: 1rem; }
}

/* ========== TEAM SECTION ========== */
.team-section {
  padding: 60px 30px;
  background: linear-gradient(to right, #d3dbe5, #d3dbe5);
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #1d2a49;
  margin-bottom: 60px;
  font-weight: 800;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  width: 260px;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.team-card:hover {
  transform: rotateX(3deg) rotateY(3deg) scale(1.03);
  animation: glowPulse 1.5s ease-in-out;
}

.team-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-bottom: 4px solid #e0f2fe;
}

.team-details {
  padding: 20px;
  text-align: center;
  z-index: 1;
}

.team-details h3 {
  font-size: 20px;
  margin: 10px 0 4px;
  color: #1d2a49;
  font-weight: 600;
}

.team-details .role {
  font-size: 14px;
  color: #70a7d1;
  font-weight: 500;
}

.team-details .subtitle {
  font-size: 12px;
  color: #1d2a49;
  margin: 4px 0 12px;
  font-style: italic;
}

.team-details .bio {
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: #666;
  transition: max-height 0.4s ease;
  line-height: 1.4;
}

.team-card:hover .bio {
  max-height: 120px;
}

@media screen and (max-width: 768px) {
  .team-card {
    width: 100%;
    max-width: 360px;
  }
}

.shine {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.5), rgba(255,255,255,0.1));
  transform: skewX(-20deg);
  z-index: 5;
  pointer-events: none;
}

.team-card:hover .shine {
  animation: shineSwipe 1s forwards;
}

@keyframes glowPulse {
  0%   { box-shadow: 0 10px 25px rgb(255, 255, 255); }
  50%  { box-shadow: 0 15px 40px rgba(91, 132, 161, 0.908); }
  100% { box-shadow: 0 10px 25px rgb(255, 255, 255); }
}

@keyframes shineSwipe {
  0%   { left: -75%; }
  100% { left: 125%; }
}

@media screen and (max-width: 768px) {
  .team-card {
    width: 100%;
    max-width: 360px;
  }
}
/* FOOTER Section */
.footer {
  background-color: #ffffff;
  color: #1d2a49;
  padding: 25px 20px 20px;
  font-size: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-left .logo-img {
  width: 150px;
  margin-bottom: 10px;
}

.footer-left p {
  line-height: 1.5;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 12px;
  font-weight: 600;
  color: #1d2a49;
}

.footer-links ul {
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #1d2a49;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #bfdcec;
}

.footer-social .social-icons a {
  color: #1d2a49;
  margin-right: 15px;
  font-size: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #1d2a49;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-left .logo-img {
    margin-bottom: 15px;
  }

  .footer-left p {
    max-width: 100%;
  }

  .footer-links,
  .footer-social {
    margin-top: 30px;
  }

  .footer-social .social-icons a {
    margin-right: 10px;
  }
}

