/* Header Slider Styles */
.header-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.slider-container {
    position: absolute;
    width: 600%; /* 6 images */
    height: 100%;
    display: flex;
    animation: slide 30s infinite linear;
}

.slider-image {
    width: 16.666%; /* 100/6 */
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

@keyframes slide {
    0% { transform: translateX(0); }
    10% { transform: translateX(0); }
    15% { transform: translateX(-10%); }
    25% { transform: translateX(-10%); }
    30% { transform: translateX(-20%); }
    40% { transform: translateX(-20%); }
    45% { transform: translateX(-30%); }
    55% { transform: translateX(-30%); }
    60% { transform: translateX(-40%); }
    70% { transform: translateX(-40%); }
    75% { transform: translateX(-50%); }
    85% { transform: translateX(-50%); }
    90% { transform: translateX(-60%); }
    100% { transform: translateX(-60%); }
}
.slider-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

/* Pause animation on hover */
.header-slider:hover .slider-container {
    animation-play-state: paused;
}
        .highlight-e {
  color: #ffcc00; /* Yellow or any standout color */
  font-weight: 900; /* Extra bold */
  font-size: 1.2em; /* Slightly larger */
}
/* Header Slider Styles */
.header-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    width: 1000%; /* 10 images */
    height: 100%;
    display: flex;
    animation: slide 50s infinite;
}

.slider-image {
    width: 10%;
    height: 100%;
    object-fit: cover;
}

@keyframes slide {
    0% { transform: translateX(0); }
    15% { transform: translateX(0); }
    20% { transform: translateX(-16.666%); }
    35% { transform: translateX(-16.666%); }
    40% { transform: translateX(-33.333%); }
    55% { transform: translateX(-33.333%); }
    60% { transform: translateX(-50%); }
    75% { transform: translateX(-50%); }
    80% { transform: translateX(-66.666%); }
    95% { transform: translateX(-66.666%); }
    100% { transform: translateX(-83.333%); }
}

/* Pause animation on hover */
.header-slider:hover .slider-container {
    animation-play-state: paused;
}

        /* Global Styles */
        :root {
            --primary: #2a9d8f;
            --secondary: #264653;
            --accent: #e9c46a;
            --light: #f8f9fa;
            --dark: #212529;
            --text: #444;
            --danger: #e76f51;
        }


        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
            animation: fadeIn 0.5s ease-out;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 20px;
            color: var(--secondary);
            font-weight: 600;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s;
        }
        
        a:hover {
            color: var(--secondary);
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            background: linear-gradient(to right, var(--primary), #31b0a2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            font-weight: 500;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: linear-gradient(to right, #21867a, #2a9d8f);
            box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .text-center {
            text-align: center;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            margin: 20px auto 0;
            border-radius: 2px;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(255,255,255,0.95);
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--dark);
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a.active {
            color: var(--primary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }
        
        /* Header */
           .header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    color: white;
    text-align: center;
    overflow: hidden;
}
    
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 90%;
            height: 100%;
            background: linear-gradient(to right, rgba(42, 157, 143, 0.3), rgba(233, 196, 106, 0.3));
            z-index: 0;
        }
        
        .header-content {
            position: relative;
            z-index: 1;
        }
        
        .header-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeIn 1s ease-out;
        }
        
     .header-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
        
        .search-bar {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 50px;
            overflow: hidden;
        }
        
        .search-bar input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        
        .search-bar button {
            padding: 0 30px;
            background-color: var(--accent);
            color: var(--secondary);
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .search-bar button:hover {
            background-color: #f4a261;
        }
        
        /* States Section */
        .states-section {
            background-color: white;
        }
        
        .states-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .state-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
        }
        
        .state-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .state-card-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .state-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }
        
        .state-card:hover .state-card-img img {
            transform: scale(1.1);
        }
        
        .state-card-content {
            padding: 25px;
            position: relative;
        }
        
        .state-card-content h3 {
            margin-bottom: 15px;
            color: var(--secondary);
            font-size: 1.5rem;
        }
        
        .state-card-content p {
            margin-bottom: 20px;
            color: #666;
            font-size: 0.95rem;
        }
        
        /* About Us Section */
        .about-section {
            background-color: var(--light);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .features {
            margin-top: 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .feature-item {
            display: flex;
            gap: 15px;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .feature-content h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .feature-content p {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Services Section */
        .services-section {
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--light);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            background-color: var(--light);
        }
        
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 20px;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: rgba(42, 157, 143, 0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
            color: #666;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Contact Section */
        .contact-section {
            background-color: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info h3 {
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            margin-bottom: 5px;
        }
        
        .contact-text a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background-color: var(--light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
        }
        
        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Districts Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 1000;
            overflow-y: auto;
            padding: 40px 0;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .modal.show {
            opacity: 1;
        }
        
        .modal-content {
            background-color: white;
            width: 90%;
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 12px;
            padding: 40px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        
        .modal.show .modal-content {
            transform: translateY(0);
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .close-modal:hover {
            color: var(--primary);
            background-color: rgba(0,0,0,0.05);
        }
        
        .modal-header {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .modal-header h2 {
            font-size: 2.2rem;
            color: var(--secondary);
        }
        
        .modal-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .districts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .district-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        
        .district-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }
        
        .district-card-img {
            height: 180px;
            overflow: hidden;
        }
        
        .district-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .district-card:hover .district-card-img img {
            transform: scale(1.05);
        }
        
        .district-card-content {
            padding: 20px;
        }
        
        .district-card-content h4 {
            margin-bottom: 15px;
            color: var(--secondary);
            font-size: 1.3rem;
        }
        
        .attractions-list {
            list-style-type: none;
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 20px;
        }
        
        .attractions-list li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
            display: flex;
            align-items: center;
        }
        
        .attractions-list li::before {
            content: '';
            position: absolute;
            left: 0;
            width: 8px;
            height: 8px;
            background-color: var(--accent);
            border-radius: 50%;
        }
        
        /* District Details Page */
        .district-details {
            display: none;
            padding: 100px 0 60px;
            background-color: white;
        }
        
        .district-header {
            position: relative;
            height: 400px;
            overflow: hidden;
            margin-bottom: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .district-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .district-header-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
        }
        
        .district-header-content h1 {
            color: white;
            font-size: 3rem;
            margin-bottom: 10px;
        }
        
        .district-header-content p {
            color: rgba(255,255,255,0.9);
            max-width: 700px;
        }
        
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            background-color: white;
            color: var(--secondary);
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            font-weight: 500;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .back-btn:hover {
            background-color: var(--light);
            transform: translateX(-5px);
        }
        
        .district-info {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .district-about h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .district-about h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        .district-highlights {
            background-color: var(--light);
            padding: 30px;
            border-radius: 12px;
            height: fit-content;
        }
        
        .district-highlights h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .highlight-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .highlight-content h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .highlight-content p {
            font-size: 0.9rem;
            color: #666;
        }
        
        .attractions-section {
            margin-bottom: 40px;
        }
        
        .attractions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .attraction-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        
        .attraction-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .attraction-card-img {
            height: 200px;
            overflow: hidden;
        }
        
        .attraction-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .attraction-card:hover .attraction-card-img img {
            transform: scale(1.05);
        }
        
        .attraction-card-content {
            padding: 20px;
        }
        
        .attraction-card-content h4 {
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .attraction-card-content p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
        }
        
        .learn-more {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--primary);
            font-size: 0.9rem;
            text-decoration: none;
            font-weight: 500;
        }
        
        .learn-more:hover {
            text-decoration: underline;
        }
        
        /* Gallery Section */
        .gallery-section {
            margin-bottom: 40px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        /* How to Reach Section */
        .how-to-reach {
            background-color: var(--light);
            padding: 40px;
            border-radius: 12px;
        }
        
        .transport-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .transport-card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .transport-card h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .transport-card h4 i {
            color: var(--primary);
        }
        
        /* Search Results */
        .search-results {
            display: none;
            padding: 100px 0 60px;
            background-color: white;
        }
        
        .search-results-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .search-results-container h2 {
            margin-bottom: 30px;
        }
        
        .search-results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .no-results {
            padding: 40px;
            background-color: var(--light);
            border-radius: 12px;
        }
        
        .no-results i {
            font-size: 3rem;
            color: var(--danger);
            margin-bottom: 20px;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .footer-column p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 15px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .copyright {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .district-info {
                grid-template-columns: 1fr;
            }
            
            .district-header {
                height: 350px;
            }
            
            .district-header-content h1 {
                font-size: 2.5rem;
            }
        }
        
     @media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
}
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 30px;
                transition: all 0.3s;
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header {
                padding: 150px 0 100px;
            }
            
            .header-content h1 {
                font-size: 2.5rem;
            }
            
            .header-content p {
                font-size: 1.1rem;
            }
            
            .search-bar {
                flex-direction: column;
                border-radius: 8px;
            }
            
            .search-bar input {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            
            .search-bar button {
                border-radius: 8px;
                justify-content: center;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .district-header {
                height: 300px;
            }
            
            .district-header-content {
                padding: 30px;
            }
            
            .district-header-content h1 {
                font-size: 2rem;
            }
            
            .modal-content {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .header-content h1 {
                font-size: 2rem;
            }
            
            .header-content p {
                font-size: 1rem;
            }
            
            .district-header {
                height: 250px;
            }
            
            .district-header-content {
                padding: 20px;
            }
            
            .district-header-content h1 {
                font-size: 1.8rem;
            }
        }
        html {
    scroll-behavior: smooth;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    text-align: center;
}

.package-card:hover {
    transform: scale(1.05);
    background-color: #f7f7f7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}
.back-home {
  text-align: center;
  margin-top: 30px;
}
.back-home .btn {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}
#packageSection {
  position: relative;
  scroll-margin-top: 100px; /* Adjust based on your header height */
}

.vehicles-showcase {
    width: 100%;
    margin: 60px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b6b;
    margin: 15px auto 0;
}

/* .vehicles-showcase {
  width: 100%;
  overflow: hidden;
  margin: 60px 0;
} */

.section-title {
  text-align: center;
  font-size: 36px;
  color: #333;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #ff6b6b;
  margin: 15px auto 0;
}
/* 
.vehicles-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
} 

 .vehicles-slide-track {
  display: flex;
  width: calc(500px * 16); 
  animation: scroll 40s linear infinite;
} 

.vehicles-slide {
  width: 500px;
  height: 300px;
  flex-shrink: 0;
  margin: 0 20px;
}

.vehicles-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.vehicles-slide:hover img {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
} 
  */


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-500px * 8)); /* Scroll half the track */
  }
}

/* @media (max-width: 1200px) {
  .vehicles-slide {
    width: 450px;
    height: 270px;
  }
} */

/* @media (max-width: 992px) {
  .vehicles-slide {
    width: 400px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .vehicles-slide {
    width: 350px;
    height: 210px;
    margin: 0 15px;
  }

  .section-title {
    font-size: 28px;
  }
} */

/* @media (max-width: 576px) {
  .vehicles-slide {
    width: 400px;
    height: 200px;
    margin: 0 10px;
  }

  .section-title {
    font-size: 24px;
  }
} */

/* Header Slider Styles */
.header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.header-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-container {
    position: absolute;
    width: 600%; /* 6 images */
    height: 100%;
    display: flex;
    animation: slide 24s infinite linear; /* Reduced total duration */
}

.slider-image {
    width: 16.666%; /* 100/6 */
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slider-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

@keyframes slide {
    0% { transform: translateX(0); }
    12% { transform: translateX(0); } /* Faster transition */
    17% { transform: translateX(-16.666%); }
    29% { transform: translateX(-16.666%); }
    34% { transform: translateX(-33.333%); }
    46% { transform: translateX(-33.333%); }
    51% { transform: translateX(-50%); }
    63% { transform: translateX(-50%); }
    68% { transform: translateX(-66.666%); }
    80% { transform: translateX(-66.666%); }
    85% { transform: translateX(-83.333%); }
    100% { transform: translateX(-83.333%); }
}

/* Faster transition effect */
.slider-container {
    transition: transform 0.8s ease-in-out;
}

/* Pause animation on hover */
.header-slider:hover .slider-container {
    animation-play-state: paused;
}

