
        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --dark-color: #1e293b;
            --light-color: #f8fafc;
            --text-color: #334155;
            --text-light: #64748b;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --border-radius: 8px;
            --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f5f7fa;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--dark-color);
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }

        a:hover {
            color: var(--secondary-color);
        }
             /* Scrolling Top Bar */
        .top-bar {
            background-color: var(--dark-color);
            color: white;
            padding: 12px 0;
            overflow: hidden;
            position: relative;
            font-family: 'Arial', sans-serif;
        }
        
        .scrolling-content {
            display: inline-block;
            white-space: nowrap;
            padding-left: 100%;
            animation: scroll 60s linear infinite;
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        .scrolling-content span {
            margin-right: 60px;
            font-size: 0.95rem;
            display: inline-block;
            vertical-align: middle;
        }
        
        .scrolling-content i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 1rem;
        }
        
        /* Pause animation on hover */
        .scrolling-content:hover {
            animation-play-state: paused;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .scrolling-content {
                animation-duration: 40s;
            }
            .scrolling-content span {
                font-size: 0.85rem;
                margin-right: 40px;
            }
        }
        /* Navigation */
        .navbar {
            padding: 15px 0;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand img {
            height: 50px;
            transition: var(--transition);
        }

        .navbar-brand img:hover {
            transform: scale(1.05);
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-color);
            padding: 8px 15px;
            border-radius: var(--border-radius);
            margin: 0 5px;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary-color);
            background-color: rgba(37, 99, 235, 0.1);
        }

        .navbar-toggler {
            border: none;
            padding: 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler i {
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        /* Search */
        .search-container {
            position: relative;
            width: 300px;
        }

        .search-input {
            padding: 10px 15px;
            border-radius: 50px;
            border: 1px solid #e2e8f0;
            width: 100%;
            padding-right: 40px;
            transition: var(--transition);
        }

        .search-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
        }

        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }

        .search-results {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            max-height: 300px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
        }

        .search-item {
            padding: 10px 15px;
            border-bottom: 1px solid #f1f5f9;
            cursor: pointer;
            transition: var(--transition);
        }

        .search-item:hover {
            background-color: #f8fafc;
            color: var(--primary-color);
        }


    /* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/Dsc1.jpg') no-repeat center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Video Carousel Container */
.video-carousel {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-carousel:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Video Styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-video.active {
    opacity: 1;
    z-index: 2;
}

/* Content Styles */
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Button Styles */
.btn-hero {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-hero {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    background-color: #f0f4ff;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}


/* Fallback Image */
.hero-fallback {
    display: none;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .video-carousel {
        margin-top: 30px;
        transform: perspective(1000px) rotateY(0deg);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-carousel {
        max-width: 90%;
        margin: 30px auto 0;
    }
    
    .btn-hero {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Video Loading Indicator */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 3;
    display: none;
}

.video-carousel.loading .video-loading {
    display: block;
}       .services-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            font-weight: 700;
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
        }
        
        .service-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            margin-bottom: 30px;
            height: 400px; /* Fixed height for all boxes */
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--primary-color);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-card h5 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
            position: relative;
            padding-left: 15px;
        }
        
        .service-card h5::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            height: 60%;
            width: 3px;
            background: var(--primary-color);
            border-radius: 3px;
        }
        
        .service-content {
            flex-grow: 1;
            overflow-y: auto;
            padding-right: 10px;
            margin-bottom: 15px;
        }
        
        .service-content p {
            margin-bottom: 10px;
            color: var(--text-light);
            font-size: 0.95rem;
            position: relative;
            padding-left: 10px;
        }
        
        .service-content p::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        
        .service-link {
            color: var(--text-color);
            transition: var(--transition);
            display: inline-block;
        }
        
        .service-link:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        /* Custom scrollbar */
        .service-content::-webkit-scrollbar {
            width: 6px;
        }
        
        .service-content::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .service-content::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 3px;
        }
        
      
        /* Features Section */
        .features-section {
            padding: 80px 0;
            background-color: #f8fafc;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title .text-muted {
            color: #6c757d;
            font-size: 1.1rem;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            margin-bottom: 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #4e73df, #224abe);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: #2d3748;
        }
        
        .feature-box p {
            color: #718096;
            font-size: 0.95rem;
            margin-bottom: 0;
        }/* Testimonials */
.feedback-container {
    overflow-x: auto;
    width: 100%;
    position: relative;
    padding-bottom: 50px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity; /* more forgiving snap */
    scroll-behavior: smooth;

    /* Hide scrollbar for all browsers */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

.feedback-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.feedback-slider {
    display: flex;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

/* Add right spacer for final card */
.feedback-slider::after {
    content: '';
    flex: 0 0 10%;
}

/* Individual Feedback Box */
.feedback-box {
    flex: 0 0 auto;
    width: calc(100% / 3 - 20px);
    min-width: calc(100% / 3 - 20px);
    margin: 10px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    scroll-snap-align: center;
}

.feedback-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feedback-box h5 {
    color: #007bff;
    font-size: 18px;
    margin-bottom: 5px;
}

.feedback-box p {
    color: #555;
    font-size: 14px;
}

/* Navigation Buttons */
.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.slider-controls button {
    background: #007bff;
    border: none;
    color: white;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s ease-out, transform 0.3s ease-out;
}

.slider-controls button:hover,
.slider-controls button:focus {
    background: #0056b3;
    transform: scale(1.05);
}

/* Review Button */
.review-button {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.review-button button {
    background: #007bff;
    border: none;
    color: white;
    padding: 14px 22px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-out, transform 0.3s ease-out;
}

.review-button button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feedback-slider {
        justify-content: flex-start;
    }

    .feedback-box {
        flex: 0 0 90%;
        min-width: 90%;
        margin-right: 16px;
        scroll-snap-align: center;
    }

    .slider-controls {
        justify-content: center;
    }
}

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.9)), url('img/Dsc1.jpg') no-repeat center/cover;
            color: white;
            text-align: center;
            position: relative;
        }

        .cta-section h2 {
            color: white;
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn-cta {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: inline-block;
        }

        .btn-cta:hover {
            background-color: #f0f4ff;
            color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 0;
        }

        .footer-logo img {
            height: 50px;
            margin-bottom: 20px;
        }

        .footer-about {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            display: inline-block;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-contact-list {
            list-style: none;
            padding: 0;
        }

        .footer-contact-item {
            display: flex;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-text {
            flex-grow: 1;
        }

        .contact-label {
            display: block;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 3px;
        }

        .contact-value {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            z-index: 999;
            transition: var(--transition);
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-button img {
            width: 36px;
            height: 36px;
        }

        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .navbar-collapse {
                padding-top: 20px;
            }
            
            .search-container {
                width: 100%;
                margin-top: 15px;
            }
        }

        @media (max-width: 767.98px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-info {
                margin-bottom: 10px;
            }
            
            .social-icons a {
                margin: 0 8px;
            }
            
            .hero {
                padding: 60px 0;
                text-align: center;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-img {
                display: none;
            }
            
            .hero-img-mobile {
                display: block;
                margin: 30px auto 0;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .footer {
                text-align: center;
            }
            
            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-contact-item {
                justify-content: center;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 1.6rem;
            }
            
            .btn-hero, .btn-cta {
                padding: 10px 20px;
            }
            
            .whatsapp-button {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-button img {
                width: 28px;
                height: 28px;
            }
        }

        /* Animation Classes */
        .animate-pop-in {
            animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
            opacity: 0;
        }

        @keyframes popIn {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .delay-1 {
            animation-delay: 0.1s;
        }

        .delay-2 {
            animation-delay: 0.2s;
        }

        .delay-3 {
            animation-delay: 0.3s;
        }

        .delay-4 {
            animation-delay: 0.4s;
        }

        .delay-5 {
            animation-delay: 0.5s;
        }
 