:root {
            --primary-blue: #1a3a8f;
            --secondary-blue: #2d55cc;
            --accent-green: #00c853;
            --light-gray: #f8f9fa;
            --dark-gray: #333;
            --gradient-primary: linear-gradient(135deg, #1a3a8f 0%, #2d55cc 100%);
            --gradient-green: linear-gradient(135deg, #00c853 0%, #00b347 100%);
        }
        
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            line-height: 1.6;
            padding-top: 80px; /* Adjusted for fixed navbar */
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        /* Enhanced Header & Navigation Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: var(--accent-green);
        }
        
        .navbar-brand .brand-icon {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            font-weight: bold;
        }
        
        .navbar-nav .nav-item {
            margin: 0 5px;
        }
        
        .navbar-nav .nav-link {
            color: #444 !important;
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 15px !important;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-blue) !important;
            background-color: rgba(26, 58, 143, 0.05);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-blue) !important;
            font-weight: 600;
        }
        
        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            right: 15px;
            height: 3px;
            background-color: var(--accent-green);
            border-radius: 3px;
        }
        
        .nav-cta-button {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white !important;
            border-radius: 6px;
            padding: 10px 20px !important;
            font-weight: 600;
            margin-left: 10px;
            transition: all 0.3s ease;
        }
        
        .nav-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 58, 143, 0.2);
            color: white !important;
        }
        
        /* Mobile App Style Navigation - Left Side Drawer */
        .offcanvas {
            background-color: #f8f9fa;
            border-right: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .offcanvas-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            padding: 20px;
        }
        
        .offcanvas-title {
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .offcanvas-title .brand-icon {
            width: 35px;
            height: 35px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .mobile-nav-item {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #444;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-item:hover {
            background-color: rgba(26, 58, 143, 0.05);
            color: var(--primary-blue);
            padding-left: 25px;
        }
        
        .mobile-nav-item.active {
            background-color: rgba(26, 58, 143, 0.1);
            color: var(--primary-blue);
            font-weight: 600;
            border-left: 4px solid var(--accent-green);
        }
        
        .mobile-nav-item i {
            margin-right: 15px;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px;
            font-size: 1.5rem;
            color: var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        .navbar-toggler:hover {
            color: var(--secondary-blue);
        }
        
        /* FAQ Section Styles */
        .faq-section {
            background-color: #f8f9fa;
        }
        
        .faq-card {
            border: none;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .faq-header {
            background-color: white;
            border-radius: 10px !important;
            padding: 20px;
            border: none;
        }
        
        .faq-header:not(.collapsed) {
            background-color: rgba(26, 58, 143, 0.05);
            color: var(--primary-blue);
        }
        
        .faq-header:focus {
            box-shadow: 0 0 0 0.25rem rgba(26, 58, 143, 0.25);
        }
        
        .faq-question {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .faq-body {
            padding: 20px;
            background-color: white;
            border-radius: 0 0 10px 10px;
        }
        
        .faq-icon {
            color: var(--accent-green);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .faq-header:not(.collapsed) .faq-icon {
            transform: rotate(90deg);
        }
        
        /* Rest of the styles */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            padding: 100px 0;
            margin-top: -80px;
            padding-top: 180px;
        }
        
        .feature-card {
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
        }
        
        .icon-container {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .bg-primary-light {
            background-color: rgba(26, 58, 143, 0.1);
        }
        
        .bg-accent-light {
            background-color: rgba(0, 200, 83, 0.1);
        }
        
        .btn-primary-custom {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 10px 25px;
            font-weight: 500;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--secondary-blue);
            border-color: var(--secondary-blue);
        }
        
        .btn-accent {
            background-color: var(--accent-green);
            border-color: var(--accent-green);
            color: white;
            padding: 10px 25px;
            font-weight: 500;
        }
        
        .btn-accent:hover {
            background-color: #00b347;
            border-color: #00b347;
            color: white;
        }
        
        .stats-container {
            background-color: var(--light-gray);
            border-radius: 10px;
            padding: 40px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .testimonial-card {
            border-left: 4px solid var(--accent-green);
            padding-left: 20px;
        }
        
        footer {
            background-color: #1a1a2e;
            color: #f8f9fa;
        }
        
        .footer-link {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: var(--accent-green);
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-green);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .form-control:focus {
            border-color: var(--secondary-blue);
            box-shadow: 0 0 0 0.25rem rgba(45, 85, 204, 0.25);
        }
        
        @media (max-width: 991.98px) {
			   /*  {
                display: none;
            } */
            
            body {
                padding-top: 70px;
            }
            
            .hero-section {
                padding: 60px 0;
                padding-top: 140px;
                margin-top: -70px;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (min-width: 992px) {
            .navbar-toggler {
                display: none;
            }


            /*   about section     */
            /* Modern Hero Section */
        .about-hero {
            background: linear-gradient(rgba(26, 58, 143, 0.9), rgba(45, 85, 204, 0.9)), 
                        url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--gradient-green);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            margin-bottom: 20px;
            animation: fadeIn 1s ease;
        }
        
        /* Company Overview */
        .company-overview {
            padding: 100px 0;
            background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
        }
        
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .stat-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }
        
        /* Team Section */
        .team-section {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .team-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .team-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
        
        .team-social {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .team-card:hover .team-social {
            opacity: 1;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: scale(1.1);
            background: var(--gradient-green);
        }
        
        /* Values Section */
        .values-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .value-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 58, 143, 0.1), rgba(0, 200, 83, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        /* Timeline */
        .timeline-section {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background: var(--gradient-primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            margin-bottom: 40px;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        
        .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: white;
            top: 30px;
            border-radius: 50%;
            z-index: 1;
            border: 4px solid var(--primary-blue);
        }
        
        .timeline-item:nth-child(even) .timeline-content::after {
            left: -10px;
            right: auto;
        }
        
        .timeline-year {
            display: inline-block;
            padding: 8px 20px;
            background: var(--gradient-green);
            color: white;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            opacity: 0.1;
        }
        
        .btn-light {
            background: white;
            color: var(--primary-blue);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }
        
        /* Section Titles */
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-green);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-content::after {
                left: 18px;
                right: auto;
            }
            
            .timeline-item:nth-child(even) .timeline-content::after {
                left: 18px;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 767.98px) {
            body {
                padding-top: 70px;
            }
            
            .about-hero {
                padding: 100px 0 60px;
            }
            
            .company-overview,
            .team-section,
            .values-section,
            .timeline-section,
            .cta-section {
                padding: 60px 0;
            }
        }

        /*   sevice style */
        /* Hero Section */
        .services-hero {
            background: linear-gradient(rgba(26, 58, 143, 0.9), rgba(45, 85, 204, 0.9)), 
                        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .services-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--gradient-green);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        /* Services Grid */
        .services-section {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .service-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: inherit;
            opacity: 0.2;
            z-index: -1;
        }
        
        .service-content {
            padding: 40px 30px;
            position: relative;
            z-index: 1;
        }
        
        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gradient-green);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .service-features li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }
        
        .service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: bold;
        }
        
        .service-cta {
            display: inline-block;
            padding: 10px 25px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .service-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(26, 58, 143, 0.2);
            color: white;
        }
        
        /* Process Section */
        .process-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .process-step {
            text-align: center;
            padding: 0 20px;
            position: relative;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 25px;
            position: relative;
            z-index: 2;
        }
        
        .process-line {
            position: absolute;
            top: 30px;
            left: 50%;
            width: calc(100% - 120px);
            height: 2px;
            background: rgba(26, 58, 143, 0.2);
            z-index: 1;
        }
        

        .process-step:not(:last-child) .process-line {
            display: block;
        }
        
        /* Comparison Table */
        .comparison-section {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .comparison-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .table-header {
            background: var(--gradient-primary);
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .table-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            align-items: center;
            padding: 20px 25px;
        }
        
        .table-row:nth-child(even) {
            background: rgba(26, 58, 143, 0.02);
        }
        
        .check-mark {
            color: var(--accent-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .cross-mark {
            color: #dc3545;
            font-weight: bold;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .faq-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .faq-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        
        /* Section Titles */
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-green);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .services-hero h1 {
                font-size: 2.5rem;
            }
            
            .services-section,
            .process-section,
            .comparison-section,
            .faq-section,
            .cta-section {
                padding: 60px 0;
            }
            
            .process-line {
                display: none !important;
            }
            
            .table-row {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 15px 20px;
            }
        }
        
        @media (max-width: 767.98px) {
            body {
                padding-top: 70px;
            }
            
            .services-hero {
                padding: 100px 0 60px;
            }
            
            .service-card {
                margin-bottom: 30px;
            }
        }
        
        /* Animations */
       
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Service Hero */
        .service-hero {
            background: linear-gradient(rgba(26, 58, 143, 0.9), rgba(45, 85, 204, 0.9)), 
                        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .service-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--gradient-green);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Service Overview */
        .service-overview {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .overview-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .service-icon-large {
            width: 100px;
            height: 100px;
            border-radius: 20px;
            background: rgba(26, 58, 143, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 30px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .benefit-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(0, 200, 83, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-green);
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        /* Eligibility Section */
        .eligibility-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .eligibility-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .eligibility-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .eligibility-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: rgba(26, 58, 143, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        /* Equipment Categories */
        .categories-section {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .category-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-blue);
            box-shadow: 0 15px 40px rgba(26, 58, 143, 0.15);
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: rgba(26, 58, 143, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-blue);
            margin: 0 auto 25px;
        }
        
        /* Process Timeline */
        .process-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            width: 4px;
            background: var(--gradient-primary);
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .process-step {
          
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .process-step:nth-child(odd) .step-content {
            order: 1;
            text-align: right;
            padding-right: 60px;
        }
        
        .process-step:nth-child(even) .step-content {
            order: 2;
            text-align: left;
            padding-left: 60px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }
        
        /* Calculator Section */
        .calculator-section {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .calculator-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .slider-container {
            margin-bottom: 30px;
        }
        
        .slider-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .slider-value {
            font-weight: 600;
            color: var(--primary-blue);
        }
        
        input[type="range"] {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: #e9ecef;
            outline: none;
            -webkit-appearance: none;
        }
        
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--gradient-primary);
            cursor: pointer;
            border: 3px solid white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .result-card {
            background: linear-gradient(135deg, #1a3a8f, #2d55cc);
            color: white;
            border-radius: 15px;
            padding: 30px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .faq-accordion .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-accordion .accordion-button {
            background: white;
            border: none;
            padding: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--primary-blue);
        }
        
        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgba(26, 58, 143, 0.05);
            color: var(--primary-blue);
            box-shadow: none;
        }
        
        .faq-accordion .accordion-body {
            padding: 25px;
            background: white;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            opacity: 0.1;
        }
        
        .btn-light {
            background: white;
            color: var(--primary-blue);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }
        
        /* Section Titles */
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-green);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .service-hero h1 {
                font-size: 2.5rem;
            }
            
            .process-timeline::before {
                left: 30px;
            }
            
            .process-step {
                flex-direction: column;
                text-align: left;
                margin-bottom: 40px;
            }
            
            .process-step:nth-child(odd) .step-content,
            .process-step:nth-child(even) .step-content {
                order: 2;
                text-align: left;
                padding: 0 0 0 80px;
                width: 100%;
            }
            
            .step-number {
                left: 30px;
                transform: none;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .service-overview,
            .eligibility-section,
            .categories-section,
            .process-section,
            .calculator-section,
            .faq-section,
            .cta-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 767.98px) {
            body {
                padding-top: 70px;
            }
            
            .service-hero {
                padding: 100px 0 60px;
            }
            
            .overview-card,
            .calculator-card {
                padding: 25px;
            }
        }
        /* Hero Section */
        .contact-hero {
            background: linear-gradient(rgba(26, 58, 143, 0.9), rgba(45, 85, 204, 0.9)), 
                        url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--gradient-green);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        /* Contact Cards */
        .contact-cards {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            text-align: center;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-blue);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 25px;
            position: relative;
        }
        
        .contact-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: inherit;
            opacity: 0.2;
            z-index: 1;
        }
        
        .contact-icon i {
            position: relative;
            z-index: 2;
        }
        
        .contact-action {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(26, 58, 143, 0.1);
            color: var(--primary-blue);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-action:hover {
            background: var(--gradient-primary);
            color: white;
        }
        
        /* Contact Form */
        .contact-form-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .form-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: #444;
        }
        
        .form-control, .form-select {
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(26, 58, 143, 0.15);
        }
        
        .submit-btn {
            background: var(--gradient-primary);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(26, 58, 143, 0.2);
        }
        
        /* Office Locations */
        .locations-section {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .location-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }
        
        .location-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .location-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gradient-green);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .faq-accordion .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-accordion .accordion-button {
            background: white;
            border: none;
            padding: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--primary-blue);
        }
        
        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgba(26, 58, 143, 0.05);
            color: var(--primary-blue);
            box-shadow: none;
        }
        
        .faq-accordion .accordion-body {
            padding: 25px;
            background: white;
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
            background-color: #ffffff;
        }
        
        .map-container {
            position: relative;
            height: 500px;
            overflow: hidden;
        }
        
        #contactMap {
            height: 100%;
            width: 100%;
        }
        
        .map-overlay {
            position: absolute;
            top: 30px;
            right: 30px;
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 350px;
            z-index: 1000;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            opacity: 0.1;
        }
        
        .btn-light {
            background: white;
            color: var(--primary-blue);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }
        
        /* Section Titles */
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-green);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .form-card {
                padding: 30px;
            }
            
            .map-overlay {
                position: relative;
                top: 0;
                right: 0;
                max-width: 100%;
                margin: 20px;
            }
            
            .contact-cards,
            .contact-form-section,
            .locations-section,
            .faq-section,
            .cta-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 767.98px) {
            body {
                padding-top: 70px;
            }
            
            .contact-hero {
                padding: 100px 0 60px;
            }
            
            .map-container {
                height: 400px;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
    }