        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            overflow-x: hidden;
        }

        .background-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
            background-size: 400% 400%;
            animation: subtleGradientShift 20s ease infinite;
        }

        @keyframes subtleGradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            background: rgba(99, 102, 241, 0.05);
            border-radius: 50%;
            animation: float 30s infinite linear;
        }

        .shape:nth-child(1) {
            width: 60px;
            height: 60px;
            left: 15%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .shape:nth-child(2) {
            width: 80px;
            height: 80px;
            left: 75%;
            animation-delay: -8s;
            animation-duration: 30s;
        }

        .shape:nth-child(3) {
            width: 40px;
            height: 40px;
            left: 45%;
            animation-delay: -15s;
            animation-duration: 20s;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) rotate(180deg);
                opacity: 0;
            }
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-header {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-sun {
            width: 40px;
            height: 40px;
            position: relative;
        }

        .logo-sun::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            border: 3px solid #ff9db4;
            border-radius: 50%;
            background: transparent;
        }

        .logo-sun::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #ff9db4;
            border-radius: 50%;
        }

        .sun-rays {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
        }

        .sun-ray {
            position: absolute;
            width: 3px;
            height: 8px;
            background: #ff9db4;
            border-radius: 2px;
            top: 0;
            left: 50%;
            transform-origin: 50% 20px;
        }

        .sun-ray:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
        .sun-ray:nth-child(2) { transform: translateX(-50%) rotate(30deg); }
        .sun-ray:nth-child(3) { transform: translateX(-50%) rotate(60deg); }
        .sun-ray:nth-child(4) { transform: translateX(-50%) rotate(90deg); }
        .sun-ray:nth-child(5) { transform: translateX(-50%) rotate(120deg); }
        .sun-ray:nth-child(6) { transform: translateX(-50%) rotate(150deg); }
        .sun-ray:nth-child(7) { transform: translateX(-50%) rotate(180deg); }
        .sun-ray:nth-child(8) { transform: translateX(-50%) rotate(210deg); }
        .sun-ray:nth-child(9) { transform: translateX(-50%) rotate(240deg); }
        .sun-ray:nth-child(10) { transform: translateX(-50%) rotate(270deg); }
        .sun-ray:nth-child(11) { transform: translateX(-50%) rotate(300deg); }
        .sun-ray:nth-child(12) { transform: translateX(-50%) rotate(330deg); }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }


        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            font-size: 0.9rem;
            background: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #6366f1;
            border-color: #6366f1;
        }

        .btn-secondary:hover {
            background: #6366f1;
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Banner Section */
        .hero-banner {
            position: relative;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }
/* Video hero background */
.hero-video {
    position: absolute;
    z-index: 0;              /* behind overlay + content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;       /* fill without distortion */
    object-position: center;
    opacity: 1;              /* keep at 1; use overlay to darken */
    pointer-events: none;    /* ensure clicks go to buttons */
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    .hero-image {
        display: block;      /* static fallback if you keep it */
    }
}


        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.8));
            z-index: 1;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f1f5f9" width="1200" height="800"/><g fill="%236366f1" opacity="0.1"><circle cx="300" cy="200" r="100"/><circle cx="900" cy="150" r="80"/><circle cx="150" cy="600" r="60"/><circle cx="1000" cy="650" r="90"/></g></svg>') center/cover;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
            animation: slideUp 1s ease-out;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            animation: pulse 2s ease-in-out infinite alternate;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .hero-location {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 12px;
        }

        .btn-white {
            background: white;
            color: #6366f1;
            border: none;
        }

        .btn-white:hover {
            background: #f8fafc;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #6366f1;
            transform: translateY(-3px);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            from { transform: scale(1); }
            to { transform: scale(1.05); }
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: 4rem 0;
            background: #ffdab92e;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #6b7280;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* About Us Section */
        .about-section {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            color: #4b5563;
            line-height: 1.8;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .about-image {
            height: 400px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="white" fill-opacity="0.1" width="400" height="400"/><g fill="white" fill-opacity="0.05"><circle cx="100" cy="100" r="50"/><circle cx="300" cy="80" r="40"/><circle cx="80" cy="320" r="30"/><circle cx="350" cy="300" r="45"/></g></svg>');
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #1e293b, #334155);
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #f1f5f9;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .accepting-clients {
            background: linear-gradient(135deg, #b91097, #845ef5);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
        }

        .accepting-clients h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .accepting-clients p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        /* Contact Form Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal-content {
            background: white;
            border-radius: 16px;
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow: hidden;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
        }

        .modal-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }

        .close-button {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .close-button:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .modal-body {
            padding: 0;
            height: 600px;
        }

        .contact-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        .footer {
            background: #0f172a;
            color: #94a3b8;
            text-align: center;
            padding: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .modal-content {
                max-width: 95%;
                margin: 1rem;
            }

            .modal-header {
                padding: 1rem 1.5rem;
            }

            .modal-body {
                height: 500px;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .nav-buttons {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero-banner {
                height: 60vh;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-image {
                height: 300px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .service-card {
                padding: 2rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .btn-large {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }

/* =======================
   ABOUT PAGE (replace block)
   ======================= */

/* Top color band */
.about-hero {
  padding: 72px 0 36px;
  background: linear-gradient(135deg, #eef2ff 0%, #ede9fe 100%);
  border-bottom: 1px solid rgba(99,102,241,.15);
}
.about-hero .section-title { margin-bottom: .5rem; }
.about-hero .section-subtitle { color: #4c1d95; opacity: .8; }

/* Two-column layout: text gets more room than image */
.about-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .about-content { grid-template-columns: 1fr; }
}

/* Image card */
.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
}
.about-image img { display: block; width: 100%; height: auto; }

/* Mission highlight card */
.mission-highlight {
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  border: 1px solid rgba(99,102,241,.15);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 28px rgba(99,102,241,.12);
}
.mission-badge {
  display: inline-block;
  background: #ede9fe;
  color: #5b21b6;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}
.mission-short {
  font-size: 1.05rem;
  color: #374151;
  margin-top: .25rem;
}

/* Headings / lede */
.h2 { font-size: 1.6rem; margin: .25rem 0 1rem; font-weight: 700; color: #1f2937; }
.lede { font-size: 1.05rem; color: #4b5563; margin-bottom: 1rem; }

/* Mission bullet list (as cards) */
/* Fix list layout: keep icon in col 1, all other content in col 2 */
.mission-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.mission-list li {
  display: flex;  /* Use flexbox instead of grid */
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  line-height: 1.65;
}

.mission-list li > .mi {
  width: 36px; 
  height: 36px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  background: #ffffffaa;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
  flex-shrink: 0;  /* Icon stays fixed size */
}
.mission-list li > :not(.mi) {               /* <<< key fix */
  grid-column: 2;                            /* all text lives in the wide column */
}

/* Subtle hover lift */
.mission-list li:hover { transform: translateY(-2px); transition: transform .2s; }

/* Pastel tints per card (accessible on white background) */
.mission-list li:nth-child(1) { background: #F5F3FF; border-color: #DDD6FE; } /* violet */
.mission-list li:nth-child(2) { background: #EFF6FF; border-color: #BFDBFE; } /* blue */
.mission-list li:nth-child(3) { background: #FDF2F8; border-color: #FBCFE8; } /* pink */
.mission-list li:nth-child(4) { background: #ECFDF5; border-color: #A7F3D0; } /* green */
.mission-list li:nth-child(5) { background: #FFFBEB; border-color: #FDE68A; } /* amber */

/* Optional: stronger text contrast inside tinted cards */
.mission-list li strong { color: #111827; }

/* Give the mission highlight more padding so it doesn’t feel tight */
.mission-highlight { padding: 1.25rem 1.5rem; }

/* About two-column: keep text comfortably wide on desktop */
.about-content { grid-template-columns: 3fr 2fr; gap: 2rem; }
@media (max-width: 900px) {
  .about-content { grid-template-columns: 1fr; }
}

/* Three-up facts row */
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.about-facts > div {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}
.about-facts h3 { font-size: 1rem; margin-bottom: .35rem; color: #111827; }
.about-facts p { color: #6b7280; margin: 0; }

/* Optional: values chips */
.values-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.values-chips .chip {
  background: #f5f3ff; color: #4c1d95;
  border: 1px solid rgba(76,29,149,.15);
  padding: .4rem .7rem; border-radius: 999px;
  font-weight: 600; font-size: .85rem;
}

/* Optional: slim CTA band for About */
.cta-band {
  margin-top: 3rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  display: flex; flex-wrap: wrap;
  gap: 1rem; align-items: center; justify-content: space-between;
}
.cta-band h3 { margin: 0; font-size: 1.35rem; }

/* Mobile tweaks */
@media (max-width: 768px) {
  .mission-list li { grid-template-columns: 24px 1fr; }
  .about-facts { grid-template-columns: 1fr; }
}

/* Add these hamburger menu styles to your existing CSS */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav .btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    min-width: 200px;
    text-align: center;
}

/* Update your existing mobile styles */
@media (max-width: 768px) {
    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Read More functionality styles */
.expandable-content {
    margin: 1.5rem 0;
}

.read-more-btn {
    background: none;
    border: 2px solid #6366f1;
    color: #6366f1;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: inherit;
}

.read-more-btn:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

.read-more-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more-icon.rotated {
    transform: rotate(180deg);
}

.content-expanded {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .read-more-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Updated navigation styles - add these to your CSS file */

/* Replace your previous navigation CSS with this more specific version */

/* Base button styles (keep original) */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.9rem;
    background: none;
}

/* Navigation-specific button styles (only affects nav buttons) */
.nav-buttons .btn:not(.btn-primary):not(.btn-secondary),
.mobile-nav .btn:not(.btn-primary):not(.btn-secondary) {
    color: #1f2937; /* Consistent dark gray for nav links */
}

/* Reset visited link colors for nav links only */
.nav-buttons .btn:not(.btn-primary):not(.btn-secondary):link,
.nav-buttons .btn:not(.btn-primary):not(.btn-secondary):visited,
.mobile-nav .btn:not(.btn-primary):not(.btn-secondary):link,
.mobile-nav .btn:not(.btn-primary):not(.btn-secondary):visited {
    color: #1f2937;
}

/* Hover states for nav links only */
.nav-buttons .btn:not(.btn-primary):not(.btn-secondary):hover,
.mobile-nav .btn:not(.btn-primary):not(.btn-secondary):hover {
    color: #6366f1;
    transform: translateY(-1px);
}

/* Active page styling for nav links only */
.nav-buttons .btn.active,
.mobile-nav .btn.active {
    color: #6366f1;
    border-bottom: 3px solid #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

/* Primary button (Request Information) - keep original styling */
.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Secondary button (Client Portal) - keep original styling */
.btn-secondary {
    background: transparent;
    color: #6366f1;
    border-color: #6366f1;
}

.btn-secondary:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

/* Mobile nav active styling */
.mobile-nav .btn.active {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid #6366f1;
    border-radius: 8px;
}

/* Remove the old active page rule */
.nav-buttons a[aria-current="page"] { 
    border-bottom: none; /* Remove this if it exists */
}





        .btn-white {
            background: white;
            color: #6366f1;
            border: none;
        }

        .btn-white:hover {
            background: #f8fafc;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #6366f1;
            transform: translateY(-3px);
        }


    /* Careers section with background image and overlay */
.careers-hero-section {
    position: relative;
    background-image: url('/images/rbt.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    min-height: 300px;
}

.careers-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85); /* White overlay with 85% opacity */
    z-index: 1;
}

.careers-hero-section .container {
    position: relative;
    z-index: 2;
}

.careers-hero-section .section-title,
.careers-hero-section .section-subtitle {
    position: relative;
    z-index: 2;
}

/* Option 2: Gradient overlay approach */
.careers-hero-gradient {
    position: relative;
    background-image: url('/images/rbt.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    min-height: 300px;
}

.careers-hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.85) 50%, 
        rgba(241, 245, 249, 0.8) 100%);
    z-index: 1;
}

.careers-hero-gradient .container {
    position: relative;
    z-index: 2;
}

/* Option 3: Subtle blur effect */
.careers-hero-blur {
    position: relative;
    background-image: url('/images/rbt.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    min-height: 300px;
}

.careers-hero-blur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.7);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.careers-hero-blur .container {
    position: relative;
    z-index: 2;
}

/* Option 4: Split overlay - darker on sides, lighter in center */
.careers-hero-split {
    position: relative;
    background-image: url('/images/rbt.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    min-height: 300px;
}

.careers-hero-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.75) 0%, 
        rgba(255, 255, 255, 0.85) 50%, 
        rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.careers-hero-split .container {
    position: relative;
    z-index: 2;
}