 :root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --accent-color: #ffc107;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
            background-color: #f8f9fa;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #0d6efd 0%, #3a86ff 100%);
            color: white;
            padding: 80px 0;
            margin-bottom: 30px;
            border-radius: 0 0 20px 20px;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .search-tabs {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-top: -50px;
            position: relative;
            z-index: 1;
        }
        
        .nav-tabs {
            border-bottom: none;
            margin-bottom: 20px;
        }
        
        .nav-tabs .nav-item {
            margin-right: 10px;
        }
        
        .nav-tabs .nav-link {
            border: none;
            background-color: #f1f3f5;
            color: var(--dark-color);
            font-weight: 600;
            border-radius: 8px;
            padding: 12px 25px;
            transition: all 0.3s ease;
        }
        
        .nav-tabs .nav-link.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .nav-tabs .nav-link:hover:not(.active) {
            background-color: #e9ecef;
        }
        
        .form-control, .form-select {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #ced4da;
        }
        
        .btn-search {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-search:hover {
            background-color: #0b5ed7;
            transform: translateY(-2px);
        }
        
        .section-title {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title span {
            color: var(--primary-color);
        }
        
        .package-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .package-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .package-content {
            padding: 20px;
        }
        
        .package-title {
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .package-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .package-features {
            margin-bottom: 15px;
        }
        
        .package-features i {
            color: var(--primary-color);
            margin-right: 5px;
        }
        
        .services-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .service-box {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: #e6f0ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .service-icon i {
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        .service-title {
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links a {
            color: #ced4da;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-icons a {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
        }
        
        .bottom-tabs {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 100;
            display: none;
        }
        
        .bottom-tab-item {
            flex: 1;
            text-align: center;
            padding: 15px;
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .bottom-tab-item.active {
            color: var(--primary-color);
        }
        
        .bottom-tab-item i {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .bottom-tabs {
                display: flex;
            }
            footer {
                padding-bottom: 100px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .search-tabs {
                margin-top: 20px;
            }
            .hero-section {
                padding: 50px 0;
            }
        }

        /* Improved mobile responsiveness */
@media (max-width: 767px) {
    .search-tabs {
        padding: 15px 10px;
        margin-top: 0;
    }
    
    .nav-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        margin-bottom: 15px;
        padding-bottom: 5px;
        scrollbar-width: thin;
    }
    
    .nav-tabs::-webkit-scrollbar {
        height: 3px;
    }
    
    .nav-tabs::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 40px 0;
        margin-bottom: 20px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .btn-search {
        width: 100%;
    }
}
 .coming-soon-container {
        border: 1px dashed #0d6efd;
        background-color: rgba(13, 110, 253, 0.05) !important;
        border-radius: 10px;
        padding: 30px !important;
        margin-top: 20px;
    }
    
    .coming-soon-container i {
        display: block;
        margin-bottom: 15px;
    }

    @keyframes highlight {
        0% { background-color: rgba(13, 110, 253, 0.05); }
        50% { background-color: rgba(13, 110, 253, 0.2); }
        100% { background-color: rgba(13, 110, 253, 0.05); }
    }
    
    .highlight-animation {
        animation: highlight 1.5s ease;
    }
    .image-container {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    height: 100%;
}

/* Image styling */
#travel-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    animation: tiltZoom 5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* Subtle tilt & zoom animation */
@keyframes tiltZoom {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(1.5deg) scale(1.02);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* Hover effect */
#travel-image:hover {
    transform: scale(1.07);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .image-container {
        justify-content: center;
        margin-top: 20px;
    }
}
    
    .offer-duration, .offer-locations, .offer-activities {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #555;
}
.offer-details small {
    font-size: 0.8rem;
    color: #777;
}

       .offers-section {
            padding: 40px;
            max-width: 1200px;
            margin: auto;
        }

        .offers-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .offers-header h2 {
            color: var(--primary-color);
        }

        .offer-card {
            background-color: var(--light-color);
            border: 1px solid var(--secondary-color);
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .offer-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .offer-details {
            padding: 20px;
        }

        .offer-details h3 {
            margin: 0 0 10px;
            color: var(--dark-color);
        }

        .offer-details p {
            margin: 0 0 15px;
            color: var(--secondary-color);
        }

        .offer-details .price {
            color: var(--primary-color);
            font-size: 1.5em;
            margin: 10px 0;
        }

        .offer-details button {
            background-color: var(--accent-color);
            color: var(--dark-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1em;
        }

        .offer-details button:hover {
            background-color: #e0a800;
        }

        .offers-grid {
            display: grid;
            padding-right: 120px;
            padding-left: 120px;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .slider {
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .slider img {
            width: 100%;
            display: block;
        }

        .coupon-section {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .coupon-section h3 {
            margin: 0 0 10px;
        }

        .coupon-code {
            font-size: 1.2em;
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 10px 20px;
            border-radius: 5px;
            display: inline-block;
            margin-top: 10px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .offer-details h3 {
                font-size: 1.2em;
            }

            .offer-details .price {
                font-size: 1.2em;
            }

            .offer-details button {
                font-size: 0.9em;
            }
            
            .offers-grid {
            display: grid;
            padding-left: 40px;
            padding-right: 40px;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            }
            
        }