
        :root {
            --primary: #3498db;
            --secondary: #2c3e50;
            --accent: #e74c3c;
            --light: #ecf0f1;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* Navbar brand container */
.navbar-brand {
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo image */
#nav-logo {
  height: 8vh;          
  max-height: 60px;     
  width: auto;          
  object-fit: contain;  
  object-position: center;
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #nav-logo {
    height: 6vh;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  #nav-logo {
    height: 5vh;
    max-height: 35px;
  }
}



        /* Hero Section  */
        .hero {
            min-height: 80vh;
            background: linear-gradient(135deg, #2c3e50, #e74c3c);
            /* background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.1&auto=format&fit=crop&w=1750&q=80') no-repeat center center/cover; */
            color: white;
            display: flex;
            align-items: center;
            padding: 0 5%;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 90%;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
        }
        
        .cta-button:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
        }
        
        .featured-in {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            text-align: center;
            color: var(--light);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                text-align: center;
                padding: 0 10%;
            }
            
            .hero-content {
                margin: 0 auto;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                max-width: 100%;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }
   
    






       

    /* Why Choose Us Section         */
        .why-choose-section {
            padding: 80px 5%;
            background-color: #f9f9f9;
        }
        
      #containers {
             max-width: 1200px; 
             margin: 0 auto; 
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
            border-radius: 2px;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(52, 152, 219, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 28px;
        }
        
        .feature h3 {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .feature p {
            color: #666;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .features {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .feature {
                padding: 20px;
            }
        }
    
  





      
      /* Tour Packages   */
        .tour-packages {
            padding: 80px 1%;
            background: linear-gradient(to bottom, #f8f9fa, #ecf0f1);
        }
        
       #containers {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
            border-radius: 2px;
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        } 

        
        .package-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .package-card:hover {
            /* transform: translateY(-5px); */
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .package-header {
            padding: 25px 25px 15px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            text-align: center;
        }
        
        .package-header h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .package-duration {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .package-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column; 
        }
        
        .package-inclusions {
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .inclusion-list {
            list-style: none;
        }
        
        .inclusion-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
        }
        
        .inclusion-list li:last-child {
            border-bottom: none;
        }
        
        .inclusion-list i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .package-price {
            text-align: center;
            margin-top: auto;
        }
        
        .price-tag {
            font-size: 1.8rem;
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .price-note {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .book-btn {
            display: block;
            width: 100%;
            background-color: var(--accent);
            color: white;
            text-align: center;
            padding: 12px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .book-btn:hover {
            background-color: #c0392b;
        }
        
        .custom-package {
            background: linear-gradient(to right, #2c3e50, #34495e);
            color: white;
        }
        
        .custom-package .package-header {
            background: transparent;
        }
        
        .custom-package .inclusion-list i {
            color: var(--accent);
        }
        
        .custom-package .book-btn {
            background-color: var(--primary);
        }
        
        .custom-package .book-btn:hover {
            background-color: #2980b9;
        }
        
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
    




        



       /* Booking Section */
        .booking-section {
            padding: 80px 5%;
            background: linear-gradient(90deg,rgba(52, 152, 219, 0.5),rgba(44, 62, 80, 0.5)), url('https://images.unsplash.com/photo-1533575770077-052fa2c609fc?ixlib=rb-4.0.1&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
        }
        
       #containers {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .booking-header {
            margin-bottom: 40px;
        }
        
        .booking-header h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .booking-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .contact-methods {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .contact-method {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 12px;
            transition: transform 0.3s ease, background 0.3s ease;
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .contact-method:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: inline-block;
            height: 80px;
            width: 80px;
            line-height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .contact-method h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .contact-detail {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .contact-button {
            display: inline-block;
            padding: 12px 25px;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-button:hover {
            background: #c0392b;
            transform: scale(1.05);
        }
        
        .call .contact-icon {
            color: #2ecc71;
        }
        
        .whatsapp .contact-icon {
            color: #25D366;
        }
        
        .email .contact-icon {
            color: #3498db;
        }
        
        @media (max-width: 768px) {
            .booking-header h2 {
                font-size: 2.2rem;
            }
            
            .booking-header p {
                font-size: 1.1rem;
            }
            
            .contact-methods {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-method {
                width: 100%;
                max-width: 100%;
            }
        }
   


       
       /* Special Packaeges Section  */

       :root {
            --primary: #3498db;
            --secondary: #2c3e50;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --romantic: #e84393;
            --family: #0984e3;
        }
        .special-packages {
            padding: 80px 5%;
            background: linear-gradient(to right, #f8f9fa, #f1f2f6);
        }
        
       #containers {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--romantic), var(--family));
            border-radius: 2px;
        }
        
        .intro-text {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
        }
        
        /* New layout - tabbed interface */
        .package-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            border-bottom: 2px solid #ddd;
        }
        
        .tab-button {
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            color: #777;
        }
        
        .tab-button.active {
            color: var(--secondary);
        }
        
        .tab-button.honeymoon-tab.active {
            color: var(--romantic);
        }
        
        .tab-button.family-tab.active {
            color: var(--family);
        }
        
        .tab-button:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            transition: width 0.3s ease;
        }
        
        .tab-button.honeymoon-tab:after {
            background: var(--romantic);
        }
        
        .tab-button.family-tab:after {
            background: var(--family);
        }
        
        .tab-button.active:after {
            width: 100%;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .package-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        
        .package-destinations {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .package-destinations h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--secondary);
            display: flex;
            align-items: center;
        }
        
        .package-destinations h3 i {
            margin-right: 10px;
        }
        
        .honeymoon-content .package-destinations h3 i {
            color: var(--romantic);
        }
        
        .family-content .package-destinations h3 i {
            color: var(--family);
        }
        
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .destination-item {
            display: flex;
            align-items: center;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .destination-item:hover {
            transform: translateX(5px);
        }
        
        .honeymoon-content .destination-item {
            border-left: 3px solid var(--romantic);
        }
        
        .family-content .destination-item {
            border-left: 3px solid var(--family);
        }
        
        .destination-item i {
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .honeymoon-content .destination-item i {
            color: var(--romantic);
        }
        
        .family-content .destination-item i {
            color: var(--family);
        }
        
        .package-features {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .package-features h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--secondary);
            display: flex;
            align-items: center;
        }
        
        .package-features h3 i {
            margin-right: 10px;
        }
        
        .honeymoon-content .package-features h3 i {
            color: var(--romantic);
        }
        
        .family-content .package-features h3 i {
            color: var(--family);
        }
        
        .features-list {
            list-style: none;
        }
        
        .features-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list i {
            margin-right: 15px;
            width: 20px;
        }
        
        .honeymoon-content .features-list i {
            color: var(--romantic);
        }
        
        .family-content .features-list i {
            color: var(--family);
        }
        
        .package-cta {
            grid-column: 1 / -1;
            text-align: center;
            margin-top: 30px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        .honeymoon-cta {
            background: linear-gradient(to right, var(--romantic), #fd79a8);
            color: white;
        }
        
        .family-cta {
            background: linear-gradient(to right, var(--family), #74b9ff);
            color: white;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 992px) {
            .package-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .destinations-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .package-tabs {
                flex-direction: column;
                border-bottom: none;
            }
            
            .tab-button {
                width: 100%;
                text-align: center;
                margin-bottom: 10px;
                border-radius: 8px;
                background: #f1f2f6;
            }
            
            .tab-button.active {
                background: white;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            }
            
            .tab-button:after {
                display: none;
            }
        }
   


        @media (max-width: 576px) {
            .package-cta a i{
                display: none;
            }
        }

/* Floating action buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .floating-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            top: 0;
            left: 0;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }
        
        .floating-btn:hover::after {
            transform: translateY(0);
        }
        
        .floating-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
        }
        
        .call-btn {
            background-color: var(--accent);
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .btn-text {
            position: absolute;
            right: 70px;
            background: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            white-space: nowrap;
        }
        
        .floating-btn:hover .btn-text {
            opacity: 1;
            right: 75px;
        }
        
        /* For mobile devices */
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .floating-btn {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
            
            .btn-text {
                font-size: 12px;
                padding: 6px 12px;
            }
            
            .floating-btn:hover .btn-text {
                right: 65px;
            }
        }
        
        /* Pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(231, 76, 60, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
            }
        }
        
        .call-btn {
            animation: pulse 2s infinite;
        }












