   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-navy: #1e3a8a;
            --primary-blue: #3b82f6;
            --accent-blue: #60a5fa;
            --light-blue: #dbeafe;
            --success-green: #10b981;
            --neutral-50: #f8fafc;
            --neutral-100: #f1f5f9;
            --neutral-200: #e2e8f0;
            --neutral-300: #cbd5e1;
            --neutral-400: #94a3b8;
            --neutral-500: #64748b;
            --neutral-600: #475569;
            --neutral-700: #334155;
            --neutral-800: #1e293b;
            --neutral-900: #0f172a;
            --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
            --gradient-secondary: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            line-height: 1.6;
            color: var(--neutral-700);
            overflow-x: hidden;
        }

        .font-display {
            font-family: 'Space Grotesk', sans-serif;
        }

           .text-gradient {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section {
            padding: 3.5rem 0;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary-navy);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: var(--shadow-md);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--neutral-600);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--gradient-primary);
            color: white;
            padding: 0.625rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
            color: var(--neutral-600);
            font-size: 1.5rem;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid var(--neutral-200);
            box-shadow: var(--shadow-lg);
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            padding: 1rem;
            gap: 0.75rem;
        }

        .mobile-nav-links a {
            color: var(--neutral-600);
            text-decoration: none;
            font-weight: 500;
            padding: 0.75rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover {
            background: var(--neutral-100);
            color: var(--primary-blue);
        }

   .hero {
    background-image: url("/static/images/hero_2.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0 3.5rem;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.65;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: var(--primary-navy);
    padding: 0.875rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    width: 100%;
    animation: heroFloat 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
}


.partners-section {
  padding: 6rem 1rem;
  background: var(--neutral-50);
}

.partners-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* --- Heading & Text --- */
.partners-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.partners-subtext {
  font-size: 1.2rem;
  color: var(--neutral-600);
  margin-bottom: 3rem;
}

.partners-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.partners-number .plus {
  color: var(--success-green);
}

/* --- Logo Grid --- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
}

.partner-item img {
  max-width: 140px;
  width: 100%;
  height: auto;
  opacity: 0.85;
  transition: all 0.3s ease;
  mix-blend-mode: multiply;
}

.partner-item img:hover {
  opacity: 1;
  transform: scale(1.05);
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .partners-heading {
    font-size: 2rem;
  }
  .partners-number {
    font-size: 3rem;
  }
  .partners-subtext {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .partner-item img {
    max-width: 110px;
  }
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
}

.stat-item .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success-green);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-item .label {
    font-size: 0.875rem;
    color: var(--neutral-600);
}

        .services {
            padding: 4rem 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--neutral-900);
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--neutral-600);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--neutral-200);
            cursor: pointer;
            box-shadow: var(--shadow-md);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-blue);
        }

        .service-image-container {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
        }

        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image {
            transform: scale(1.1);
        }

        .service-icon-overlay {
            position: absolute;
            bottom: 60%;
            left: 10%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: var(--shadow-lg);
            z-index: 10;
            border: 3px solid white;
        }

        .service-content {
            padding: 2.5rem 2rem 2rem;
        }

        .service-card h3 {
            font-size: 1.375rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--neutral-900);
            text-align: center;
        }

        .service-card p {
            color: var(--neutral-600);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            color: var(--neutral-600);
            font-size: 0.9rem;
        }

        .check-icon {
            width: 16px;
            height: 16px;
            background: var(--success-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            flex-shrink: 0;
        }

        .about {
            background-image: url("/static/images/about.jpg");
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(15, 23, 42, 0.72) 0%,
                    rgba(30, 58, 138, 0.58) 45%,
                    rgba(59, 130, 246, 0.38) 100%
                );
            backdrop-filter: none;
            z-index: 1;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-text h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.25rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--neutral-50);
            text-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
        }

        .about-text p {
            font-size: 1.125rem;
            color: var(--neutral-200);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        /* === Benefits list === */
        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .benefit-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .benefit-icon {
            width: 42px;
            height: 42px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }

        .benefit-content h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--neutral-50);
            /* was neutral-900 — too dark on overlay */
        }

        .benefit-content p {
            color: var(--neutral-200);
            line-height: 1.6;
            font-size: 1rem;
            margin: 0;
        }

        /* === Stats card === */
        .about-stats {
            background: #ffffff;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .about-stats h3 {
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }

        .stats-grid-about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .stats-grid-about .stat-item .number {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            margin-bottom: 0.25rem;
        }

        .stats-grid-about .stat-item .label {
            color: var(--neutral-600);
            font-size: 0.875rem;
        }

        .cta-section {
            background: var(--gradient-primary);
            color: white;
            padding: 3.5rem 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button-large {
            background: white;
            color: var(--primary-navy);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
            display: inline-block;
        }

        .cta-button-large:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }

        .footer {
            background: var(--neutral-900);
            color: var(--neutral-300);
            padding: 2.5rem 0 1.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-brand span {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--accent-blue);
        }

        .footer-section h4 {
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: var(--neutral-400);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-section ul li a:hover {
            color: var(--accent-blue);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--neutral-700);
            color: var(--neutral-500);
            font-size: 0.875rem;
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .section {
                padding: 2.5rem 0;
            }

            .nav-links,
            .cta-button {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 5rem 0 2.5rem;
                min-height: auto;
                background-attachment: scroll;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-stats {
                margin: 0 1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats-grid-about {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }