 
 :root {
      --primary: #4b6fff;
      --primary-dark: #3249b3;
      --accent: #8b5cf6;
      --bg: #f5f7fb;
      --bg-dark: #0f172a;
      --text-main: #0f172a;
      --text-muted: #6b7280;
      --white: #ffffff;
      --border: #e5e7eb;
      --radius-lg: 16px;
      --radius-md: 10px;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
      --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text-main);
      line-height: 1.6;
    }

    @keyframes fadeAnimation {
  0% { opacity: 0; }
  100% { opacity: 1; }
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout */
    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      /* max-width: 1120px; */
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .container:hover {
      filter: brightness(1.05);
      transform: translateY(-2px);
    }

    /* Sticky Header */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}

/* Layout */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 15px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: #3249b3;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #4b6fff, #8b5cf6);
  border-radius: 2px;
}

/* CTA Button */
.btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.6rem 1.2rem;
      border-radius: 99px;
      border: 1px solid transparent;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.18s ease;
      white-space: nowrap;
    }

.btn-primary {
  background: linear-gradient(135deg, #4b6fff, #8b5cf6);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.6rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}
    
.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-dark);
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-ghost:hover {
  background: rgba(15, 54, 109, 0.08);
}

/* Mobile Menu Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-menu a {
  padding: 0.8rem 0;
  color: #374151;
  text-decoration: none;
  font-size: 1rem;
}

.mobile-cta {
  margin-top: 1rem;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }
}


    /* Hero */
    .hero {
      padding: 3.5rem 0 3rem;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.15rem 0.7rem;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.08);
      color: var(--primary-dark);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.9rem;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, var(--accent), var(--primary));
    }

    .hero h1 {
      font-size: clamp(2.2rem, 3vw, 2.8rem);
      line-height: 1.1;
      margin-bottom: 1rem;
      color: var(--bg-dark);
      animation: fadeIn 1.2s ease-in-out;
    }

    .hero h1 span {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 32rem;
      margin-bottom: 1.6rem;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.4rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero-meta-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.9);
    }

    .hero-visual {
      background: radial-gradient(circle at 0% 0%, rgba(79, 70, 229, 0.18), transparent 55%),
                  radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.16), transparent 55%);
      border-radius: var(--radius-lg);
      padding: 1.8rem;
      box-shadow: var(--shadow-soft);
      background-color: var(--bg-dark);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .hero-visual-title {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(226, 232, 240, 0.8);
      margin-bottom: 0.6rem;
    }

    .hero-visual-main {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1.2rem;
    }

    .hero-visual-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
      margin-bottom: 1.4rem;
    }

    .hero-chip {
      border-radius: 999px;
      padding: 0.35rem 0.7rem;
      font-size: 0.7rem;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(148, 163, 184, 0.4);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      justify-content: center;
    }

    .hero-chip-dot {
      width: 5px;
      height: 6px;
      border-radius: 700px;
      background: radial-gradient(circle at 30% 30%, #22c55e, #16a34a);
    }

    .hero-visual-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: rgba(209, 213, 219, 0.9);
    }

    .hero-pill {
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: rgba(15, 23, 42, 0.7);
    }

    /* Sections */
    section {
      padding: 2.5rem 0;
    }

    .section-header {
      margin-bottom: 1.8rem;
    }

    .section-eyebrow {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--bg-dark);
      margin-bottom: 0.4rem;
    }

    .section-sub {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 90rem;
    }

    /* Leakage section */
    .leakage-grid {
      display: grid;
      background-color: #f5f7fb;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
      padding: 1rem 0;
    }

    .card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 1.3rem;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(226, 232, 240, 0.9);
      animation-name: fadeAnimation;
      animation-duration: 1s;
      animation-timing-function: ease;
      animation-delay: 0.1s;
      animation-iteration-count: 1;
      animation-direction: normal;
      animation-fill-mode: backwards;

    }
   



    .card-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.6rem;
      color: var(--text-muted);
    }

    .tag-dot-red {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #f97373, #ef4444);
    }

    .tag-dot-amber {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #facc15, #eab308);
    }

    .tag-dot-yellow {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #fbbf24, #f59e0b);
    }

    .card-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .card-sub {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .card-list {
      list-style: none;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .card-list li {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.25rem;
    }

    .card-bullet {
      margin-top: 0.3rem;
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.9);
      flex-shrink: 0;
    } 

    /* Execution architecture */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .pillar-card {
      background: var(--white);
      /* border-radius: var(--radius-md); */
          border-radius: 12px;
      padding: 1.1rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      /* box-shadow: var(--shadow-card); */
      /* box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08); */
          box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
       display: flex;
    flex-direction: column;
      animation-name: fadeAnimation;
      animation-duration: 1.5s;
      animation-timing-function: ease;
      animation-delay: 0.3s;
      animation-iteration-count: 1;
      animation-direction: normal;
      animation-fill-mode: forwards;
    }

    .pillar-card:hover {
      filter: brightness(1.05);
      transform: translateY(-2px);
    }

    .pillar-label {
      font-size: 0.75rem;
          font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    /* Gradient background */
    background: linear-gradient(90deg, var(--accent), var(--primary));
    /* Clip background to text */
    -webkit-background-clip: text;
    background-clip: text;
    /* Make text transparent so gradient shows */
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 0.3rem;
    }

    .pillar-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .pillar-sub {
      font-size: 0.85rem;
      color: var(--accent);
      margin-bottom: 0.6rem;
    }

    .pillar-list {
      list-style: none;
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .pillar-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0.25rem;
    }
    .pillar-bullet {
          width: 5px;
          height: 5px;
          border-radius: 50%;
          background: #9ca3af;
          margin-top: 0.4rem;
        }

    .pillar-cta {
      font-size: 0.8rem;
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      cursor: pointer;
    }

    .pillar-cta:hover {
    text-decoration: underline;
    }


    /* CEO/COO section */
    .two-col {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .role-card {
      background: var(--bg-dark);
      border-radius: var(--radius-md);
      padding: 1.3rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
    }

    .role-title {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--white);
      margin-bottom: 0.4rem;
    }

    .role-heading {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 0.6rem;
      color: var(--white);
    }

    .role-list {
      list-style: none;
      font-size: 0.75rem;
      color: var(--white);
    }

    .role-list li {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.25rem;
    }

    /* Impact section */
    .impact-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .impact-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 1.1rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
    }

    .impact-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 0.3rem;
    }

    .impact-metric {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .impact-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* Insights */
    .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .insight-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 1.1rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .insight-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .insight-title {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .insight-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
      flex: 1;
    }

    .insight-link {
      font-size: 0.8rem;
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    /* CTA strip */
    .cta-strip {
      margin-top: 1.5rem;
      padding: 1.8rem 1.5rem;
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
                  radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.18), transparent 55%),
                  var(--bg-dark);
      color: var(--white);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      box-shadow: var(--shadow-soft);
    }

    .cta-strip-text {
      max-width: 32rem;
    }

    .cta-strip-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .cta-strip-sub {
      font-size: 0.9rem;
      color: rgba(226, 232, 240, 0.9);
    }

    .cta-button {
    background: linear-gradient(135deg, #4b6fff, #8b5cf6);
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  }

  .cta-button:hover {
    background: linear-gradient(135deg, #FFD7E8, #f6665c);
    filter: brightness(1.05);
    transform: translateY(-2px);
  }
    /* Footer */
    footer {
      margin-top: 2.5rem;
      padding: 2rem 0 1.5rem;
      border-top: 1px solid rgba(226, 232, 240, 0.9);
      background: #f9fafb;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      gap: 1.2rem;
    }

    .footer-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    /* Responsive */
    @media (max-width: 960px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-visual {
        order: -1;
      }
      .leakage-grid,
      .pillars-grid,
      .two-col,
      .impact-grid,
      .insights-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .nav-links {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding-top: 2.5rem;
      }
      .cta-strip {
        padding: 1.4rem 1.1rem;
      }
      .nav-cta .btn-ghost {
        display: none;
      }
    }

     /* HERO */
    .services-hero {
      text-align: center;
      padding: 4rem 0 2rem;
    }

    .services-title {
      font-size: 2.4rem;
      font-weight: 700;
    }

    .services-subtitle {
      font-size: 1.2rem;
      color: var(--muted);
      margin-top: 0.5rem;
    }

    .services-description {
      font-size: 1rem;
      color: var(--muted);
      max-width: 800px;
      margin: 1rem auto 0;
    }

    /* COLLAPSIBLE CONTENT */
.collapse-content {
  max-height: 0;
  font-size: 1rem;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  padding: 0;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 90rem;
  margin-bottom: 1rem;
}

/* WHEN OPEN */
.collapse-content.open {
  padding: 1rem 1rem;
  max-height: 400px; /* enough for text + image */
}

/* INNER GRID */
.collapse-inner {
  display: flex;
  gap: 2rem;
}

/* TEXT AREA (70%) */
.collapse-text {
  flex: 0 0 60%;
  font-size: .8rem;
  color: #4b5563;
  line-height: 1.7;
}

/* IMAGE AREA (30%) */
.collapse-image {
  flex: 0 0 40%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.08);
}

.collapse-image img {
  width: 50%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .collapse-inner {
    flex-direction: column;
  }

  .collapse-text,
  .collapse-image {
    flex: 0 0 100%;
  }
}


    /* GRID */
    .services-grid-section {
      padding: 2rem 0 3rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.8rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 0.8rem;
    }

    .service-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .service-subtitle {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 0.8rem;
    }

    .service-description {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .service-list {
      list-style: none;
      padding: 0;
      margin-bottom: 1.2rem;
    }

    .service-list li {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.4rem;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .bullet {
      width: 6px;
      height: 6px;
      background: #9ca3af;
      border-radius: 50%;
      margin-top: 0.4rem;
    }

    .service-cta {
      margin-top: auto;
      background: none;
      border: none;
      color: #3249b3;
      font-size: 0.9rem;
      cursor: pointer;
      padding: 0;
      text-align: left;
    }

    .service-cta:hover {
      text-decoration: underline;
    }

    /* CTA BANNER */
    .services-cta {
      margin-top: 2rem;
      padding: 2.5rem 0;
      background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
                  radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.18), transparent 55%),
                  var(--bg-dark);
      color: var(--white);
    }

    .cta-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      align-items: center;
      background-color: (var(--bg-dark));
    }

    .cta-title {
      font-size: 1.5rem;
      font-weight: 600;
    }

    .cta-sub {
      font-size: 1rem;
      color: #e2e8f0;
      max-width: 500px;
    }

    .cta-button {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: var(--white);
      border: none;
      padding: 0.9rem 1.6rem;
      border-radius: 999px;
      font-size: 0.95rem;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
    }

    .cta-button:hover {
      filter: brightness(1.05);
      transform: translateY(-2px);
    }

    /* WRAPPER */
.services-collapsible {
  width: 80%;
  margin: 2rem 2rem;
  border-bottom: 1px solid #e5e7eb;
}

/* HEADER (CLICKABLE) */
.collapse-header {
  padding: 1.2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  transition: color 0.3s ease;
}

.collapse-header:hover {
  color: #4b6fff;
}

/* ICON ROTATION */
.collapse-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.collapse-icon.open {
  transform: rotate(45deg);
}

.about-page {
  padding: 4rem 0;
  background: #f5f7fb;
  color: #0f172a;
  font-family: system-ui, sans-serif;
}

.about-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* -----------------------------------
   TITLES & TYPOGRAPHY
----------------------------------- */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.section-sub {
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.about-section-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: #0f172a;
}

.about-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* -----------------------------------
   CARD BLOCKS (MATCH HOMEPAGE)
----------------------------------- */
.about-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  margin-bottom: 2rem;
}

/* TEAM GRID (same as before) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-photo img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* ========================= */
/* MODAL STYLING */
/* ========================= */

.team-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: left;
  align-items: center;
  padding: 2rem;
  z-index: 9999;
}

.team-modal.open {
  display: flex;
}

.team-modal-content {
  background: #ffffff;
  border-radius: 10px;
  max-width: 700px;
  width: 100%;
  text-align: left;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  animation: modalFadeIn 0.35s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 18px;
  right: 8px;
  font-size: 2rem;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #4b6fff;
}

/* MODAL BODY */
.modal-body {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.modal-photo {
  width: 40%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.modal-text {
  width: 60%;
}

.modal-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.modal-title {
  color: #6b7280;
  margin-bottom: 1rem;
}

.modal-bio {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 700px) {
  .modal-body {
    flex-direction: column;
  }

  .modal-photo,
  .modal-text {
    width: 100%;
  }
}


/* PARTNERS SECTION */
.partners-section {
  margin-top: 4rem;
  padding: 3rem 0;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  margin-top: 2rem;
}

.partner-logo img {
  width: 100%;
  max-width: 160px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */
@media (max-width: 900px) {
  .section-title {
    font-size: 1.8rem;
  }

  .about-section-title {
    font-size: 1.4rem;
  }
}
/* -----------------------------------
   PAGE WRAPPER
----------------------------------- */
.contact-page {
  background: #f5f7fb;
  padding-bottom: 4rem;
  font-family: system-ui, sans-serif;
  color: #0f172a;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* -----------------------------------
   HERO SECTION
----------------------------------- */
.contact-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.contact-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-sub {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* -----------------------------------
   CONTACT GRID
----------------------------------- */
.contact-section {
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* -----------------------------------
   CONTACT DETAILS CARD
----------------------------------- */
.contact-details {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
}

.info-label {
  font-size: 0.85rem;
  color: #6b7280;
}

.info-value {
  font-size: 1rem;
  font-weight: 500;
}

.contact-button {
  background: linear-gradient(135deg, #4b6fff, #8b5cf6);
  color: white;
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* -----------------------------------
   CONTACT FORM CARD
----------------------------------- */
.contact-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-form h2 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #374151;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  background: #f9fafb;
}

.form-button {
  background: #3249b3;
  color: white;
  border: none;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.form-button:hover {
  background: #243a8f;
}

/* IMAGE CARD (REPLACES FORM) */
.contact-image-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Make the image fill the div perfectly */
.contact-image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* Ensures full coverage */
  object-position: center; /* Keeps the focal point centered */
  display: block;
}

/* -----------------------------------
   MAP SECTION
----------------------------------- */
.map-section {
  margin-top: 3rem;
}

.map-wrapper {
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */
@media (max-width: 900px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
