    :root {
            --primary-bg: #ffffff;
            --secondary-bg: #f8f9fa;
            --dark-bg: #0f172a;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --accent-blue: #3b82f6;
            --accent-purple: #8b5cf6;
            --border-color: #e2e8f0;
            --card-shadow: rgba(0, 0, 0, 0.08) 0px 0.706592px 0.706592px -0.666667px, rgba(0, 0, 0, 0.08) 0px 1.80656px 1.80656px -1.33333px, rgba(0, 0, 0, 0.07) 0px 3.62176px 3.62176px -2px, rgba(0, 0, 0, 0.07) 0px 6.8656px 6.8656px -2.66667px, rgba(0, 0, 0, 0.05) 0px 13.6468px 13.6468px -3.33333px, rgba(0, 0, 0, 0.02) 0px 30px 30px -4px, rgb(255, 255, 255) 0px 3px 1px 0px inset;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
            width: 100%;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', 'Hind', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-primary);
            background: radial-gradient(50% 50% at 50% 50%, #fff0 0%, #fff 100%);
            overflow-x: hidden;
            width: 100%;
            line-height: 1.6;
            position: relative;
            opacity: 1;
            animation: fadeIn 0.6s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navbar */
       .navbar {
            width: calc(100% - 1rem);
            display: flex;
            backdrop-filter: blur(30px);
            transition: all 0.3s;
            box-shadow: rgba(0, 0, 0, 0.122) 0px 0.706592px 0.706592px -0.666667px, 
                rgba(0, 0, 0, 0.12) 0px 1.80656px 1.80656px -1.33333px, 
                rgba(0, 0, 0, 0.11) 0px 3.62176px 3.62176px -2px, 
                rgba(0, 0, 0, 0.10) 0px 6.8656px 6.8656px -2.66667px, 
                rgba(0, 0, 0, 0.08) 0px 13.6468px 13.6468px -3.33333px, 
                rgba(0, 0, 0, 0.05) 0px 30px 30px -4px, 
                rgb(255, 255, 255) 0px 3px 1px 0px inset;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            margin: 0.5rem;
            padding: 0.8rem 1rem;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary) !important;
            letter-spacing: -0.5px;
        }

        /* Hide close button on desktop */
        .navbar-close {
            display: none !important;
        }

        .nav-link {
            color:var(--text-primary) !important;
            margin: 0 0.8rem;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0 !important;
            /* text-transform: uppercase; */
        }

        .nav-link:hover {
            color: var(--text-primary) !important;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Navbar Toggler */
        .navbar-toggler {
            border: 2px solid var(--text-primary);
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            background: transparent;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
            border-color: var(--accent-blue);
        }

        .navbar-toggler-icon {
            display: block;
            position: relative;
            width: 24px;
            height: 2px;
            background-color: var(--text-primary);
        }

        /* Hero Section */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
                 /* background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 30%);      */
                /* background: linear-gradient(145deg, #f1f5f5 0%, #9fa0a3 30%);     */
             /* background: linear-gradient(125deg, #3c4747 0%, #293147 50%); */ 
              /* background: linear-gradient(125deg, #1f1d1c 0%, #a1a1a1 50%);  */ 
              /* background: linear-gradient(to right, #0f172a, #1e293b); */



            padding:8rem 0 6rem;
        }

        #canvas-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 1;
            overflow: hidden;
            pointer-events: none;
        }

        #canvas-container canvas {
            width: 100% !important;
            height: 100% !important;
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            color: var(--accent-blue);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
            color:var(--text-primary);;
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .hero-content .subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--text-secondary);
            animation: fadeInUp 1s ease 0.2s backwards;
            font-weight: 400;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-content .quote {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            color:var(--text-primary);
            font-style: italic;
            animation: fadeInUp 1s ease 0.3s backwards;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }
        .btn-custom {
            background: var(--text-primary);
            color: #fff;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin: 0.5rem;
            animation: fadeInUp 1s ease 0.4s backwards;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-custom:hover {
            transform: translateY(-2px);
            background: #1e293b;
        }

        /* Button wrapper for rotating circle effect */
        .btn-with-arrow {
            position: relative;
            display: inline-block;
        }

        .btn-arrow-circle {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 55px;
            height: 55px;
            pointer-events: none;
        }

        .btn-rotating-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 55px;
            height: 55px;
            animation: rotateCircle 20s linear infinite;
        }

        .btn-arrow-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: var(--text-primary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            pointer-events: all;
        }

        .btn-arrow-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 6px 16px rgba(0,0,0,0.25);
        }

        .btn-outline-custom {
            background: transparent;
            color:var(--text-primary);
            border: 2px solid var(--border-color);
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
            margin: 0.5rem;
            animation: fadeInUp 1s ease 0.5s backwards;
        }

        .btn-outline-custom:hover {
            background: var(--secondary-bg);
            border-color: var(--text-primary);
            transform: translateY(-2px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services Section */
        .service-badge {
                
                background: rgba(59, 130, 246, 0.1);
                color: var(--accent-blue);
                padding: 0.5rem 1.2rem;
                border-radius: 50px;
                font-size: 0.85rem;
                font-weight: 600;
                /* margin-bottom: 2rem; */
                /* margin: auto; */
                width:230px;
                border: 1px solid rgba(59, 130, 246, 0.2);
        }
        #services, .section-wrapper {
            padding: 6rem 0;
            /* background: var(--secondary-bg); */
        }

        .section-label {
            color: var(--accent-blue);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .section-label-clients {
            color: var(--accent-blue);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-primary);
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .section-subtitle {
            text-align: left;
            color: var(--text-secondary);
            font-size: 1.15rem;
            margin-bottom: 4rem;
            margin-left: auto;
            margin-right: auto;
        }

        .bg-light-section {
            background: var(--primary-bg);
        }

        .service-card {
            background: var(--secondary-bg);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            transition: all 0.3s;
            /* border: 1px solid var(--border-color); */
           height: 90%;
         box-shadow: rgba(0, 0, 0, 0.12) 0px 0.706592px 0.706592px -0.666667px, 
            rgba(0, 0, 0, 0.12) 0px 1.80656px 1.80656px -1.33333px, 
            rgba(0, 0, 0, 0.11) 0px 3.62176px 3.62176px -2px, 
            rgba(0, 0, 0, 0.10) 0px 6.8656px 6.8656px -2.66667px, 
            rgba(0, 0, 0, 0.08) 0px 13.6468px 13.6468px -3.33333px, 
            rgba(0, 0, 0, 0.05) 0px 30px 30px -4px, 
            rgb(255, 255, 255) 0px 3px 1px 0px inset;
           
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--accent-blue);
            transition: all 0.3s;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .service-card img {
            width: 100%;
            height: auto;
            max-width: 100%;
            max-height: 350px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            display: block;
        }

        /* About Section */
        #about {
            padding: 6rem 0;
            background: var(--secondary-bg);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 1.2rem 1rem;
            background: var(--primary-bg);
            border-radius: 12px;
            flex: 1;
            min-width: 120px;
            border: 1px solid var(--border-color);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-blue);
        }

        .stat-label {
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }

        /* Contact Section */
        #contact {
            padding: 6rem 0;
            /* background: var(--primary-bg); */
        }

        .contact-form {
            background: var(--primary-bg);
            padding: 3rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .form-control, .form-select {
            background: var(--secondary-bg);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 0.9rem 1.1rem;
            border-radius: 8px;
            margin-bottom: 1.2rem;
            font-size: 0.95rem;
        }

        .form-control:focus, .form-select:focus {
            background: var(--primary-bg);
            border-color: var(--accent-blue);
            color: var(--text-primary);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-control::placeholder {
            color: var(--text-secondary);
        }

        .form-select option {
            background: var(--primary-bg);
            color: var(--text-primary);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.5rem;
            background: var(--secondary-bg);
            border-radius: 12px;
            transition: all 0.3s;
            border: 1px solid var(--border-color);
        }

        .contact-item:hover {
            background: var(--primary-bg);
            transform: translateX(5px);
            box-shadow: var(--card-shadow);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--accent-blue);
            min-width: 40px;
            text-align: center;
        }

        /* Footer */
        footer {
            /* background: var(--dark-bg); */
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: var(--secondary-bg);
        }

        .footer-box {
            padding: 3rem;
            border-radius: 16px;
            box-shadow: rgba(0, 0, 0, 0.08) 0px 0.706592px 0.706592px -0.666667px, 
                        rgba(0, 0, 0, 0.08) 0px 1.80656px 1.80656px -1.33333px, 
                        rgba(0, 0, 0, 0.07) 0px 3.62176px 3.62176px -2px, 
                        rgba(0, 0, 0, 0.07) 0px 6.8656px 6.8656px -2.66667px, 
                        rgba(0, 0, 0, 0.05) 0px 13.6468px 13.6468px -3.33333px, 
                        rgba(0, 0, 0, 0.02) 0px 30px 30px -4px, 
                        rgb(255, 255, 255) 0px 3px 1px 0px inset;
        }

        .footer-title {
            font-size: 3rem;
            font-weight: 800;
            /* color: #fff; */
            margin: 0 0 2rem 0;
            letter-spacing: -1px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3),
                        0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .footer-social-icons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: flex-start;
        }

        .footer-social-link {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background:var(--secondary-bg);
            border-radius: 50%;
            color:var(--text-primary);
            transition: all 0.3s;
            font-size: 1.3rem;
            text-decoration: none;
            box-shadow:rgba(0, 0, 0, 0.12) 0px 0.706592px 0.706592px -0.666667px, rgba(0, 0, 0, 0.12) 0px 1.80656px 1.80656px -1.33333px, rgba(0, 0, 0, 0.11) 0px 3.62176px 3.62176px -2px, rgba(0, 0, 0, 0.10) 0px 6.8656px 6.8656px -2.66667px, rgba(0, 0, 0, 0.08) 0px 13.6468px 13.6468px -3.33333px, rgba(0, 0, 0, 0.05) 0px 30px 30px -4px, rgb(255, 255, 255) 0px 3px 1px 0px inset;
        }

        .footer-social-link:hover {
            background: var(--text-primary);
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-social-link:focus,
        .footer-social-link:active {
            outline: none;
            background: var(--secondary-bg);
            color: var(--text-primary);
            transform: none;
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-nav-link {
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }

      

        .footer-divider {
            border: none;
            border-top: 3px solid var(--border-color);
            margin: 0;
        }

     .footer-copyright {
            text-align: center;
            font-size: 0.9rem;
            margin: 0;
            }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--accent-blue);
            transform: translateY(-3px);
        }



        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Additional Utility Classes */
        .text-gradient {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .badge-sm {
            display: inline-block;
            padding: 0.4rem 0.9rem;
            background: rgba(59, 130, 246, 0.1);
            color: var(--accent-blue);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }
        /* Elevate Section - Parallax Effect */
.consultation-wrapper {
    animation: fadeInUp 1s ease 0.6s backwards;
}

.rotating-circle {
    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Infinite Scrolling Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
}

.marquee {
    display: flex;
    width: 100%;
    /* overflow: hidden; */
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    background: var(--secondary-bg);
    border-radius: 50px;
    margin: 0 0.75rem;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0.706592px 0.706592px -0.666667px, 
                rgba(0, 0, 0, 0.08) 0px 1.80656px 1.80656px -1.33333px, 
                rgba(0, 0, 0, 0.07) 0px 3.62176px 3.62176px -2px, 
                rgba(0, 0, 0, 0.07) 0px 6.8656px 6.8656px -2.66667px, 
                rgba(0, 0, 0, 0.05) 0px 13.6468px 13.6468px -3.33333px, 
                rgba(0, 0, 0, 0.02) 0px 30px 30px -4px, 
                rgb(255, 255, 255) 0px 3px 1px 0px inset;
}

.marquee-item i {
    font-size: 1.2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Typewriter effect */
.typewriter-text {
    display: inline-block;
    padding-right: 3px;
    animation: blink-caret 0.75s step-end infinite;
    min-width: 0;
    text-align: left;
    white-space: nowrap;
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--accent-purple);
    }
}

.consultation-wrapper:hover .rotating-circle {
    animation: rotateCircle 10s linear infinite;
}

.parallax-image {
    transition: transform 0.3s ease-out;
}

/* Contact CTA Section */
 .contact-cta-section {
    padding: 8rem 0;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    position: relative;
    overflow: hidden;
}

.contact-cta-bg-circle-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.contact-cta-bg-circle-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.contact-cta-container {
    position: relative;
    z-index: 2;
}

.contact-cta-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    /* background: rgba(255, 255, 255, 0.2); */
    background:rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.contact-cta-badge span {
     color: var(--accent-blue); 
    font-weight: 600;
    font-size:0.9rem;
    letter-spacing: 1px;
}

.contact-cta-title {
    font-size: 180px;
    text-transform: uppercase;
    font-weight: 800;
    color:black;
    /* margin-bottom: 3rem; */
    line-height: 1.2;
    letter-spacing: -2px;
}

.contact-cta-btn {
    background: var(--text-primary);
    color: rgb(255, 255, 255);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin: 0.5rem;
    animation: 1s ease 0.4s 1 normal backwards running fadeInUp;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-cta-btn:hover {
    transform: translateY(-2px);
    background: #1e293b;
}

/* Benefits Section Styles */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* padding: 2rem 0 2rem 3rem; */
    position: relative;
}

.benefits-vertical-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.benefits-vertical-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: var(--accent-blue);
    border-radius: 2px;
    transition: height 0.3s ease-out;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: -0.8rem;
    top: 28px;
 
}

.benefit-icon-circle {
    min-width: 80px;
    width: 80px;
    height: 80px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.benefit-icon-circle i {
    font-size: 2rem;
    color: #ffffff;
}

.benefit-content {
    flex: 1;
    padding-top: 0.5rem;
}

.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.8rem 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.benefits-image-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.benefits-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.benefits-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--primary-bg);
}

.faq-header {
    padding-right: 2rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.faq-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--secondary-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0.706592px 0.706592px -0.666667px, 
                rgba(0, 0, 0, 0.08) 0px 1.80656px 1.80656px -1.33333px, 
                rgba(0, 0, 0, 0.07) 0px 3.62176px 3.62176px -2px, 
                rgba(0, 0, 0, 0.07) 0px 6.8656px 6.8656px -2.66667px, 
                rgba(0, 0, 0, 0.05) 0px 13.6468px 13.6468px -3.33333px, 
                rgba(0, 0, 0, 0.02) 0px 30px 30px -4px, 
                rgb(255, 255, 255) 0px 3px 1px 0px inset;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
}

/* Hover only on devices that support hover (not touch) */


.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Us Section - New Design */
.why-choose-circle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
        background: rgba(229, 231, 235, 0.5);
    box-shadow:rgba(0, 0, 0, 0.12) 0px 0.706592px 0.706592px -0.666667px, rgba(0, 0, 0, 0.12) 0px 1.80656px 1.80656px -1.33333px, rgba(0, 0, 0, 0.11) 0px 3.62176px 3.62176px -2px, rgba(0, 0, 0, 0.10) 0px 6.8656px 6.8656px -2.66667px, rgba(0, 0, 0, 0.08) 0px 13.6468px 13.6468px -3.33333px, rgba(0, 0, 0, 0.05) 0px 30px 30px -4px, rgb(255, 255, 255) 0px 3px 1px 0px inset;
    z-index: 5;
}

.why-circle-content {
    text-align: center;
    color:var(--text-primary);
}

.why-circle-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Benefits Circular Layout Container */
.benefits-circular-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 550px;
    margin: 0 auto;
}

/* Gray Circle Background */
.benefits-circle-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(229, 231, 235, 0.5);
    left: 120px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Benefit Items - Positioned along right edge of gray circle */
.benefit-item {
    position: absolute;
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 0;
    z-index: 10;
}

/* Benefit Item 1 - Top-right of gray circle curve */
.benefit-item-1 {
    top: 30px;
    left: 420px;
}

/* Benefit Item 2 - Right side upper of gray circle */
.benefit-item-2 {
    top: 155px;
    left: 510px;
}

/* Benefit Item 3 - Right side lower of gray circle */
.benefit-item-3 {
    top: 300px;
    left: 510px;
}

/* Benefit Item 4 - Bottom of gray circle */
.benefit-item-4 {
    bottom: 20px;
    left: 420px;
}

/* Benefit Icons - Positioned First */
.benefit-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    z-index: 12;
}

.benefit-icon-1 {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 12px 35px rgba(107, 114, 128, 0.4),
                0 0 0 12px rgba(107, 114, 128, 0.15);
}

.benefit-icon-2 {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 12px 35px rgba(107, 114, 128, 0.4),
                0 0 0 12px rgba(107, 114, 128, 0.15);
}

.benefit-icon-3 {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 12px 35px rgba(107, 114, 128, 0.4),
                0 0 0 12px rgba(107, 114, 128, 0.15);
}

.benefit-icon-4 {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 12px 35px rgba(107, 114, 128, 0.4),
                0 0 0 12px rgba(107, 114, 128, 0.15);
}

/* Horizontal Lines - All items have same horizontal lines */
.benefit-line {
    width: 100px !important;
    height: 2px !important;
    min-width: 40px;
    max-width: 120px;
    min-height: 2px;
    max-height: 2px;
    background: #d1d5db;
    flex-shrink: 0;
    margin: 0 15px;
    display: inline-block;
}

/* Benefit Labels */
.benefit-label {
    flex: 1;
    white-space: nowrap;
    text-align: left;
}

.benefit-label h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.3rem 0;
}

.benefit-label p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    white-space: normal;
    max-width: 220px;
}
