 
 
 
 
 
 /* --- Base Styles --- */
        :root {
            --brand-orange: #F97316; /* A vibrant orange */
            --brand-dark-blue: #0F172A; /* A deep, dark blue */
            --brand-light-gray: #F8FAFC; /* A very light gray for backgrounds */
            --text-dark: #1E293B;
            --text-light: #64748B;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden; /* Prevents horizontal scroll from curves */
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 800; /* Extra bold for headings */
        }

        .fw-900 {
            font-weight: 900 !important;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive H1 */
        }
        
        h2 {
            font-size: clamp(2rem, 5vw, 3rem); /* Responsive H2 */
        }
        
        h3 {
            font-size: clamp(1.5rem, 4vw, 2rem); /* Responsive H3 */
        }

        .lead {
            font-size: clamp(1rem, 1.5vw, 1.25rem);
            font-weight: 400;
            color: var(--text-light);
        }

        /* --- Buttons --- */
        .btn-orange {
            background-color: var(--brand-orange);
            color: white;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border: 0;
            border-radius: 0.5rem; /* 8px */
            transition: all 0.3s ease;
        }
        .btn-orange:hover {
            background-color: #FB923C; /* Lighter orange on hover */
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
        }
        
        .btn-outline-dark {
            border-color: var(--text-light);
            color: var(--text-dark);
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem; /* 8px */
            border-width: 2px;
            transition: all 0.3s ease;
        }
        .btn-outline-dark:hover {
            background-color: var(--brand-dark-blue);
            color: white;
            border-color: var(--brand-dark-blue);
        }

        /* --- Utility & Spacing --- */
        .section-padding {
            padding: 6rem 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 4rem 0;
            }
        }

        /* --- Hero Section --- */
        .hero-section {
            padding-top: 4rem;
            padding-bottom: 6rem;
            position: relative;
            overflow: hidden;
        }

        .hero-image-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        /* This creates the curved background shapes */
        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -50%;
            width: 140%;
            height: 120%;
            background-color: #FFFBEB; /* Light yellow */
            border-radius: 45%;
            z-index: 1;
            transform: rotate(-15deg);
        }

        .hero-image-wrapper::after {
            content: '';
            position: absolute;
            top: -10%;
            right: -40%;
            width: 120%;
            height: 100%;
            background-color: #D1FAE5; /* Light green */
            border-radius: 40%;
            z-index: 2;
            transform: rotate(10deg);
        }

        .hero-image-wrapper img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        @media (max-width: 992px) {
            .hero-section {
                padding-top: 2rem;
                padding-bottom: 4rem;
                text-align: center;
            }
            .hero-image-wrapper {
                margin-top: 3rem;
            }
            .hero-image-wrapper::before,
            .hero-image-wrapper::after {
                /* Simplify curves on mobile */
                right: -60%;
                width: 160%;
            }
        }


        /* --- Reality Section --- */
        .reality-section {
            background-color: var(--brand-dark-blue);
            color: white;
            position: relative;
        }

        /* Wavy divider */
        .reality-section::after {
            content: '';
            position: absolute;
            bottom: -1px; /* Hide seam */
            left: 0;
            width: 100%;
            height: 100px; /* Wave height */
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,128L48,144C96,160,192,192,288,197.3C384,203,480,181,576,170.7C672,160,768,160,864,176C960,192,1056,224,1152,218.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: bottom;
            transform: scaleX(-1); /* Flip the wave */
        }

        .reality-section .container {
            position: relative;
            z-index: 2;
            padding-top: 6rem;
            padding-bottom: 9rem; /* Extra padding for wave */
        }
        
        @media (max-width: 768px) {
            .reality-section .container {
                padding-top: 4rem;
                padding-bottom: 7rem; 
            }
            .reality-section::after {
                height: 70px;
            }
        }

        /* --- Features Section --- */
        .features-section {
            background-color: white;
            padding-top: 4rem;
        }
        
        .feature-card {
            border: 1px solid #E2E8F0;
            border-radius: 1rem; /* 16px */
            padding: 2rem;
            background-color: white;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
        }
        
        .feature-card h4 {
            font-weight: 700;
            color: var(--text-dark);
        }
        
        .feature-card p {
            color: var(--text-light);
        }

        /* --- Career Section (Stats) --- */
        .career-section {
            background-color: var(--brand-light-gray);
        }
        
        .stat-item h2 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            color: var(--brand-orange);
            line-height: 1.1;
        }
        
        .stat-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0;
        }
        
        .stat-item p {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .stat-highlight {
            background-color: #FEF3C7; /* Light Yellow */
            border-radius: 0.75rem;
            padding: 1.5rem;
        }
        
        .stat-highlight h3 {
            color: #D97706; /* Amber */
        }

        /* --- Testimonials Section --- */
        .testimonial-card {
            background-color: white;
            border: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
            border-radius: 1rem;
            height: 100%;
        }
        
        .testimonial-card .card-body {
            padding: 2rem;
        }

        .testimonial-card img {
            border-radius: 1rem 1rem 0 0;
            aspect-ratio: 4/3;
            object-fit: cover;
        }
        
        .testimonial-card h5 {
            font-weight: 700;
            color: var(--text-dark);
        }
        
        .testimonial-card .company {
            font-weight: 700;
            color: var(--brand-orange);
            font-size: 0.9rem;
        }
        
        .testimonial-card .quote {
            font-style: italic;
            color: var(--text-light);
            border-left: 3px solid var(--brand-orange);
            padding-left: 1rem;
            margin-top: 1rem;
        }
        
        .testimonial-card .location {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* --- CTA Section --- */
        .cta-section {
            padding-top: 6rem;
            padding-bottom: 4rem;
            position: relative;
            overflow: hidden;
            background-color: var(--brand-light-gray);
        }

        .cta-image-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        /* Curved background */
        .cta-image-wrapper::before {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -30%;
            width: 140%;
            height: 130%;
            background-color: #FEE2E2; /* Light Red */
            border-radius: 45%;
            z-index: 1;
            transform: rotate(20deg);
        }

        .cta-image-wrapper img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        @media (max-width: 992px) {
            .cta-section {
                padding-top: 4rem;
                padding-bottom: 2rem;
                text-align: center;
            }
            .cta-image-wrapper {
                margin-top: 3rem;
            }
        }
        
        /* --- Footer --- */
        .footer {
            padding: 2rem 0;
            background-color: var(--brand-dark-blue);
            color: #94A3B8;
        }
