.top-contact {
    display: flex !important;
    justify-content: center !important;
}
@media (max-width:600px) {

    .destinations-bar,
    marquee,
    .header-contact {
        display: none !important;
    }
}
     /* header  css  start*/
     /* ========== GLOBAL STYLES ========== */
     
 :root {
    --main: #87016c;
    --yellow: #ddff00;
    --white: #ffffff;
    --black: #000000;
    --orange: #ff6200;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: linear-gradient(267deg, #ffffff);
    background-size: 11% 11%;
    animation: headerGradient 6s linear infinite;
    overflow-x: hidden;
    width: 95%;
    min-height: 100vh;
}
.container,
.container-fluid {
    padding-left: 11px;
    padding-right: 11px;
  
}
/* img {
    max-width: 100%;
    height: auto;
    display: block;
} */
/* ========== DESTINATIONS BAR ========== */
.destinations-bar {
    background:#ff4500;
    color: var(--white);
    padding: 6px 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.destinations-scroll {
    display: flex;
    gap: 14px;
    padding: 0 12px;
    align-items: center;
    min-width: max-content;
}
.destinations-scroll a {
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}
.proprietor-text {
    margin-left: auto;
    font-size: 13px;
    white-space: nowrap;
}
/* ========== MARQUEE ========== */
marquee {
    background: #ffa801;
    padding: 6px 0;
    font-size: 14px;
    width: 100%;
}
/* ========== TOP CONTACT ========== */
.top-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0px;
}
.top-contact a {
    background: #2e1364;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.top-contact i {
    color: #5eff00;
}
/* MAIN HEADER GRADIENT BACKGROUND */
.main-header {
       background: linear-gradient(270deg, #d73b00, #d95c00, #ff4400, #d53a00);
    background-size: 132% 368%;
    animation: headerGradient 3s linear infinite;
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

/* GRADIENT ANIMATION */
@keyframes headerGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* Logo Container */

.navbar-brand {
    display: flex !important;
    align-items: center !important;
    margin-right: 0 !important;
    
}

/* ===== CIRCULAR LOGO FIX ===== */
.nav-logo {
   width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    flex-shrink: 0;
    display:block;
}
/* Brand Text */
.brand-text {
    line-height: 1.2;
    margin-left: 15px;
}
.brand-title {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fffffc;
    letter-spacing: 0.5px;
}
.brand-tagline {
    display: block;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 2.5px;
}
/* Navigation Menu */
.navbar-nav {
   
      display: flex;
  align-items: center;
  gap: 8px; 
}
/* ===== NAV MENU TEXT ONE LINE FIX ===== */
.navbar-nav .nav-link {
  white-space: nowrap;     /* 🔥 text ko ek line me rakhega */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Desktop & Laptop */
@media (min-width: 992px) {
  .navbar-nav {
    flex-wrap: nowrap;     /* menu wrap band */
  }
}

.navbar-nav .nav-link {    
       color: #000000;
    background-color: #ffffff;
    padding: 10px 13px;
    border-radius: 7px;
    font-size: 13px;
    text-align: center;
    margin: 02x 2;
    font-weight: 800;
    transition: all 0.3s ease;
   
}
.navbar-nav .nav-link:hover {
    background: #ff5100;
    transform: translateY(-2px);
}
.navbar-nav .nav-link:hover {
    background: #0a0636;
    transform: translateY(-2px);
    color: #ffffff;
}
/* Toggle Button */
.navbar-toggler {
    border: 3px solid #000000;
    padding: 6px 10px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-color: #000;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
            /* ========== RESPONSIVE ========== */
/* Tablet */
@media (max-width: 991px) {
    .brand-title { font-size: 70px; }
    .brand-tagline { font-size: 72px; }
    .nav-logo { width: 60px; height: 60px; }
    .navbar-collapse {
        background:#000000;
        padding: 0px;
        border-radius: 10px;
        margin-top: 15px;
        max-height: 70vh;
        overflow-y: auto;
    }
    .navbar-nav .nav-link {
        width: 100%;
        text-align: left;
    }
    .proprietor-text { display: none; }
}
/* Mobile */
@media (max-width: 767px) {
    .brand-title { font-size: 22px; }
    .brand-tagline { font-size: 11px; }
    .nav-logo { width: 55px; height: 55px; }
    .top-contact {
        flex-direction: column;
        align-items: center;
    }
    .top-contact a {
        width: 100%;
        justify-content: center;
    }
}
/* Small Mobile */
@media (max-width: 575px) {
    .brand-title { font-size: 32px; }
    .brand-tagline { font-size:31px; }
    .nav-logo { width: 50px; height: 50px; }
    .navbar-toggler {
        position: relative;
        right: 6px;
        top: 10%;
     
        transform: translateY(3%);
    }
}
/* Extra Small */
@media (max-width: 400px) {
    .brand-title { font-size: 28px; }
    .brand-tagline { font-size: 30px; }
    .nav-logo { width: 45px; height: 45px; }
    .top-contact a {
        font-size: 16px;
    }
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    right: 8px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.floating-btn:hover { transform: scale(1.1); }
/* Colors */
.whatsapp-btn { background: #25D366; }
.call-btn { background: #ffa801; }
.back-to-top { background: #ff029e; }
/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--main);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6a0158;
}
/* BRAND TITLE – GRADIENT COLOR FILL */
.brand-title {
     font-weight:800;
    background: linear-gradient(1deg, #000, #95f5ff, #fff, #1f00ff);
    background-clip: text;
    letter-spacing: 3px;
}
/* TAGLINE – SOFT GRADIENT */
.brand-tagline {
   font-weight: 900;
  background: linear-gradient( 90deg, #fff, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-title {
    text-shadow:#ffeb00;
}
.brand-tagline {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
} 
    /* header  section  css end */ 
    /* footer  css  start*/
       :root {
            --primary-color: #1a5276;
            --secondary-color: #e67e22;
            --accent-color: #f39c12;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        @media (min-width: 1200px) {
    .h1, h1 {
        font-size: 3.9rem;
    }
}

.h
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            background-color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .main-content {
            flex: 1;
            padding: 35px 0;
        }
        .page-title {
            color: #ff0c0c;
            text-align: center;
            margin-bottom: -16px;
            font-weight: 700;
            font-size: 40px;
        }
        .taxi-footer {
            background-color: #f05c00;
            color: white;
            padding: 40px 0 2px;
            margin-top: auto;
        }
        .footer-heading {
            color:#000;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        list-style: none;
  padding: 0;
  background-color: rgb(207, 97, 32);
        }
        .footer-links li {
            margin-bottom: 10px;
        } 
        .footer-links a {
            color: #ffffff;

            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color:  #000000;
        }
        
        .contact-info {
            margin-bottom: 15px;
        }
        .contact-info i {
            color: var(--secondary-color);
            margin-right: 10px;
            width: 20px;
        }
        .social-icons a {
            display: inline-block;
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin-right: 10px;
            transition: all 0.3s ease;
        } 
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        .copyright {
           border-top: 0px solid rgb(0 0 0 / 10%);
       padding-top: 14px;
       padding-bottom: 20px;
    margin-top: 0px;
    text-align: center;
    margin-left: -2px;
    margin-right: -2px;
    color: #ffffff;
    background-color: #000000;
    border-radius: 5px;
    font-size: 0.9rem;
}

        .footer-logo {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }
        .footer-logo i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        .booking-center {
            background-color:rgb(159 138 157 / 119%);
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 15px;
        }  
        .booking-center h6 {
            color: #030000;
            margin-bottom: 5px;
            font-weight: 900;
        }
        /* Scrollable sections */
        .scrollable-section {
            max-height: 300px;
            overflow-y: auto;
            padding-right: 10px;
        }
        /* Custom scrollbar for webkit browsers */
        .scrollable-section::-webkit-scrollbar {
            width: 6px;
        }
        .scrollable-section::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }
        .scrollable-section::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 10px;
        }
            .scrollable-section::-webkit-scrollbar-thumb:hover {
            background: var(--accent-color);
        } 
        /* For Firefox */
        .scrollable-section {
            scrollbar-width: thin;
               scrollbar-color: #000000 rgb(244 246 255);
        }    
        /* Section headers with toggle for mobile */
        .section-toggle {
            display: none;
        }  
        @media (max-width: 768px) {
            .section-toggle {
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                margin-bottom: 15px;
            }       
            .section-toggle i {
                transition: transform 0.3s ease;
            } 
            .section-toggle.active i {
                transform: rotate(180deg);
            }   
            .scrollable-section {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }   
            .scrollable-section.active {
                max-height: 300px;
            }
        }
            /* Toggle Header Box */
.section-toggle{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

    padding: 12px 16px;
    margin-bottom: 10px;

        background: linear-gradient(175deg, #8683ff, #f4f4ff);
    border-radius: 8px;

    transition: all 0.3s ease;
}

/* Hover Effect */
.section-toggle:hover{
    background: linear-gradient(360deg, #00d103, #008d13);
}
        /* footer  css  end*/










/* =========================
   GLOBAL RESPONSIVE BASE
========================= */

* {
  box-sizing: border-box;
}

/* html, body {
  width: 100%;
  overflow-x: hidden;
} */

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   CONTAINER & GRID FIX
========================= */

.container,
.container-fluid {
  padding-left: 20px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* =========================
   NAVBAR RESPONSIVE
========================= */

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-nav {
  text-align: center;
}

.nav-link {
  padding: 10px 15px;
}

/* =========================
   HERO / SLIDER
========================= */

.hero-section {
  padding: 40px 15px;
  min-height: 50vh;
}

.hero-section h1 {
  font-size: clamp(24px, 6vw, 42px);
}

.hero-section h2,
.hero-section h3 {
  font-size: clamp(16px, 4vw, 26px);
}

/* =========================
   CARDS & SECTIONS
========================= */

.card,
.glass-card,
.destination-card {
  margin-bottom: 20px;
}

.card img,
.destination-card img {
  width: 100%;
  object-fit: cover;
}

/* =========================
   BUTTONS
========================= */

.btn {
  white-space: nowrap;
}

/* =========================
   FOOTER
========================= */

.footer-heading {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  display: block;
  padding: 5px 0;
}

/* =========================
   MOBILE ( < 576px )
========================= */

@media (max-width: 575.98px) {

  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3 { font-size: 18px; }
  p  { font-size: 14px; }

  .btn,
  .btn-group .btn {
    width: 50%;
  }

  .btn-group {
    flex-direction: column;
  }
}

/* =========================
   TABLET ( ≥576px & <768px )
========================= */

@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
}

/* =========================
   TABLET / SMALL DESKTOP
========================= */

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}

/* =========================
   DESKTOP ( ≥992px )
========================= */

@media (min-width: 992px) {
  .container {
    max-width: 1213px;
  }
}



     /* header  css  start*/
     /* ========== GLOBAL STYLES ========== */
     
 :root {
    --main: #87016c;
    --yellow: #ddff00;
    --white: #ffffff;
    --black: #000000;
    --orange: #ff6200;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: linear-gradient(267deg, #8e7b7b2b);
    background-size: 11% 11%;
    animation: headerGradient 6s linear infinite;
      /* overflow-x: hidden;*/
    width: 100%;
    min-height: 100vh;
}
.container,
.container-fluid {
    padding-left: 11px;
    padding-right: 11px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* ========== DESTINATIONS BAR ========== */
.destinations-bar {
    background:#ff4500;
    color: var(--white);
    padding: 6px 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.destinations-scroll {
    display: flex;
    gap: 14px;
    padding: 0 12px;
    align-items: center;
    min-width: max-content;
}
.destinations-scroll a {
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}
.proprietor-text {
    margin-left: auto;
    font-size: 13px;
    white-space: nowrap;
}
/* ========== MARQUEE ========== */
marquee {
    background: #ffa801;
    padding: 6px 0;
    font-size: 14px;
    width: 100%;
}
/* ========== TOP CONTACT ========== */
.top-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0px;
}
.top-contact a {
    background: #2e1364;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.top-contact i {
    color: #5eff00;
}
/* ========== HEADER & NAVBAR ========== */
.main-header {
    background: #cf106a;
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* MAIN HEADER GRADIENT BACKGROUND */
.main-header {
    background: linear-gradient(270deg, #ff4500, #ff6c00ed, #ff4500, #ff4500);
    background-size: 132% 368%;
    animation: headerGradient 3s linear infinite;
}
/* GRADIENT ANIMATION */
@keyframes headerGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* Logo Container */

.navbar-brand {
    display: flex !important;
    align-items: center !important;
    margin-right: 0 !important;
    
}
/* ===== CIRCULAR LOGO FIX ===== */
.nav-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    flex-shrink: 0;
}
/* Brand Text */
.brand-text {
    line-height: 1.2;
    margin-left: 15px;
}
.brand-title {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #fffffc;
    letter-spacing: 0.5px;
}
.brand-tagline {
    display: block;
    font-size: 19px;
    color: var(--white);
    letter-spacing: 4.5px;
}
/* Navigation Menu */
.navbar-nav {
   
      display: flex;
  align-items: center;
  gap: 3px; 
}
/* ===== NAV MENU TEXT ONE LINE FIX ===== */
.navbar-nav .nav-link {
  white-space: nowrap;     /* 🔥 text ko ek line me rakhega */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Desktop & Laptop */
@media (min-width: 992px) {
  .navbar-nav {
    flex-wrap: nowrap;     /* menu wrap band */
  }
}

.navbar-nav .nav-link {    
       color: #000000;
    background-color: #ffffff;
    padding: 10px 13px;
    border-radius: 7px;
    font-size: 13px;
    text-align: center;
    margin: 02x 2;
    font-weight: 800;
    transition: all 0.3s ease;
   
}
.navbar-nav .nav-link:hover {
    background: #ff5100;
    transform: translateY(-2px);
}
.navbar-nav .nav-link:hover {
    background: #0a0636;
    transform: translateY(-2px);
    color: #ffffff;
}
/* Toggle Button */
.navbar-toggler {
    border: 2px solid var(--yellow);
    padding: 6px 10px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
            /* ========== RESPONSIVE ========== */
/* Tablet */
@media (max-width: 991px) {
    .brand-title { font-size: 70px; }
    .brand-tagline { font-size: 21px; }
    .nav-logo { width: 60px; height: 60px; }
    .navbar-collapse {
        background: var(--main);
        padding: 15px;
        border-radius: 10px;
        margin-top: 15px;
        max-height: 70vh;
        overflow-y: auto;
    }
    .navbar-nav .nav-link {
        width: 100%;
        text-align: left;
    }
    .proprietor-text { display: none; }
}
/* Mobile */
@media (max-width: 767px) {
    .brand-title { font-size: 22px; }
    .brand-tagline { font-size: 11px; }
    .nav-logo { width: 55px; height: 55px; }
    .top-contact {
        flex-direction: column;
        align-items: center;
    }
    .top-contact a {
        width: 100%;
        justify-content: center;
    }
}
/* Small Mobile */
@media (max-width: 575px) {
    .brand-title { font-size: 32px; }
    .brand-tagline { font-size: 9px; }
    .nav-logo { width: 50px; height: 50px; }
    .navbar-toggler {
        position: absolute;
        right: -7px;
        top: 50%;
        transform: translateY(-50%);
    }
}
/* Extra Small */
@media (max-width: 400px) {
    .brand-title { font-size: 28px; }
    .brand-tagline { font-size: 8px; }
    .nav-logo { width: 45px; height: 45px; }
    .top-contact a {
        font-size: 16px;
    }
}
/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    right: 65px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.floating-btn:hover { transform: scale(1.1); }
/* Colors */
.whatsapp-btn { background: #25D366; }
.call-btn { background: #ffa801; }
.back-to-top { background: #ff029e; }
/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--main);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6a0158;
}
/* BRAND TITLE – GRADIENT COLOR FILL */
.brand-title {
     font-weight: 900;
    background: linear-gradient(1deg, #000, #95f5ff, #fff, #1f00ff);
    background-clip: text;
    letter-spacing: -1px;
}
/* TAGLINE – SOFT GRADIENT */
.brand-tagline {
   font-weight: 900;
  background: linear-gradient( 90deg, #fff, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}
.brand-title {
    text-shadow:#ffeb00;
}
.brand-tagline {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
} 
    /* header  section  css end */

        #pageLoader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        #pageLoader.hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #e9ecef;
            border-top-color: #0d6efd;
            border-radius: 50%;
            animation: loaderSpin 0.8s linear infinite;
        }

        #pageLoader p {
            margin-top: 15px;
            margin-bottom: 0;
            font-size: 15px;
            font-weight: 600;
            color: #555;
        }

        @keyframes loaderSpin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Fix for white space on right side */

        html,
        body {
            max-width: 100%;
            /* overflow-x: hidden; */
            margin: 0;
            padding: 0;
            width: 100%;
        }

        /* Fix images and containers */
        img {
            max-width: 100%;
            height: auto;
        }

        .container,
        .container-fluid {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        /* Fix for cards that may overflow */
        .card {
            max-width: 100%;
            overflow: hidden;
        }

        /* Fix for driver avatar images */
        .driver-avatar img {
            width: 80px;
            height: 80px;
            object-fit: cover;
        }
                            .tab-content {
                            margin-top: 4px;
                            padding: 0px;
                            color: #ffffff;
                            text-decoration: none;
                        }
               
                    .card {
                        position: relative;
                        overflow: hidden;
                        border-radius: 18px;
                        background: rgb(255, 255, 255);
                        backdrop-filter: blur(10px);
                        transition: transform 0.4s ease;
                    }
         
        /* ===== HERO SECTION ===== */
        .hero-section {
            min-height: 100vh;
            width: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            text-align: center;
            padding: 20px;
            position: relative;
        }

        /* Dark overlay for text readability */
        .hero-section::before {
            content: "";
            position: absolute;
            inset: 9;
            background: rgba(0, 0, 0, 0.35);
            /* dark transparent */
        }

        .hero-section * {
            position: relative;
            z-index: 2;
        }

        /* ===== TEXT STYLES ===== */
        .hero-section h3 {
            color: #ffffff;
            font-size: 40px;
            letter-spacing: 2px;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .hero-section h1,
        .hero-section h2 {
            color: #fff;
            font-size: 52px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .hero-section h4 {
            color: #fff;
            font-size: 22px;
            margin-bottom: 20px;
        }

        /* Long title (Janakpur slide) */
        .hero-section .janak {
            font-size: 36px;
            line-height: 1.3;
        }

        /* ===== BUTTONS ===== */
        .hero-section a {
            margin: 6px;
            padding: 12px 26px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;

        }

        .hero-section .view {
            background: #198754;
            color: #fff;
        }

        /* ===== CAROUSEL CONTROLS ===== */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1);
        }

        /* ===================== RESPONSIVE ===================== */

        /* Tablets */
        @media (max-width: 992px) {

            .hero-section h1,
            .hero-section h2 {
                font-size: 40px;
            }

            .hero-section .janak {
                font-size: 30px;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 80vh;
            }

            .hero-section h3 {
                font-size: 15px;
            }

            .hero-section h1,
            .hero-section h2 {
                font-size: 28px;
            }

            .hero-section .janak {
                font-size: 22px;
            }

            .hero-section h4 {
                font-size: 16px;
            }

            .hero-section a {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {

            .hero-section h1,
            .hero-section h2 {
                font-size: 22px;
            }

            .hero-section .janak {
                font-size: 18px;
            }
        }

                        .book-btn {
                            margin-top: 4px;
                            padding: 0px;
                            color: #ffffff;
                            text-decoration: none;
                        }
                         
                /* ===== GLASS DOOR EFFECT FOR ADVENTURE CARDS ===== */

                .card {
                    position: relative;
                    overflow: hidden;
                    border-radius: 18px;
                    background: rgb(255, 255, 255);
                    backdrop-filter: blur(10px);
                    transition: transform 0.4s ease;
                }

                .card:hover {
                    transform: translateY(-8px);
                }

                /* Glass Doors */
                .card::before,
                .card::after {
                    content: "";
                    position: absolute;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background: rgb(60 60 60 / 60%);
                    backdrop-filter: blur(4px);
                    z-index: 1;
                    transition: transform 0.9s ease;
                }

                /* Left Door */
                .card::before {
                    left: 0;
                    transform-origin: left;
                    border-right: 1px solid rgba(255, 255, 255, 0.45);
                }

                /* Right Door */
                .card::after {
                    right: 0;
                    transform-origin: right;
                    border-left: 1px solid rgba(255, 255, 255, 0.3);
                }

                /* Open Doors on Hover */
                .card:hover::before {
                    transform: rotateY(-110deg);
                }

                .card:hover::after {
                    transform: rotateY(110deg);
                }

                /* Card Content Above */
                .card img,
                .card-body {
                    position: relative;
                    z-index: 2;
                }

                /* Button Animation */
                .card .btn {
                    transition: all 0.4s ease 0.3s;
                    opacity: 0;
                    transform: translateY(20px);
                }

                .card:hover .btn {
                    opacity: 1;
                    transform: translateY(0);
                }

                /* Mobile Friendly */
                @media (max-width:768px) {

                    .card::before,
                    .card::after {
                        display: none;
                    }

                    .card .btn {
                        opacity: 1;
                        transform: none;
                    }
                }
           
                    /* ===== FILTER SECTION ===== */
                    .filter-section h3 {
                        text-align: center;
                        font-weight: 700;
                        margin-bottom: 30px;
                    }

                    /* ===== GRID ===== */
                    .card-grid {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                        gap: 25px;
                    }

                    /* ===== CARD ===== */
                    .destination-card {
                        border-radius: 16px;
                        overflow: hidden;
                        background: #ff8630;
                        box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
                        transition: .3s ease;
                    }

                    .destination-card:hover {
                        transform: translateY(-6px);
                    }

                    /* Header */
                    .card-header {
                        background: #000000;
                        color: #fff;
                        font-weight: 600;
                        padding: 12px 16px;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        font-size: 15px;
                    }

                    /* Badge */
                    .card-header .badge {
                        background: #ffc107;
                        color: #000;
                        padding: 4px 8px;
                        border-radius: 12px;
                        font-size: 11px;
                    }

                    /* Body */
                    .card-body {
                        padding: 15px;
                        text-align: center;
                    }

                    /* Image responsive */
                    .card-body img {
                        width: 100%;
                        height: 320px;
                        object-fit: cover;
                        border-radius: 12px;
                    }

                    /* Best time */
                    .best-time {
                        margin: 12px 0;
                        font-size: 14px;
                        color: #ffffff;
                    }

                    /* Button */
                    .book-btn {
                        display: inline-block;
                        background: #000000;
                        color: #fff;
                        padding: 8px 20px;
                        border-radius: 20px;
                        text-decoration: none;
                        font-size: 14px;
                        transition: .3s;
                    }

                    .book-btn:hover {
                        background: #279c00;
                        color: #fff;
                    }

                    /* ===== RESPONSIVE BREAKPOINTS ===== */

                    /* Tablets */
                    @media (max-width: 992px) {
                        .card-body img {
                            height: 260px;
                        }
                    }

                    /* Mobile */
                    @media (max-width: 768px) {
                        .card-header {
                            font-size: 14px;
                        }

                        .card-body img {
                            height: 220px;
                        }

                        .book-btn {
                            width: 100%;
                        }
                    }

                    /* Small Mobile */
                    @media (max-width: 480px) {
                        .card-body img {
                            height: 190px;
                        }

                        .best-time {
                            font-size: 13px;
                        }
                    }

                    /* ===== CARD HOVER ENHANCEMENT ===== */
                    .destination-card {
                        position: relative;
                    }

                    .destination-card::after {
                        content: "";
                        position: absolute;
                        inset: 0;
                        background: linear-gradient(to top,
                                rgba(0, 0, 0, .35),
                                rgba(0, 0, 0, .05));
                        opacity: 0;
                        transition: .4s ease;
                        pointer-events: none;
                    }

                    .destination-card:hover::after {
                        opacity: 1;
                    }

                    /* Image zoom on hover */
                    .destination-card img {
                        transition: transform .5s ease;
                    }

                    .destination-card:hover img {
                        transform: scale(1.08);
                    }

                    /* Header color glow */
                    .destination-card:hover .card-header {
                        background: #d44e00;
                    }

                    /* Button hover pulse */
                    .book-btn {
                        position: relative;
                        overflow: hidden;
                    }

                    .book-btn::after {
                        content: "";
                        position: absolute;
                        inset: 0;
                        background: rgb(0, 255, 234);
                        transform: translateX(-100%);
                        transition: 1.s;
                    }

                    .book-btn:hover::after {
                        transform: translateX(100%);
                    }

                    /* Lift button slightly */
                    .book-btn:hover {
                        transform: translateY(-2px);
                    }
               
                        /* Headings hover effect */
                        .about-section h3 {
                            position: relative;
                            transition: all 0.3s ease;
                            cursor: pointer;
                        }

                        .about-section h3::after {
                            content: "";
                            position: absolute;
                            left: 0;
                            bottom: -6px;
                            width: 0;
                            height: 3px;
                            background: linear-gradient(90deg, #ff3300, #00b7db);
                            transition: width 0.4s ease;
                        }

                        .about-section h3:hover {
                            color: #f10000;
                            transform: translateX(5px);
                        }

                        .about-section h3:hover::after {
                            width: 60%;
                        }

                        /* Paragraph hover effect */
                        .about-section p {
                            padding: 2px;
                            border-radius: 8px;
                            transition: all 0.2s ease;

                        }

                        .about-section p:hover {
                            background: rgb(255, 251, 0);
                            transform: scale(1.01);
                            color: #ffff00,
                        }

                        /* List hover effect */
                        .about-section ul li {
                            list-style: none;
                            padding: 8px 10px;
                            margin-bottom: 6px;
                            border-radius: 6px;
                            transition: all 0.3s ease;
                            cursor: pointer;
                        }

                        .about-section ul li:hover {
                            background: linear-gradient(90deg, #00ae5d, #20c997);
                            color: #fff;
                            transform: translateX(8px);
                        }

                        /* Button hover premium effect */
                        .about-section .btn-success {
                            transition: all 0.3s ease;
                        }

                        .about-section .btn-success:hover {
                            background: linear-gradient(135deg, #198754, #0dcaf0);
                            transform: translateY(-3px);
                            box-shadow: 0 8px 18px rgb(247, 0, 0);
                        }

                        .about-img {
                            max-height: 520px;
                            width: 100%;
                            object-fit: cover;
                            transition: opacity 0.4s ease-in;
                        }

                        /* Mobile */
                        @media(max-width:768px) {
                            .about-img {
                                max-height: 260px;
                            }
                        }
                  
                /* Premium Destinations Section */
                .premium-destinations-section {
                    background: linear-gradient(218deg, #0f0d0e61 0%, #221f54 -439%, #000000 100%);
                    position: relative;
                    overflow: hidden;
                }

                .premium-destinations-section::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: radial-gradient(circle at 10% 20%, rgba(255, 200, 0, 0.495) 0%, #c427892b 50%),
                        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, #ff760087 50%);
                    animation: float 8s linear infinite;
                }

                @keyframes float {
                    0% {
                        transform: translateY(0) rotate(0deg);
                    }

                    100% {
                        transform: translateY(-1000px) rotate(360deg);
                    }
                }

                .py-6 {
                    padding-top: 5rem !important;
                    padding-bottom: 5rem !important;
                }

                /* Section Header */
                .section-header {
                    position: relative;
                    z-index: 2;
                }

                .header-decoration {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 20px;
                    margin-bottom: 20px;
                }

                .decoration-line {
                    width: 100px;
                    height: 3px;
                    background: linear-gradient(90deg, transparent, #ff9a9e, transparent);
                    border-radius: 2px;
                }

                .decoration-icon {
                    color: #ff9a9e;
                    font-size: 2rem;
                    animation: pulse 2s ease-in-out infinite;
                }

                @keyframes pulse {

                    0%,
                    100% {
                        transform: scale(1);
                    }

                    50% {
                        transform: scale(1.1);
                    }
                }

                .gradient-title {
                    background: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 50%, #a1c4fd 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    position: relative;
                }

                .title-text {
                    display: block;
                    font-size: 3.5rem;
                    letter-spacing: -1px;
                    margin-bottom: 10px;
                }

                .subtitle {
                    display: block;
                    font-size: 1.8rem;
                    font-weight: 300;
                    opacity: 0.9;
                }

                .tags-container {
                    display: flex;
                    justify-content: center;
                    gap: 15px;
                    margin-top: 25px;
                    flex-wrap: wrap;
                }

                .tag {
                    padding: 8px 20px;
                    border-radius: 25px;
                    font-size: 0.9rem;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }

                .tag-spiritual {
                    background: linear-gradient(45deg, #1d00ff, #fd05db);
                    color: white;
                }

                .tag-heritage {
                    background: linear-gradient(45deg, #6883fb, #ff2bc0);
                    color: #ffffff;
                }

                .tag-pilgrimage {
                    background: linear-gradient(45deg, #fb0058, #dfdf00);
                    color: white;
                }

                .tag-cultural {
                    background: linear-gradient(45deg, #ff0000, #ff00d9);
                    color: #ffffff;
                }

                /* Filter Container */
                .filter-container {
                    position: relative;
                    z-index: 2;
                }

                .search-box {
                    position: relative;
                    max-width: 500px;
                    margin: 0 auto;
                }

                .search-icon {
                    position: absolute;
                    left: 20px;
                    top: 50%;
                    transform: translateY(-50%);
                    color: rgba(255, 255, 255, 0.7);
                    font-size: 1.2rem;
                }

                .search-input {
                    width: 100%;
                    padding: 15px 60px 15px 50px;
                    background: rgba(255, 255, 255, 0.1);
                    border: 2px solid rgba(255, 255, 255, 0.2);
                    border-radius: 50px;
                    color: white;
                    font-size: 1rem;
                    transition: all 0.3s ease;
                    backdrop-filter: blur(10px);
                }

                .search-input:focus {
                    outline: none;
                    border-color: #ff9a9e;
                    box-shadow: 0 0 0 3px rgba(255, 154, 158, 0.3);
                    background: rgba(255, 255, 255, 0.15);
                }

                .search-input::placeholder {
                    color: rgba(255, 255, 255, 0.6);
                }

                .search-btn {
                    position: absolute;
                    right: 10px;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
                    border: none;
                    color: white;
                    cursor: pointer;
                    transition: all 0.3s ease;
                }

                .search-btn:hover {
                    transform: translateY(-50%) scale(1.1);
                    box-shadow: 0 5px 15px rgba(255, 154, 158, 0.4);
                }

                .filter-buttons {
                    display: flex;
                    justify-content: center;
                    gap: 10px;
                    flex-wrap: wrap;
                    margin-top: 2px;

                }

                .filter-btn {
                    background: rgba(255, 255, 255, 0.1);
                    border: 2px solid rgba(255, 255, 255, 0.2);
                    color: white;
                    padding: 10px 25px;
                    border-radius: 25px;
                    font-weight: 600;
                    transition: all 0.3s ease;
                    backdrop-filter: blur(10px);
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    font-size: 0.9rem;
                }

                .filter-btn:hover,
                .filter-btn.active {
                    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
                    border-color: transparent;
                    color: #2d3436;
                    transform: translateY(-2px);
                    box-shadow: 0 10px 20px rgba(255, 154, 158, 0.3);
                }

                /* Premium Destination Card */
                .premium-destination-card {
                    background: rgba(1, 0, 0, 0.445);
                    backdrop-filter: blur(15px);
                    border-radius: 25px;
                    overflow: hidden;
                    border: 1px solid rgba(255, 255, 255, 0.15);
                    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                    height: 100%;
                    min-height: 600px;
                    position: relative;
                }

                .premium-destination-card:hover {
                    transform: translateY(-15px) scale(1.02);
                    box-shadow:
                        0 25px 50px rgba(0, 0, 0, 0.4),
                        0 0 0 1px rgba(255, 255, 255, 0.2),
                        inset 0 0 50px rgba(255, 255, 255, 0.1);
                    border-color: rgba(255, 255, 255, 0.3);
                }

                /* Card Badge */
                .card-badge {
                    position: absolute;
                    top: 20px;
                    right: -30px;
                    background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
                    color: white;
                    padding: 8px 35px;
                    transform: rotate(45deg);
                    z-index: 10;
                    font-weight: 700;
                    font-size: 0.8rem;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
                    display: flex;
                    align-items: center;
                    gap: 5px;
                }

                .badge-premium {
                    background: linear-gradient(45deg, #ffd700, #ffed4e);
                }

                .badge-unesco {
                    background: linear-gradient(45deg, #00b894, #55efc4);
                }

                .badge-ancient {
                    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
                }

                .badge-gateway {
                    background: linear-gradient(45deg, #0984e3, #74b9ff);
                }

                .badge-sangam {
                    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
                }

                /* Image Container */
                .card-image-container {
                    position: relative;
                    height: 250px;
                    overflow: hidden;
                }

                .destination-image {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.8s ease;
                }

                .premium-destination-card:hover .destination-image {
                    transform: scale(1.1) rotate(1deg);
                }

                .image-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: linear-gradient(to bottom, transparent 40%, rgb(255, 255, 255) 100%);
                }

                .location-tag {
                    position: absolute;
                    bottom: 20px;
                    left: 20px;
                    background: rgba(0, 0, 0, 0.7);
                    color: white;
                    padding: 8px 15px;
                    border-radius: 20px;
                    font-size: 0.9rem;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    backdrop-filter: blur(10px);
                }

                .distance-tag {
                    position: absolute;
                    bottom: 20px;
                    right: 20px;
                    background: rgba(0, 0, 0, 0.7);
                    color: white;
                    padding: 8px 15px;
                    border-radius: 20px;
                    font-size: 0.9rem;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    backdrop-filter: blur(10px);
                }

                /* Card Content */
                .card-content {
                    padding: 25px;
                    position: relative;
                }

                .card-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: flex-start;
                    margin-bottom: 10px;
                }

                .destination-title {
                    color: white;
                    font-size: 1.8rem;
                    font-weight: 700;
                    margin: 0;
                    line-height: 1.2;
                }

                .destination-rating {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                }

                .stars {
                    color: #ffd700;
                    font-size: 0.9rem;
                }

                .rating-text {
                    color: rgba(255, 255, 255, 0.8);
                    font-size: 0.9rem;
                    font-weight: 600;
                }

                .destination-subtitle {
                    color: #f2ff00;
                    background-color: #000000;
                    font-size: 1rem;
                    font-weight: 600;
                    margin-bottom: 15px;
                }

                .destination-description {
                    color: rgb(255 197 0);
                    font-size: 0.95rem;
                    line-height: 1.6;
                    margin-bottom: 20px;
                    min-height: 70px;
                    background-color: #070d31;
                }

                /* Destination Features */
                .destination-features {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 10px;
                    margin-bottom: 20px;
                }

                .feature {
                    background: rgba(255, 255, 255, 0.05);
                    padding: 10px;
                    border-radius: 10px;
                    text-align: center;
                    color: white;
                    font-size: 0.85rem;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 5px;
                }

                .feature i {
                    color: #ff9a9e;
                    font-size: 1rem;
                }

                /* Card Footer */
                .card-footer {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 20px;
                    padding-top: 15px;
                    border-top: 1px solid rgba(255, 255, 255, 0.1);
                    background-color: #434343;
                }

                .tags {
                    display: flex;
                    gap: 8px;
                    flex-wrap: wrap;
                }

                .card-footer .tag {
                    padding: 4px 12px;
                    font-size: 0.75rem;
                    font-weight: 600;
                }

                .tag-ram {
                    background: rgba(255, 107, 107, 0.2);
                    color: #ff6b6b;
                }

                .tag-saryu {
                    background: rgb(255, 15, 251);
                    color: #ffffff;
                }

                .tag-vishnu {
                    background: rgb(184, 3, 255);
                    color: #ffffff;
                }

                .tag-himalaya {
                    background: rgb(255, 115, 0);
                    color: #ffffff;
                }

                .tag-shiva {
                    background: rgba(239, 3, 109, 0.991);
                    color: #ffffff;
                }

                .tag-unesco {
                    background: rgb(255, 106, 0);
                    color: #ffffff;
                }

                .tag-kashi {
                    background: rgb(211, 15, 241);
                    color: #ffffff;
                }

                .tag-ganga {
                    background: rgb(255, 98, 0);
                    color: #ffffff;
                }

                .tag-buddhist {
                    background: rgb(243, 113, 0);
                    color: #ffffff;
                }

                .tag-sangam {
                    background: rgb(180, 4, 255);
                    color: #ffffff;
                }

                .tag-kumbh {
                    background: rgb(255, 106, 0);
                    color: #ffffff;
                }

                .action-buttons {
                    display: flex;
                    gap: 10px;
                }

                .btn-quick-info,
                .btn-wishlist,
                .btn-share {
                    width: 36px;
                    height: 36px;
                    border-radius: 50%;
                    background: rgba(255, 255, 255, 0.1);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    color: white;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s ease;
                    cursor: pointer;
                }

                .btn-quick-info:hover {
                    background: #3498db;
                    transform: translateY(-3px);
                    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
                }

                .btn-wishlist:hover,
                .btn-wishlist.active {
                    background: #e74c3c;
                    transform: translateY(-3px);
                    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
                }

                .btn-wishlist.active i {
                    color: white;
                }

                .btn-share:hover {
                    background: #2ecc71;
                    transform: translateY(-3px);
                    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
                }

                /* Booking Section */
                .booking-section {
                    display: flex;
                    gap: 10px;
                }

                .btn-book-now,
                .btn-view-details {
                    flex: 1;
                    padding: 1px 14px;
                    border-radius: 15px;
                    font-weight: 600;
                    text-align: center;
                    text-decoration: none;
                    transition: all 0.3s ease;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                }

                .btn-book-now {
                    background: linear-gradient(90deg, #f06f00 0%, #ff6100 100%);
                    color: #ffffff;
                    border: 2px solid #e00e0a;
                }

                .btn-book-now:hover {
                    background: rgb(48, 207, 0);
                    transform: translateY(-3px);
                    box-shadow: 0 10px 20px #000000;
                    color: #000000;
                    border: 2px solid #000000;
                }

                .btn-view-details {
                    background: #fb5f00;
                    border: 2px solid #e00e0a;
                    color: #ffffff;
                }

                .btn-view-details:hover {
                    background: rgb(48, 207, 0);
                    transform: translateY(-3px);
                    box-shadow: 0 10px 20px #000000;
                    color: #000000;
                    border: 2px solid #000000;
                }

                /* Hover Details */
                .hover-details {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: rgba(15, 12, 41, 0.95);
                    padding: 25px;
                    opacity: 0;
                    transform: translateY(20px);
                    transition: all 0.5s ease;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }

                .premium-destination-card:hover .hover-details {
                    opacity: 1;
                    transform: translateY(0);
                }

                .hover-details h4 {
                    color: #ff9a9e;
                    margin-bottom: 20px;
                    font-size: 1.5rem;
                }

                .highlights-list {
                    list-style: none;
                    padding: 0;
                    margin: 0 0 20px 0;
                }

                .highlights-list li {
                    color: white;
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: 0.95rem;
                }

                .highlights-list i {
                    color: #55efc4;
                }

                .quick-info {
                    display: flex;
                    gap: 20px;
                    margin-top: 20px;
                }

                .info-item {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    color: white;
                    font-size: 0.9rem;
                }

                .info-item i {
                    color: #74b9ff;
                }

                /* Special Card Styles */
                .card-muktinath {
                    border-color: #55efc4;
                }

                .card-pashupatinath {
                    border-color: #a29bfe;
                }

                .card-kashi {
                    border-color: #f1c40f;
                }

                .card-nepal {
                    border-color: #e67e22;
                }

                .card-prayagraj {
                    border-color: #8e44ad;
                }

                /* View All Button */
                .btn-view-all {
                    display: inline-flex;
                    align-items: center;
                    gap: 20px;
                    background: linear-gradient(90deg, #fd5209 0%, #da6400 100%);
                    color: #ffffff;
                    padding: 18px 50px;
                    border-radius: 30px;
                    text-decoration: none;
                    font-weight: 700;
                    font-size: 1.2rem;
                    transition: all 0.3s ease;
                    position: relative;
                    overflow: hidden;
                }

                .btn-view-all::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 0;
                    height: 0;
                    border-radius: 50%;
                    background: rgb(31, 210, 0);
                    transform: translate(-50%, -50%);
                    transition: width 0.6s, height 0.6s;
                }

                .btn-view-all:hover::before {
                    width: 400px;
                    height: 400px;
                }

                .btn-view-all:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 20px 40px rgba(255, 154, 158, 0.4);
                }

                .arrow-container {
                    display: flex;
                    gap: 5px;
                }

                .arrow-container i {
                    animation: arrowMove 1s ease-in-out infinite;
                }

                .arrow-container i:nth-child(2) {
                    animation-delay: 0.2s;
                }

                .arrow-container i:nth-child(3) {
                    animation-delay: 0.4s;
                }

                @keyframes arrowMove {

                    0%,
                    100% {
                        transform: translateX(0);
                    }

                    50% {
                        transform: translateX(5px);
                    }
                }

                /* Modal Styles */
                .modal-content {
                    background: rgba(15, 12, 41, 0.95);
                    backdrop-filter: blur(20px);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    color: white;
                }

                .modal-header {
                    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                }

                .modal-footer {
                    border-top: 1px solid rgba(255, 255, 255, 0.1);
                }

                .btn-close {
                    filter: invert(1) grayscale(100%) brightness(200%);
                }

                /* Responsive Design */
                @media (max-width: 1200px) {
                    .title-text {
                        font-size: 3rem;
                    }

                    .card-image-container {
                        height: 220px;
                    }

                    .destination-title {
                        font-size: 1.6rem;
                    }
                }

                @media (max-width: 992px) {
                    .title-text {
                        font-size: 2.5rem;
                    }

                    .subtitle {
                        font-size: 1.5rem;
                    }

                    .header-decoration {
                        gap: 15px;
                    }

                    .decoration-line {
                        width: 80px;
                    }

                    .destination-features {
                        grid-template-columns: repeat(2, 1fr);
                    }

                    .booking-section {
                        flex-direction: column;
                    }

                    .btn-view-all {
                        padding: 15px 40px;
                        font-size: 1.1rem;
                    }
                }

                @media (max-width: 768px) {
                    .py-6 {
                        padding-top: 3rem !important;
                        padding-bottom: 3rem !important;
                    }

                    .title-text {
                        font-size: 2rem;
                    }

                    .subtitle {
                        font-size: 1.2rem;
                    }

                    .filter-btn {
                        padding: 8px 15px;
                        font-size: 0.9rem;
                    }

                    .card-image-container {
                        height: 200px;
                    }

                    .card-content {
                        padding: 20px;
                    }

                    .hover-details {
                        display: none;
                    }

                    .premium-destination-card {
                        min-height: 550px;
                    }

                    .destination-features {
                        grid-template-columns: 1fr;
                    }

                    .card-footer {
                        flex-direction: column;
                        gap: 15px;
                        align-items: flex-start;
                    }

                    .action-buttons {
                        align-self: flex-end;
                    }
                }

                @media (max-width: 576px) {
                    .title-text {
                        font-size: 1.8rem;
                    }

                    .tags-container {
                        gap: 10px;
                    }

                    .tag {
                        padding: 6px 15px;
                        font-size: 0.8rem;
                    }

                    .search-input {
                        padding: 12px 50px 12px 45px;
                        font-size: 0.9rem;
                    }

                    .card-badge {
                        padding: 6px 25px;
                        font-size: 0.7rem;
                    }

                    .location-tag,
                    .distance-tag {
                        padding: 6px 12px;
                        font-size: 0.8rem;
                    }

                    .destination-title {
                        font-size: 1.4rem;
                    }

                    .btn-book-now,
                    .btn-view-details {
                        padding: 10px 15px;
                        font-size: 0.9rem;
                    }

                    .btn-view-all {
                        padding: 12px 30px;
                        font-size: 1rem;
                        flex-direction: column;
                        gap: 10px;
                    }

                    .premium-destination-card {
                        min-height: 500px;
                    }
                }

                @media (max-width: 400px) {
                    .title-text {
                        font-size: 1.5rem;
                    }

                    .header-decoration {
                        gap: 10px;
                    }

                    .decoration-line {
                        width: 50px;
                    }

                    .decoration-icon {
                        font-size: 1.5rem;
                    }

                    .filter-buttons {
                        gap: 5px;
                    }

                    .filter-btn {
                        padding: 6px 12px;
                        font-size: 0.8rem;
                    }

                    .card-image-container {
                        height: 180px;
                    }

                    .premium-destination-card {
                        min-height: 480px;
                    }
                }
            
                .main-title {
                    font-weight: 800;
                    font-size: 40px;
                    text-align: center;
                    margin-bottom: 25px;
                }

                .chat-btn {
                    background: linear-gradient(135deg, #1ebea5, #25d366);
                    color: #fff;
                    padding: 14px 30px;
                    border-radius: 50px;
                    font-size: 20px;
                    text-decoration: none;
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                }

                .phone {
                    background: #ff5e00;
                    padding: 14px 30px;
                    border-radius: 50px;
                    font-size: 20px;
                    text-decoration: none;
                    color: #ffffff;
                    box-shadow: 0 8px 20px rgb(255, 0, 0);
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                }

                .phone:hover {
                    background: #003cff;
                    color: #fff;
                    transform: translateY(-2px);
                }

                .faq-box {
                    border: 2px solid #1e6cff;
                    padding: 25px;
                    border-radius: 6px;
                }

                .faq-box h4 {
                    font-weight: 700;
                    margin-bottom: 20px;
                }

                @media(max-width:768px) {
                    .main-title {
                        font-size: 28px;
                    }
                }

                .card:hover {
                    transform: scale(1.04);
                    transition: 0.4s ease-in-out;
                }

                .book-btn {
                    display: inline-block;
                    padding: 10px 2px;
                    background: #f97316;
                    color: var(--white);
                    border-radius: 6px;
                    font-weight: 600;
                    text-decoration: none;
                    font-size: clamp(14px, 2vw, 16px);
                    transition: 0.3s;
                    text-align: center;
                    border: none;
                    cursor: pointer;
                    width: 100%;
                }

                .book-btn:hover {
                    background: #29a300;
                    color: var(--white);
                    transform: translateY(-2px);
                }

                .whatsapp {
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;

                    background: #ff6600;
                    /* blue same as image */
                    color: #fff;
                    font-size: 22px;
                    font-weight: 600;

                    padding: 18px 45px 18px 30px;

                    border-radius: 0 60px 60px 60px;
                    /* exact curve */
                    text-decoration: none;

                    box-shadow: 0 8px 18px rgb(255, 0, 0);
                    transition: all 0.3s ease;
                }

                .whatsapp i {
                    font-size: 26px;
                }

                .whatsapp:hover {
                    background: #002aff;
                    color: #fff;
                    transform: translateY(-2px);
                }

                .tabs {
                    display: flex;
                    gap: 15px;
                    justify-content: center;
                    margin-bottom: 20px;
                }

                .tab-btn {
                    padding: 10px 25px;
                    border: none;
                    border-radius: 6px;
                    background: #00ffea;
                    cursor: pointer;
                    font-weight: 600;
                    box-shadow: 0 8px 18px rgba(252, 48, 255, 0.553);
                }

                .tab-btn.active {
                    background: #0d00ff;
                    color: #fff;
                }

                .tab-content {
                    display: none;
                    background: #000000;
                    padding: 20px;
                    border-radius: 10px;
                }

                .tab-content.active {
                    display: block;
                }

                .rate-row {
                    display: flex;
                    justify-content: space-between;
                    padding: 10px 0;
                    border-bottom: 1px solid #eee;
                }

                .rate-table {
                    width: 100%;
                    border-collapse: collapse;
                }

                .rate-table th,
                .rate-table td {
                    padding: 10px;
                    border-bottom: 1px solid #ddd;
                    text-align: center;
                }

                .book-btn,
                .check-btn {
                    width: 100%;
                    margin-top: 4px;
                    padding: 0px;
                    background: #ff6600;
                    border: none;
                    border-radius: 8px;
                    font-size: 18px;
                    cursor: pointer;
                }

                @media(max-width:768px) {
                    .tabs {
                        flex-direction: column;
                    }
                }
           