
        :root {
            --primary-green: #29166F;
            --light-green: #2F5F9C;
            --accent-green: #0065AB;
            --pure-white: #FFFFFF;
            --soft-gray: #F8F9FA;
            --text-dark: #1E293B;
            --text-light: #6B7C93;
            --border-light: #D9E2EC;
            --notification-bg: #29166F;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--pure-white);
        }

        /* Top Bar */
        .top-bar {
            background: var(--notification-bg);
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: white;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent-green);
        }

       

        /* Header Styles */
        .main-navbar {
            background: var(--pure-white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary-green) !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .brand-icon {
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.8rem 1.5rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 80%;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background: rgba(44, 85, 48, 0.1);
            color: var(--primary-green) !important;
        }

        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }
.btn-login {
    background: var(--primary-green);
    color: #fff !important;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-login:hover {
    background: #256a2f; /* darker shade of green */
    color: #fff !important;
}

        /* Hero Slider */
        .hero-slider {
            height: 90vh;
            position: relative;
            overflow: hidden;
        }

        .slider-item {
            height: 90vh;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: relative;
        }

        .carousel-indicators {
            bottom: 0px;
        }

        .carousel-indicators [data-bs-target] {
            width: 60px;
            height: 4px;
            border-radius: 2px;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 3px;
        }

        .carousel-indicators .active {
            background-color: var(--accent-green);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            border-radius: 0 8px 8px 0;
        }

        .carousel-control-next {
            border-radius: 8px 0 0 8px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 30px;
            height: 30px;
        }

        /* Best Offers Section */
        .offers-section {
            padding: 100px 0;
            background: var(--soft-gray);
            position: relative;
        }

        .offers-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            transform: translateY(-50px);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--primary-green);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 4rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-green);
            border-radius: 2px;
        }

        .destination-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            margin-bottom: 2rem;
            cursor: pointer;
            border: 1px solid var(--border-light);
            position: relative;
        }

        .destination-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s ease;
            z-index: 1;
        }

        .destination-card:hover::before {
            left: 100%;
        }

        .destination-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .destination-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .destination-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-green);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 3rem 1.5rem 1.5rem;
        }

        .destination-name {
            color: white;
            font-size: 1.6rem;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .destination-info {
            padding: 2rem;
        }

        .destination-price {
            color: var(--primary-green);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .price-strike {
            color: var(--text-light);
            text-decoration: line-through;
            font-size: 1rem;
            font-weight: 400;
        }

        .destination-description {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .destination-features {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: rgba(44, 85, 48, 0.1);
            color: var(--primary-green);
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            padding: 10px 25px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline-custom:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
        }

        .view-all-btn {
            text-align: center;
            margin-top: 4rem;
        }

        .btn-primary-custom {
            background: var(--primary-green);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
        }

        .btn-primary-custom:hover {
            color: white;
            background: var(--light-green);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(44, 85, 48, 0.4);
        }

        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: var(--primary-green);
            color: white;
            position: relative;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(135deg, var(--soft-gray) 50%, transparent 50%);
        }

        .feature-card {
            text-align: center;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: all 0.6s ease;
        }

        .feature-card:hover::before {
            transform: scale(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--accent-green);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .feature-description {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: var(--pure-white);
        }

        .testimonial-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
            border: 1px solid var(--border-light);
            position: relative;
            text-align: center;
        }


        .testimonial-quote {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 2rem;
            color: var(--text-dark);
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            border: 3px solid var(--accent-green);
        }

        .author-info h5 {
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 0.2rem;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--text-light);
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        .rating {
            margin-top: 0.5rem;
        }

        .rating i {
            color: #FFD700;
            font-size: 0.9rem;
        }

        /* Gallery */
        .gallery-section {
            padding: 100px 0;
            background: var(--soft-gray);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 280px;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid var(--border-light);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(44, 85, 48, 0.8);
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-icon {
            color: white;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .gallery-text {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* Newsletter */
        .newsletter-section {
            background: var(--accent-green);
            padding: 60px 0;
            color: white;
        }

        .newsletter-content {
            text-align: center;
        }

        .newsletter-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .newsletter-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
        }

        .newsletter-btn {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--text-dark);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--primary-green);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -25px;
            left: 0;
            right: 0;
            height: 50px;
            background: linear-gradient(135deg, var(--soft-gray) 50%, transparent 50%);
        }

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-brand-icon {
            background: var(--accent-green);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }

        .footer-description {
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-green);
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 0.8rem;
            display: block;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            padding: 0.3rem 0;
        }

        .footer-link:hover {
            color: var(--accent-green);
            padding-left: 0.5rem;
        }

        .footer-link i {
            width: 20px;
            margin-right: 0.5rem;
        }

        .social-icons {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .social-icon:hover {
            background: var(--accent-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(127, 176, 105, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
         .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;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .top-bar {
                text-align: center;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .navbar-brand {
                font-size: 1.6rem;
            }

            .hero-slider {
                height: 40vh;
            }

            .slider-item {
               height: 40vh;
               background-size: cover;
               background-repeat: no-repeat;
               background-position: center;
               position: relative;
            }
            
            .newsletter-form {
                flex-direction: column;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                padding: 2rem 1.5rem;
            }

            .feature-card {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .top-bar{
                display:none;
            }
            .notification-bar {
                padding: 8px 0;
                font-size: 0.85rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }

            .destination-card {
                margin-bottom: 1.5rem;
            }

            .destination-info {
                padding: 1.5rem;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
