/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #000119;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- NAVBAR (Unchanged) ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 1, 25, 0.85);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo img {
  height: 40px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #a8e6cf;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* ---------- ABOUT US SECTION ---------- */
/* ---------- ABOUT US (WOW VERSION) ---------- */
/* ---------- ABOUT US (CONNECTED DESIGN) ---------- */
/* ---------- ABOUT US (CINEMATIC CONNECTED) ---------- */
#about-us {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, #000119, #010a2d);
  overflow: hidden;
}

/* Floating gradient shapes */
#about-us::before,
#about-us::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168,230,207,0.15) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: floatShape 12s ease-in-out infinite;
}

#about-us::after {
  top: auto;
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(244,170,185,0.15) 0%, transparent 70%);
  animation-delay: 6s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* Header */
.about-header {
  text-align: center;
  padding: 6rem 2rem 4rem;
  max-width: 900px;
  margin: auto;
}

.about-heading {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(90deg, #A8E6CF, #F4AAB9, #F3E8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  color: #ccc;
  font-size: 1.2rem;
  margin-top: 1rem;
  line-height: 1.7;
}

/* Feature rows connected via wave separators */
/* Adjust container to keep content centered with padding */
#about-us {
  padding: 0 1.5rem 4rem;
}

/* Feature rows container with max width and centered */
.about-feature-row {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 400px;
  position: relative;
}

/* Wave separator smaller and softer */
.about-feature-row::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23000119" fill-opacity="1" d="M0,96L1440,160L1440,320L0,320Z"></path></svg>') no-repeat center;
  background-size: cover;
  pointer-events: none;
  opacity: 0.85;
}

/* Text and image columns share space nicely */
.about-text-col, .about-img-col {
  flex: 1 1 50%;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Text column background with slight padding and radius */
.about-text-col {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  flex-direction: column;
  max-width: 550px;
  margin: auto;
}

/* Image container with padding so image doesn't touch edges */
.about-img-col {
  padding: 2rem 3rem;
}

/* Image styling refined */
.about-img-col img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
  filter: brightness(0.9);
  transition: filter 0.4s ease, transform 0.4s ease;
}

/* On hover, gentle brighten and slight scale */
.about-img-col:hover img {
  filter: brightness(1);
  transform: scale(1.03);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .about-feature-row {
    flex-direction: column !important;
    max-width: 100%;
    padding: 0 1rem;
  }
  .about-text-col, .about-img-col {
    max-width: 100%;
    padding: 1rem 0;
  }
  .about-img-col img {
    max-width: 100%;
    border-radius: 12px;
  }
  .about-feature-row::after {
    display: none;
  }
}


/* ---------- TEAM INTRO SECTION ---------- */
#team-intro {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #010a2d, #000119);
  text-align: center;
}

.team-heading {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.team-subtitle {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(168, 230, 207, 0.3);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid rgba(168, 230, 207, 0.5);
}

.member-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #a8e6cf;
}

.role {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.8rem;
}

.bio {
  font-size: 0.9rem;
  color: #ddd;
}

/* ---------- FOOTER (Unchanged) ---------- */
#site-footer {
  background: rgba(0, 1, 25, 0.9);
  padding: 2rem;
  text-align: center;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-nav a {
  color: white;
  text-decoration: none;
}

.footer-contact-info {
  margin-top: 1rem;
}

/* ---------- MOBILE MENU ---------- */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #000119;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* ---------- SCROLL FADE EFFECT ---------- */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
