   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-red: #a00000;
            --light-red: #d10000;
            --black: #121212;
            --dark-gray: #1e1e1e;
            --medium-gray: #2a2a2a;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --text-gray: #cccccc;
        }

        body {
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }


        /* Header Styles */
        header {
            background-color: rgba(18, 18, 18, 0.95);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 32px;
            font-weight: 800;
            color: var(--white);
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--primary-red);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
            position: relative;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            font-size: 16px;
        }

        nav ul li a:hover {
            color: var(--primary-red);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-red);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .cta-button {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(209, 0, 0, 0.3);
        }

        .cta-button:hover {
            background-color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(209, 0, 0, 0.4);
        }

        .secondary-button {
            background-color: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .secondary-button:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 200px 0 120px;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, transparent, var(--black));
        }

        .hero h2 {
            font-size: 52px;
            margin-bottom: 25px;
            color: var(--white);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            font-weight: 800;
            line-height: 1.2;
        }

        .hero p {
            font-size: 22px;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--white);
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-buttons .cta-button {
            font-size: 18px;
            padding: 15px 35px;
        }

        /* Hire Talent Popup Styles */
.hire-talent-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px 0;
}

.hire-talent-popup.active {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Changed from center to flex-start */
}

.hire-talent-content {
    background-color: rgb(1, 1, 1);
    width: 90%;
    max-width: 800px;
    max-height: 90vh; /* Limit height and enable scrolling */
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    margin: auto; /* Center vertically */
}

.hire-talent-header {
    background-color: #a00000;
    color: white;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.hire-talent-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.hire-talent-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hire-talent-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 140px); /* Adjust based on header height */
}

.hire-talent-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-control:focus {
    border-color: #a00000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(160, 0, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-submit {
    grid-column: 1 / -1;
    background-color: #a00000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: #800000;
    transform: translateY(-2px);
}

.talent-requirements {
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #a00000;
}

.talent-requirements h3 {
    margin-bottom: 15px;
    color: #a00000;
    font-size: 18px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.requirement-item i {
    color: #a00000;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.requirement-item span {
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive styles for popup */
@media (max-width: 768px) {
    .hire-talent-popup {
        padding: 10px;
    }
    
    .hire-talent-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .hire-talent-body {
        padding: 20px;
        max-height: calc(95vh - 120px);
    }
    
    .hire-talent-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .hire-talent-header {
        padding: 15px;
    }
    
    .hire-talent-header h2 {
        font-size: 20px;
    }
    
    .hire-talent-header p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hire-talent-body {
        padding: 15px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .talent-requirements {
        padding: 15px;
    }
    
    .requirement-item span {
        font-size: 13px;
    }
}

/* Ensure form elements are properly visible */
input, select, textarea {
    box-sizing: border-box;
}

/* Scrollbar styling for webkit browsers */
.hire-talent-body::-webkit-scrollbar {
    width: 6px;
}

.hire-talent-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.hire-talent-body::-webkit-scrollbar-thumb {
    background: #a00000;
    border-radius: 3px;
}

.hire-talent-body::-webkit-scrollbar-thumb:hover {
    background: #800000;
}

        /* Stats Section */
        .stats {
            background-color: var(--primary-red);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/diagmonds.png');
            opacity: 0.1;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .stat-label {
            font-size: 20px;
            font-weight: 600;
            color: var(--white);
        }

        /* Services Section */
        .services {
            padding: 40px 0;
            background-color: var(--dark-gray);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-size: 42px;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--text-gray);
            max-width: 700px;
            margin: 30px auto 0;
            font-size: 18px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: linear-gradient(145deg, var(--black), var(--medium-gray));
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            border-left: 4px solid var(--primary-red);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(209, 0, 0, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            font-size: 50px;
            color: var(--primary-red);
            margin-bottom: 25px;
            transition: transform 0.4s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 26px;
            margin-bottom: 20px;
            color: var(--white);
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-gray);
            margin-bottom: 25px;
            font-size: 16px;
        }

        .service-link {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }

        .service-link i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .service-link:hover {
            color: var(--light-red);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Why Choose Us Section */
        .why-us {
            padding: 40px 0;
            background: linear-gradient(to bottom, var(--black), var(--dark-gray));
            position: relative;
        }

        .why-us-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-us-content h2 {
            font-size: 42px;
            color: var(--white);
            margin-bottom: 30px;
            font-weight: 800;
        }

        .why-us-content p {
            color: var(--text-gray);
            margin-bottom: 30px;
            font-size: 18px;
        }

        .benefits-list {
            list-style: none;
        }

        .benefits-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }

        .benefits-list i {
            color: var(--primary-red);
            font-size: 20px;
            margin-right: 15px;
            margin-top: 5px;
        }

        .benefits-list span {
            color: var(--white);
            font-weight: 600;
        }

        .why-us-image {
            position: relative;
        }

        .why-us-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .floating-card {
            position: absolute;
            background: var(--primary-red);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            color: var(--white);
            width: 70%;
        }

        .floating-card-1 {
            top: -20px;
            right: -20px;
        }

        .floating-card-2 {
            bottom: -20px;
            left: -20px;
        }

        .floating-card h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-red));
            padding: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/diagmonds.png');
            opacity: 0.1;
        }

        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 25px;
            color: var(--white);
            font-weight: 800;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            transition: transform 0.3s;
        }

        .feature-item:hover {
            transform: translateY(-10px);
        }

        .feature-item i {
            font-size: 40px;
            color: var(--white);
            margin-bottom: 20px;
        }

        .feature-item h4 {
            font-size: 20px;
            color: var(--white);
            margin-bottom: 15px;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 40px 0;
            background-color: var(--dark-gray);
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .testimonial-card {
            background: var(--black);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            border-top: 4px solid var(--primary-red);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 80px;
            color: var(--primary-red);
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            color: var(--text-gray);
            margin-bottom: 25px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-red);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
        }

        .author-info h4 {
            color: var(--white);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--text-gray);
            font-size: 14px;
        }

        /* Contact Section */
        .contact {
            padding: 50px 0;
            background-color: var(--black);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 32px;
            margin-bottom: 25px;
            color: var(--white);
            font-weight: 700;
        }

        .contact-info p {
            margin-bottom: 20px;
            color: var(--text-gray);
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            color: var(--primary-red);
            margin-right: 15px;
            font-size: 18px;
            margin-top: 3px;
        }

        .office-locations {
            margin-top: 40px;
        }

        .office-locations h4 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--white);
            font-weight: 700;
        }

        .office-card {
            background: var(--dark-gray);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 3px solid var(--primary-red);
        }

        .office-card h5 {
            color: var(--white);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .office-card p {
            color: var(--text-gray);
            margin-bottom: 5px;
        }

        .contact-form {
            background: var(--dark-gray);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-form h3 {
            font-size: 28px;
            margin-bottom: 25px;
            color: var(--white);
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--white);
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            background-color: var(--medium-gray);
            border: 1px solid #444;
            border-radius: 8px;
            color: var(--white);
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 2px rgba(209, 0, 0, 0.2);
        }

        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .radio-option {
            display: flex;
            align-items: center;
        }

        .radio-option input {
            margin-right: 10px;
        }

        /* Footer */
        footer {
            background-color: var(--black);
            padding: 30px 0 30px;
            border-top: 1px solid #333;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--white);
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--primary-red);
            bottom: 0;
            left: 0;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-column ul li a:hover {
            color: var(--primary-red);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #999;
            font-size: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--medium-gray);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--primary-red);
            transform: translateY(-5px);
        }

/* WhatsApp Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
        /* FAQ Section Styles */
        .faq-section {
            padding: 30px 0;
            background: linear-gradient(to bottom, var(--dark-gray), var(--black));
            position: relative;
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .faq-title h2 {
            font-size: 42px;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .faq-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .faq-title p {
            color: var(--text-gray);
            max-width: 700px;
            margin: 30px auto 0;
            font-size: 18px;
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: linear-gradient(145deg, var(--black), var(--medium-gray));
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-left: 4px solid var(--primary-red);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: rgba(209, 0, 0, 0.05);
        }

        .faq-question h3 {
            font-size: 20px;
            color: var(--white);
            font-weight: 700;
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }

        .faq-icon {
            color: var(--primary-red);
            font-size: 20px;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            background-color: rgba(42, 42, 42, 0.5);
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding: 0 30px 30px;
        }

        .faq-answer-content {
            padding-top: 20px;
        }

        .faq-answer-content p {
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .faq-list {
            list-style: none;
            margin: 15px 0;
        }

        .faq-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .faq-list li::before {
            content: '•';
            color: var(--primary-red);
            font-size: 20px;
            position: absolute;
            left: 0;
            top: -2px;
        }

        .highlight-box {
            background: rgba(209, 0, 0, 0.1);
            border-left: 3px solid var(--primary-red);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .highlight-box p {
            margin: 0;
            color: var(--white);
            font-weight: 600;
        }

        .cost-breakdown {
            margin-top: 20px;
        }

        .cost-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cost-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .cost-percentage {
            background: var(--primary-red);
            color: var(--white);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .cost-details {
            flex: 1;
        }

        .cost-details h4 {
            color: var(--white);
            margin-bottom: 8px;
            font-size: 18px;
        }

        .cost-details p {
            color: var(--text-gray);
            margin: 0;
        }

        /* Animation Classes */
        .animate-fade-in {
            animation: fadeIn 1s ease-out;
        }

        .animate-slide-up {
            animation: slideUp 1s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Exit Popup Modal Styles */
        .exit-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.5s ease-out;
        }

        .exit-popup.active {
            display: flex;
        }

        .exit-popup-content {
            background: linear-gradient(145deg, var(--black), var(--dark-gray));
            width: 90%;
            max-width: 450px;
            border-radius: 12px;
            box-shadow: 0 15px 50px rgba(209, 0, 0, 0.3);
            overflow: hidden;
            border: 2px solid var(--primary-red);
            animation: slideUp 0.5s ease-out;
            position: relative;
        }

        .exit-popup-header {
            background: var(--primary-red);
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .exit-popup-header h2 {
            color: var(--white);
            font-size: 24px;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .exit-popup-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }

        .close-popup {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 20px;
            cursor: pointer;
            transition: transform 0.3s;
            z-index: 10;
        }

        .close-popup:hover {
            transform: scale(1.2);
        }

        .exit-popup-body {
            padding: 25px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .popup-title {
            font-size: 18px;
            color: var(--white);
            margin-bottom: 12px;
            text-align: center;
            font-weight: 600;
        }

        .popup-subtitle {
            color: var(--text-gray);
            margin-bottom: 20px;
            text-align: center;
            font-size: 14px;
        }

        .popup-form {
            margin-top: 15px;
        }

        .popup-form-group {
            margin-bottom: 15px;
        }

        .popup-form-group label {
            display: block;
            margin-bottom: 6px;
            color: var(--white);
            font-weight: 600;
            font-size: 13px;
        }

        .popup-form-control {
            width: 100%;
            padding: 10px 12px;
            background-color: var(--medium-gray);
            border: 1px solid #444;
            border-radius: 6px;
            color: var(--white);
            font-size: 14px;
            transition: all 0.3s;
        }

        .popup-form-control:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 2px rgba(209, 0, 0, 0.2);
        }

        .country-selector {
            display: flex;
            align-items: center;
            margin-bottom: 6px;
        }

        .country-flag {
            width: 25px;
            height: 18px;
            background-color: #eee;
            margin-right: 8px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--black);
        }

        .math-check {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .math-check span {
            margin-right: 8px;
            color: var(--white);
            font-weight: 600;
            font-size: 14px;
        }

        .math-check input {
            width: 70px;
            padding: 6px 8px;
            background-color: var(--medium-gray);
            border: 1px solid #444;
            border-radius: 5px;
            color: var(--white);
            font-size: 14px;
        }

        .popup-submit {
            background: var(--primary-red);
            color: var(--white);
            border: none;
            padding: 12px;
            width: 100%;
            border-radius: 6px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 12px;
        }

        .popup-submit:hover {
            background: var(--primary-red);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(209, 0, 0, 0.4);
        }

        .popup-footer {
            text-align: center;
            color: var(--text-gray);
            font-size: 12px;
            margin-top: 15px;
            padding-top: 12px;
            border-top: 1px solid #444;
        }

        .popup-footer strong {
            color: var(--white);
        }

        /* Swiper Styles */
        .swiper {
            width: 100%;
            padding: 20px 0 40px;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .swiper-pagination-bullet {
            background: var(--white);
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            background: var(--primary-red);
            opacity: 1;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary-red);
        }

        /* Mobile-specific slider containers */
        .mobile-slider {
            display: none;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }

            .hero h2 {
                font-size: 48px;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 992px) {

            .why-us-container,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .hero h2 {
                font-size: 42px;
            }

            .hero p {
                font-size: 20px;
            }

            .contact-info {
                justify-content: center;
                gap: 15px;
            }

            .phone-numbers {
                justify-content: center;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {

             .mobile-menu-btn {
        display: block;
    }

    #mainNav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--black);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }

    #mainNav ul.active {
        display: flex !important; /* Important to override any other styles */
    }

    #mainNav ul li {
        margin: 10px 0;
        text-align: center;
    }
            /* Show mobile sliders, hide desktop grids */
            .mobile-slider {
                display: block;
            }

            .services-grid,
            .testimonials-container,
            .features-grid,
            .stats-container {
                display: none;
            }

            /* Hero Section Mobile Optimization */
            .hero {
                padding: 140px 0 60px;
            }

            .hero h2 {
                font-size: 32px;
                line-height: 1.3;
                margin-bottom: 20px;
            }

            .hero p {
                font-size: 16px;
                margin-bottom: 30px;
                padding: 0 10px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .hero-buttons .cta-button {
                width: 100%;
                max-width: 280px;
                font-size: 16px;
                padding: 14px 25px;
            }

            /* Stats Slider */
            .stats-slider .stat-item {
                background: rgba(255, 255, 255, 0.1);
                padding: 25px 15px;
                border-radius: 12px;
                margin: 0 10px;
                text-align: center;
                min-height: 150px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .stats-slider .stat-number {
                font-size: 42px;
                margin-bottom: 10px;
            }

            .stats-slider .stat-label {
                font-size: 16px;
                line-height: 1.3;
            }

            /* Services Slider */
            .services-slider .service-card {
                margin: 0 15px;
                padding: 25px 20px;
                height: auto;
                min-height: 400px;
            }

            .services-slider .service-icon {
                font-size: 40px;
                margin-bottom: 20px;
            }

            .services-slider .service-card h3 {
                font-size: 20px;
                margin-bottom: 15px;
            }

            .services-slider .service-card p {
                font-size: 14px;
                margin-bottom: 20px;
            }

            /* Features Slider */
            .features-slider .feature-item {
                background: rgba(255, 255, 255, 0.15);
                padding: 25px 20px;
                margin: 0 15px;
                border-radius: 12px;
                text-align: center;
                min-height: 200px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .features-slider .feature-item i {
                font-size: 35px;
                margin-bottom: 15px;
            }

            .features-slider .feature-item h4 {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .features-slider .feature-item p {
                font-size: 14px;
            }

            /* Testimonials Slider */
            .testimonials-slider .testimonial-card {
                margin: 0 15px;
                padding: 25px 20px;
                min-height: 250px;
            }

            .testimonials-slider .testimonial-text {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .testimonials-slider .author-avatar {
                width: 45px;
                height: 45px;
                font-size: 14px;
            }

            .testimonials-slider .author-info h4 {
                font-size: 16px;
            }

            .testimonials-slider .author-info p {
                font-size: 13px;
            }

            /* Section Titles Mobile Optimization */
            .section-title h2 {
                font-size: 28px;
                margin-bottom: 15px;
            }

            .section-title p {
                font-size: 16px;
                padding: 0 10px;
            }

            .section-title {
                margin-bottom: 40px;
            }

            /* Why Choose Us Mobile Optimization */
            .why-us-content h2 {
                font-size: 28px;
            }

            .why-us-content p {
                font-size: 16px;
            }

            .benefits-list li {
                margin-bottom: 15px;
            }

            .benefits-list i {
                font-size: 18px;
            }

            .benefits-list span {
                font-size: 16px;
            }

            /* FAQ Mobile Optimization */
            .faq-question {
                padding: 20px 15px;
            }

            .faq-question h3 {
                font-size: 16px;
                line-height: 1.4;
            }

            .faq-answer-content {
                padding-top: 15px;
            }

            .faq-answer-content p {
                font-size: 14px;
            }

            .faq-list li {
                font-size: 14px;
                margin-bottom: 10px;
            }

            /* Contact Form Mobile Optimization */
            .contact-form {
                padding: 25px 20px;
            }

            .contact-form h3 {
                font-size: 24px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-control {
                padding: 12px;
                font-size: 16px;
            }

            /* Footer Mobile Optimization */
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }

            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {

            /* Extra small devices */
            .hero h2 {
                font-size: 28px;
            }

            .hero p {
                font-size: 15px;
            }

            .section-title h2 {
                font-size: 24px;
            }

            .services-slider .service-card {
                padding: 20px 15px;
                min-height: 380px;
            }

            .stats-slider .stat-number {
                font-size: 36px;
            }

            .features-slider .feature-item {
                padding: 20px 15px;
                min-height: 180px;
            }

            /* Hide navigation arrows on very small screens */
            .swiper-button-next,
            .swiper-button-prev {
                display: none;
            }
        }