
        /* Import Google Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter:wght@400;500;600&display=swap');

        :root {
            /* Primary color for buttons, links, and highlights */
            --primary-color: #ff720d;
            --primary-light: #ff8e3d;
            --primary-dark: #e05a00;
            /* Dark color for text and dark backgrounds */
            --dark-color: #1a1a1a;
            /* Light color for page backgrounds */
            --light-gray-color: #f8f9fa;
            --light-color: #ffffff;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-color);
            position: relative;
            overflow-x: hidden;
            background-color: var(--light-color);
        }

        h1, h2, h3, h4, h5, h6, .navbar-nav .nav-link {
            font-family: 'Montserrat', sans-serif;
        }

        /* Keyframes for animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        /* Reusable Components */
        .btn-primary {
            background-color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
            color: #fff !important;
            border-radius: 50px !important;
            transition: all 0.3s ease !important;
            font-weight: 600 !important;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark) !important;
            border-color: var(--primary-dark) !important;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 114, 13, 0.2);
        }

        .btn-outline-light:hover {
            color: var(--primary-color) !important;
            background-color: var(--light-color) !important;
        }

        .bg-light-gray {
            background-color: var(--light-gray-color);
        }

        .bg-dark {
            background-color: var(--dark-color) !important;
        }

        .bg-gradient-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        }

        .text-primary {
            color: var(--primary-color) !important;
        }

        .tx-neutral {
            color: #6c757d;
        }

        .tx-12 {
            font-size: 12px;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--primary-dark);
        }

        .card {
            border-radius: 16px !important;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        .card-pad {
            padding: 2.2rem;
        }

        .hover-scale {
            transition: transform 0.3s ease;
        }
        .hover-scale:hover {
            transform: scale(1.03);
        }

        /* Header */
        .navbar {
            transition: all 0.3s ease;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
        }

        .navbar-expand-lg .navbar-nav .nav-link {
            padding: 10px 20px;
            font-size: 10px;
            text-transform: uppercase;
            font-weight: bold;
            color: var(--dark-color);
            letter-spacing: 1px;
            position: relative;
        }

        .navbar-expand-lg .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .navbar-expand-lg .navbar-nav .nav-link:hover::after,
        .navbar-expand-lg .navbar-nav .nav-link.active::after {
            width: 60%;
        }

        .navbar-expand-lg .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }

        .img-logo {
            width: 10rem;
        }

        .navbar .online-pad {
            padding: 12px 25px !important;
            margin: 0 !important;
            width: auto;
        }

        /* CTA Button in Header */
        .header-cta-btn {
            background-color: var(--primary-color);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            margin-left: 15px;
        }

        .header-cta-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 114, 13, 0.3);
        }

        .mobile-nav-card {
            background-color: var(--dark-color);
            display: flex;
            text-align: center;
        }

        .mobile-nav-card div {
            flex-basis: calc(100vw / 3);
            padding: 8px 10px;
            border-right: 1px solid #555;
        }
        .mobile-nav-card div:last-child {
            border-right: none;
        }
        .mobile-nav-card div a {
            font-size: 10px;
            color: #fff !important;
            font-weight: 600;
            text-transform: uppercase;
        }

        .mobile-logo {
            width: 8rem;
        }

        .btn-toggler {
          border: 0;
          padding: 1rem;
        }

        .bar1, .bar2, .bar3 {
          width: 25px;
          height: 3px;
          background-color: var(--dark-color);
          margin: 5px 0;
          transition: 0.4s;
        }

        .btn-toggler.change .bar1 {
          transform: rotate(-45deg) translate(-6px, 6px);
        }
        .btn-toggler.change .bar2 {
          opacity: 0;
        }
        .btn-toggler.change .bar3 {
          transform: rotate(45deg) translate(-6px, -7px);
        }

        .mobile-nav-content {
            height: calc(100vh - 110px);
            width: 100vw;
            background-color: #fff;
            overflow-y: auto;
            position: fixed;
            top: 110px;
            left: 0;
            padding: 30px;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            z-index: 1000;
        }
        .mobile-nav-content.active {
            transform: translateX(0);
        }
        .mobile-nav__list {
            list-style-type: none;
            padding-left: 0;
        }
        .mobile-nav__list-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .mobile-nav__list-item a {
            color: var(--dark-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Hero Section */
        .hero {
            position: relative;
            margin-top: 115px;
        }
        .hero .swiper-slide {
            font-size: 18px;
            display: flex;
            align-items: center;
            height: 80vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero .swiper-slide h1 {
            font-size: 4rem;
            line-height: 4.5rem;
            letter-spacing: -2px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .hero .swiper-pagination {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            padding: 10px;
            z-index: 10;
        }
        .hero .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #fff;
            opacity: 0.5;
            transition: opacity 0.3s, background-color 0.3s;
        }
        .hero .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--primary-color);
        }
    /* About Section Styles */
    .feature-icon-sm {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .timeline {
        position: relative;
        padding-left: 50px;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-color);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 30px;
    }
    
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -40px;
        top: 15px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--primary-color);
        border: 4px solid white;
    }
    
    .timeline-content {
        background: white;
    }
    
    @media (max-width: 768px) {
        .timeline {
            padding-left: 30px;
        }
        
        .timeline-item::before {
            left: -25px;
        }
    }
        /* Stats Section */
        .stats-section {
            margin-top: -50px;
            position: relative;
            z-index: 2;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
        }

        /* Info Section */
        .info .quick-link {
            transition: transform 0.2s ease-in-out;
        }
        .info .quick-link:hover {
            transform: translateX(10px);
        }
        .info .circle-icon {
            background-color: rgba(255,255,255,0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .info .quick-link:hover .circle-icon {
            background-color: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }
    /* Contact Section Styles */
    .contact-section .form-control,
    .contact-section .form-select {
        border: 1px solid #dee2e6;
        padding: 10px 15px;
        border-radius: 8px;
    }
    
    .contact-section .form-control:focus,
    .contact-section .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(255, 114, 13, 0.25);
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        background-color: #f8f9fa;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark-color);
        transition: all 0.3s;
    }
    
    .social-icon:hover {
        background-color: var(--primary-color);
        color: white !important;
    }
/* FAQ Section Styles */
.faq-section {
    background-color: var(--light-gray-color);
}

.accordion-button {
    background-color: white;
    color: var(--dark-color);
    padding: 1.25rem;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.25rem;
    background-color: rgba(248, 249, 250, 0.7);
}

.accordion-button::after {
    background-size: 1rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff720d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

        /* Video Section */
        .video-section {
            position: relative;
            height: 80vh;
            overflow: hidden;
            background: linear-gradient(rgba(255, 114, 13, 0.7), rgba(230, 92, 0, 0.7)), url('https://images.unsplash.com/photo-1601597111158-2fceff292cdc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        /* Features Section */
        .feature-card {
            background-color: var(--light-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        /* Testimonials Section */
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        /* Explore Section */
        .explore-section .my-zoom {
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .explore-section .zoom-img {
            transition: transform 0.5s ease;
        }
        .explore-section .my-zoom:hover .zoom-img {
            transform: scale(1.1);
        }
        .explore-section .my-card-height2 {
            height: 300px;
            background-size: cover;
            background-position: center;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-color), #2a2a2a);
            position: relative;
            overflow: hidden;
        }

        .cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 114, 13, 0.15) 2px, transparent 2px);
            background-size: 30px 30px;
            opacity: 0.5;
            z-index: 0;
        }

        /* Footer */
        .footer a {
            color: #fff;
        }
        .footer a:hover {
            color: var(--primary-color) !important;
        }
        .footer-app-btn {
            background-color: #444;
            border: none;
            outline: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            display: flex;
            gap: 10px;
            align-items: center;
            color: #fff;
            font-weight: 600;
            transition: all 0.3s;
        }
        .footer-app-btn:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: #444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background-color: var(--primary-color);
            color: #fff !important;
            transform: translateY(-3px);
        }
        .footer-link {
            font-size: 14px;
            color: #ccc !important;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: var(--primary-color) !important;
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .hero .swiper-slide h1 {
                font-size: 3.5rem;
                line-height: 4rem;
            }
        }

        @media (max-width: 991px) {
            .hero {
                margin-top: 110px;
            }
            .hero .swiper-slide h1 {
                font-size: 2.8rem;
                line-height: 3.2rem;
            }
            
            .stats-section {
                margin-top: 0;
            }
            
            .stat-card {
                text-align: center;
                margin-bottom: 1rem;
            }

            .card-pad {
                padding: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .video-section, .hero .swiper-slide {
                height: 60vh;
            }
            
            .hero .swiper-slide h1 {
                font-size: 2.2rem;
                line-height: 2.6rem;
            }

            .hero .swiper-slide p {
                font-size: 1rem;
            }
            
            .cta-section .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.3rem;
            }

            .card-pad {
                padding: 1.5rem;
            }

            .stats-section {
                padding: 3rem 0;
            }

            .stat-card h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                margin-top: 110px;
            }
            
            .hero .swiper-slide {
                height: 55vh;
                text-align: center;
                padding: 0 15px;
            }
            
            .hero .swiper-slide .row > div {
                display: flex;
                justify-content: center;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .hero .swiper-slide h1 {
                font-size: 1.8rem;
                line-height: 2.2rem;
                margin-bottom: 1rem;
            }

            .hero .swiper-slide p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .hero .swiper-slide .btn {
                padding: 12px 30px;
                font-size: 11px;
            }

            h1, .h1 { 
                font-size: 1.8rem; 
                line-height: 2.2rem;
            }

            .card-pad { 
                padding: 1.2rem; 
            }
            
            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                margin: 0 auto 15px;
            }
            
            .feature-card {
                text-align: center;
                padding: 1.5rem;
            }

            .stat-card {
                padding: 1.5rem;
                margin-bottom: 1rem;
            }

            .stat-card h2 {
                font-size: 1.5rem;
            }

            .stats-section {
                padding: 2rem 0;
            }

            .video-section {
                height: 50vh;
            }

            /* Mobile navigation adjustments */
            .mobile-nav-card div a {
                font-size: 9px;
                padding: 5px;
            }

            /* Footer adjustments */
            .footer-app-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .social-icon {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 480px) {
            .hero .swiper-slide h1 {
                font-size: 1.6rem;
                line-height: 2rem;
            }

            .hero .swiper-slide {
                height: 50vh;
            }

            .video-section {
                height: 45vh;
            }
        }