
        /* Custom CSS for vibrant travel theme */
        :root {
            --primary-color: #007BFF; /* Blue for trust and adventure */
            --accent-color: #FF6B35; /* Vibrant orange for energy */
            --secondary-color: #28A745; /* Green for nature/travel */
            --bg-light: #F8F9FA;
            --text-dark: #333;
            --white: #FFF;
        }

      

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 400;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
        }

       .nav-link.active {
            color: var(--accent-color) !important;
            font-weight: bold;
            }
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,123,255,0.7), rgba(255,107,53,0.5)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
        }
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        .btn-hero {
            background-color: var(--accent-color);
            border: none;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: transform 0.3s;
        }
        .btn-hero:hover {
            transform: translateY(-2px);
            color: var(--white) !important;
        }
        /* Sections */
        section {
            padding: 80px 0;
        }
        .about, .services, .packages, .testimonials, .inquiry {
            background-color: var(--white);
        }
        .about h2, .services h2, .packages h2, .testimonials h2, .inquiry h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }
        /* Services */
        .service-card {
            text-align: center;
            padding: 20px;
            border: none;
            background: var(--bg-light);
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .service-card i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        /* Packages */
        .package-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .package-card:hover {
            transform: translateY(-10px);
        }
        .package-card img {
            height: 250px;
            object-fit: cover;
        }
        .package-card .card-body {
            padding: 1.5rem;
        }
        .package-card .btn {
            background-color: var(--accent-color);
            border: none;
            color: var(--white);
        }
        /* Testimonials */
        .testimonial-card {
            background: var(--bg-light);
            border: none;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
        }
        .testimonial-card i {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        /* Inquiry Form */
        .form-control {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 12px;
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
        }
        .btn-submit {
            background-color: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
        }
        .btn-submit:hover {
            background-color: #218838;
        }
        #confirmation {
            display: none;
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
        }
        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: var(--white);
            padding: 40px 0 20px;
            text-align: center;
        }
        /* Floating Buttons */
        .float-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        .whatsapp-float, .call-float {
            display: block;
            width: 60px;
            height: 60px;
            border-radius: 50px;
            text-align: center;
            color: var(--white);
            margin: 10px 0;
            transition: transform 0.3s;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .whatsapp-float {
            background-color: #25D366;
            line-height: 60px;
            font-size: 2rem;
        }
        .call-float {
            background-color: #007BFF;
            line-height: 60px;
            font-size: 1.8rem;
        }
        .whatsapp-float:hover, .call-float:hover {
            transform: scale(1.1);
        }
        .instagram-float {
            display: block;
            width: 60px;
            height: 60px;
            border-radius: 50px;
            text-align: center;
            color: var(--white);
            background-color: #E4405F;
            line-height: 60px;
            font-size: 2rem;
            margin: 10px 0;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }
        .instagram-float:hover {
            transform: scale(1.1);
        }
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            section {
                padding: 50px 0;
            }
           
        }

        .navbar-brand img {
       height: 150px;  /* Decreased height */
       width: auto;
       margin: -30px 0px -40px -2vh;
       }
