* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden; 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.tc-utility-wrapper {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #f2f4f7;
  position: relative;
  z-index: 99999;
}

.tc-utility-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 11px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.tc-phone-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: #1a202c;
  text-decoration: none !important;
  transition: color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.tc-phone-action:hover {
  color: #0044a9;
}

.tc-right-nav-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tc-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1a202c;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
  user-select: none;
  text-decoration: none !important;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.tc-nav-item:hover {
  color: #0044a9;
}

.tc-divider {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 300;
  user-select: none;
}

.tc-nav-item-dropdown {
  position: relative;
}

.tc-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  min-width: 120px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 999999;
}

.tc-lang-dropdown li {
  width: 100%;
}

.tc-lang-dropdown li a.tc-lang-link {
  display: block;
  padding: 8px 16px;
  font-size: 13.5px;
  color: #4a5568 !important;
  text-align: left;
  text-decoration: none !important;
  width: 100%;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.tc-lang-dropdown li a.tc-lang-link:hover {
  background-color: #f7fafc;
  color: #0044a9 !important;
}

.tc-nav-item-dropdown:hover .tc-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tc-caret-icon {
  transition: transform 0.2s ease;
}

.tc-nav-item-dropdown:hover .tc-caret-icon {
  transform: rotate(180deg);
}


@media (max-width: 768px) {
  .tc-utility-container {
    padding: 10px 20px;
  }
}

@media (max-width: 640px) {
  .tc-utility-container {
    padding: 10px 16px;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    text-align: center;
  }
  
  .tc-right-nav-group {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
  
  .tc-nav-item {
    font-size: 13px;
  }
  
  .tc-lang-dropdown {
    right: 50%;
    transform: translateX(50%) translateY(6px);
  }
  
  .tc-nav-item-dropdown:hover .tc-lang-dropdown {
    transform: translateX(50%) translateY(0);
  }
}



.main-navbar-wrapper {
  width: 100%;
  text-align: center;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.main-navbar-container {
  width: 100%;
  max-width: 1920px; 
  margin: 0 auto !important;        
  padding: 14px 25px;          
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  
}
.brand-logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.brand-icon-circle {
  width: 32px;
  height: 32px;
  background-color: #0044a9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: lowercase;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #0044a9;
  letter-spacing: -0.3px;
}

.center-nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-link-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  text-decoration: none !important;
  cursor: pointer;
  padding: 6px 0;
  position: relative;
  transition: color 0.15s ease;
}

.menu-link-item:hover {
  color: #0044a9;
}

.menu-icon {
  font-size: 16px;
}

.more-dropdown-wrapper {
  position: relative;
}

.menu-item-dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Arrow Icon Styling */
.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* Dropdown Content Box */
/* Dropdown Content Box */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%; 
    transform: translateX(-50%);
    background-color: #ffffff;
    width: 360px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Dropdown ke columns */
.dropdown-col {
    display: flex;
    flex-direction: column;
}

/* Dropdown Links Styling (Left align, Bullet dot aur Bottom Border) */
.dropdown-content a {
    color: #333333 !important;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-align: left; /* Text ko left side align karne ke liye */
    border-bottom: 1px solid #eaeaea;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Har text ke samne bullet dot (•) lagane ke liye */
.dropdown-content a::before {
    content: "• ";
    color: #0056b3; /* Dot ka color aap apne brand ke hisab se rakh sakte hain */
    font-weight: bold;
    margin-right: 8px;
}

/* Har column ke aakhri item ka border hatane ke liye */
.dropdown-col a:last-child {
    border-bottom: none;
}

/* Hover Effect */
.dropdown-content a:hover {
    background-color: #f4f6f8;
    color: #0056b3 !important;
    border-radius: 4px;
}

/* Show Dropdown on Hover */
.menu-item-dropdown:hover .dropdown-content {
    display: grid;
}

/* Rotate Arrow on Hover */
.menu-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.more-sub-menu {
  position: absolute;
  top: 100%;
  right: -20px;
  margin-top: 10px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  min-width: 170px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.more-sub-menu li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  cursor: pointer;
  transition: background-color 0.15s;
}

.more-sub-menu li a {
  font-size: 13.5px;
  color: #4a5568 !important;
  text-decoration: none !important;
  font-weight: 500;
  width: 100%;
}

.more-sub-menu li:hover {
  background-color: #f7fafc;
}

.more-sub-menu li:hover a {
  color: #0044a9 !important;
}

.more-dropdown-wrapper:hover .more-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.more-sub-menu li.has-chevron svg {
  color: #718096;
}

.more-sub-menu li.has-badge {
  gap: 10px;
}

.new-badge {
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  text-transform: uppercase;
}


.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: #2d3748;
  cursor: pointer;
}

.brand-hero-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px;
}

.brand-hero-inner-frame {
  width: 100%;
  min-height: 600px;
  padding: 80px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden !important; /* Image ko andar lock rakhne ke liye */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4));
  border-radius: 20px;       /* Frame ke rounded corners ko match karega */
  overflow: hidden;          /* Image ko container ke andar hi lock rakhega */
}

.hero-typography-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-headline {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.hero-subline {
  color: #ffffff;
  font-size: 40px;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.tc-search-wrapper {
  width: 100%;
  max-width: 680px;
  margin: 30px auto 0 auto;
  padding:  10px;
  position: relative; /* Dropdown ke liye container ko relative banaya */
  z-index: 99;
}

.tc-search-bar {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 6px 8px 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #edf2f7;
  position: relative;
  overflow: visible !important; /* Bahut zaroori hai taaki dropdown chup na ho */
}

.tc-input-container {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.tc-search-prefix {
  font-size: 17px;
  color: #718096;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none; 
}

#dynamic-search-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  font-weight: 500;
  color: #4a5568;
  padding: 4px 0;
  background: transparent;
}

.tc-search-btn {
  background-color: #0044a9;
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.15s ease;
  flex-shrink: 0;
}

.tc-search-btn:hover {
  background-color: #003380;
}

/* --- Dropdown Fixed Styling --- */
.custom-search-dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  margin-top: -6px !important;
  left: 10px !important;
  width: calc(100% - 20px) !important;
  max-width: 680px !important;
  
  /* Dropdown ki total fixed height */
  height: 165px !important;       
  max-height: 165px !important;
  
  background: #ffffff;
  border-radius: 12px !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
  display: none; 
  z-index: 99999;
  overflow: hidden !important; 
  padding: 12px 15px !important;
}

.custom-search-dropdown-menu.show {
  display: block !important;
}
.custom-search-dropdown-menu a.dropdown-item {
  pointer-events: auto !important;
  cursor: pointer;
}

.dropdown-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Headings apni jagah fix (sticky) rahengi */
.dropdown-heading {
  color: #003380;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #edf2f7;
  background: #ffffff;
  flex-shrink: 0;
}

/* --- Yahan scrollbar aur fixed height di gayi hai --- */
.column-scroll-area {
  flex-grow: 1;
  overflow-y: auto !important; /* Sirf packages par scrollbar aayega */
  max-height: calc(280px - 60px); /* Heading ke alawa bachi hui height */
  padding-right: 5px;
}

/* Custom Scrollbar Design (Optional & Clean) */
.column-scroll-area::-webkit-scrollbar {
  width: 5px;
}

.column-scroll-area::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 10px;
}

.dropdown-column ul {
  padding: 0;
  margin: 0;
}

.custom-search-dropdown-menu li {
  list-style: none;
}

.custom-search-dropdown-menu .dropdown-item {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  padding: 6px 10px;
  display: block;
  text-decoration: none;
  border-radius: 6px;
}

.custom-search-dropdown-menu .dropdown-item:hover {
  background-color: #f7fafc;
  color: #0044a9;
}
@media (max-width: 480px) {
  .tc-search-bar {
    padding: 4px 6px 4px 16px;
  }
  .tc-search-prefix, #dynamic-search-input {
    font-size: 15px;
  }
  .tc-search-btn {
    width: 38px;
    height: 38px;
  }
  .custom-search-dropdown-menu {
    left: -10px !important;
    width: calc(100% + 20px) !important;
  }
}

@media (max-width: 900px) {
  .center-nav-menu {
    display: none;
  }
  
  .center-nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #edf2f7;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    gap: 16px;
    align-items: flex-start;
  }
  
  .more-sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    transform: none;
    padding-left: 24px;
    margin-top: 4px;
    display: none;
  }
  
  .more-dropdown-wrapper:hover .more-sub-menu {
    display: block;
  }

  .mobile-toggle-btn {
    display: inline-block;
  }
  
  
  .center-nav-menu.mobile-active .navbar-login-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .main-navbar-container {
    padding: 12px 16px;
  }
  .brand-hero-wrapper {
    padding: 0 12px;
  }
  .brand-hero-inner-frame {
    height: 260px;
    border-radius: 12px;
  }
  .hero-headline {
    font-size: 23px;
  }
  .hero-subline {
    font-size: 14px;
  }
}






.trending-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 0;
}

.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  padding: 0 10px;
}

.trending-header h2 {
  font-size: 40px;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700;
}

.filter-switch {
  display: flex;
  background: #f4f6f9;
  padding: 5px;
  border-radius: 30px;
  flex-shrink: 0; 
}

.switch-btn {
  border: none;
  background: transparent;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  white-space: nowrap; 
}

.switch-btn.active {
  background: #0f4ca3;
  color: #ffffff;
}

@media (max-width: 768px) {
  .trending-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; 
  }

  .trending-header h2 {
    font-size: 24px;
  }

  .filter-switch {
    width: 100%; 
    box-sizing: border-box;
  }

  .switch-btn {
    flex: 1; 
    padding: 10px 15px;
    font-size: 15px; 
    text-align: center;
  }
}
.slider-wrapper-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 10px;
}

.side-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.2s ease;
}

.nav-btn-prev { left: 5px; }
.nav-btn-next { right: 5px; }

.side-nav-btn:hover {
  background: #0f4ca3;
  border-color: #0f4ca3;
}

.side-nav-btn:hover svg {
  fill: #ffffff;
}

.side-nav-btn svg {
  width: 22px;
  height: 22px;
  fill: #333333;
}

.trending-slider {
  width: 100%;
  overflow: hidden; /* Ye sirf slider ke inner wrapper ke liye theek hai */
  box-sizing: border-box;
  padding: 0 !important;
}

.trending-slider.hidden {
  display: none !important;
}

.destination-card {
  height: 340px !important;
  border-radius: 120px !important; 
  overflow: hidden;
  position: relative; 
  box-sizing: border-box;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.destination-card.swiper-slide-active {
    transform: scale(1) !important; /* Agar scale 1.05 ya usse zyada hai to yehi wajah hai */
}
.destination-card h3 {
  position: absolute;
  top: 50px; 
  left: 0;
  width: 100%;
  z-index: 2;
  font-size: 30px; 
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  text-align: center;
  pointer-events: none;
}

.destination-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.destination-card img {
  width: 100% !important;
  height: 100% !important; 
  object-fit: cover !important;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: 1;
}

.bg-blue { background-color: #d2e4f9 !important; 
  color: #1d5cb4 !important; 
}
.bg-dark-blue { background-color: #1d5cb4 !important; 
  color: #ffffff !important; 
}
.bg-pink { background-color: #fbe6e6 !important; 
  color: #e62e2e !important; 
}
.bg-light-blue { background-color: #0076c0 !important; 
  color: #ffffff !important; 
}
.bg-soft-pink { 
  background-color: #fdeaea !important; 
  color: #dc3545 !important; 
}
.bg-grey { 
  background-color: #b9c1cc !important; 
  color: #ffffff !important; 
}

/* Bottom Action Button Styling */
.explore-container {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.explore-btn {
  background-color: #0f4ca3;
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 76, 163, 0.2);
  transition: background 0.2s ease;
}

.explore-btn:hover {
  background-color: #125bc4;
}



/* Container Box Main Setup */
.specials-section {
  width: 100%;
  max-width: 1920px;
  margin: 50px auto;
  padding: 40px 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.specials-title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.specials-grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.special-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}


.large-banner {
  flex: 1 1 calc(50% - 10px); 
  height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.special-card.large-banner {
    min-height: 150px; /* Aap apne hisab se height kam ya zyada kar sakte hain, jaise 200px ya 250px */
}
.dynamic-col {
  flex: 1 1 calc(33.333% - 14px); 
  height: 360px;
}

.bg-img-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-flat-color {
  position: relative;
}

.bg-grey-light {
  background-color: #eef2f7;
}

.card-overlay-gradient {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.card-overlay-gradient.bottom-heavy {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.card-content-top {
  position: relative;
  z-index: 2;
  font-weight: 600;
  color: #ffffff;
}

.card-content-top.text-dark h3,
.card-content-top.text-dark .sub-text,
.card-content-top.text-dark .pricing-lbl {
  color: #2d3748;
  font-weight: 600;

}

.card-content-top h3 {
  font-size: 24px;
   font-weight: 700; 
  margin: 0 0 6px 0;
}

.sub-text {
  font-size: 15px; 
  opacity: 0.9; 
  margin: 0 0 12px 0;
}

.pricing-lbl {
  font-size: 14px; 
  font-weight: 600; 
  margin: 0 0 25px 0;
}

.view-more-action {
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  padding: 8px 18px;
  font-size: 15px; 
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  display: flex; 
  align-items: center; 
  gap: 8px;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.view-more-action.light-btn {
  background: #ffffff;
  color: #000000;

}

.view-more-action svg {
  width: 14px; 
  height: 14px; 
  fill: currentColor;
}

.video-thumbnail-card {
  background-size: cover; 
  background-position: center;
  padding: 20px;
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
}

.video-card-top-header {
  display: flex; 
  gap: 12px; 
  color: #ffffff; 
  position: relative; 
  z-index: 2;  
  font-weight: 700;

}

.brand-logo-pill {
  width: 55px; 
  height: 32px; 
  background: #fff; 
  border-radius: 50%;
  margin-top: 5px;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 14px;
}

.video-card-top-header h4 {
  font-size: 14px; 
  margin: 0 0 3px 0; 
  font-weight: 600; 
  line-height: 1.4;
}

.video-card-top-header p {
  font-size: 12px; 
  opacity: 0.8; 
  margin: 0;
}

.center-play-trigger {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  z-index: 2; 
  cursor: pointer;
}

.play-icon-shape {
  width: 55px; 
  height: 55px; 
  background: #e50914; 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  position: relative; 
  box-shadow: 0 4px 15px rgba(229,9,20,0.4);
}

.play-icon-shape::after {
  content: ''; 
  position: absolute; 
  left: 22px;
  border-top: 10px solid transparent; 
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
}

.promo-inner-content {
  padding: 5px; 
  position: relative; 
  z-index: 2;
}

.text-white-forced { 
  color: #ffffff !important; 
}

.promo-inner-content h4 {
  font-size: 20px; 
  font-weight: 700; 
  color: #ffffff; 
  margin: 0 0 8px 0;
}

.text-white-forced h4, .text-white-forced p { 
  color: #ffffff; 
}

.promo-inner-content p {
  font-size: 15px; 
  color: #ffffff; 
  margin: 0 0 15px 0; 
  line-height: 1.4;  
  font-weight: 700;

}

.price-tag-sub {
  font-size: 13px; 
  font-weight: 700; 
  margin-top: 5px;
}

.bottom-graphic-img {
  width: 100%; 
  height: 50%; 
  object-fit: cover;
  position: absolute; 
  bottom: 0; 
  left: 0;
}

.circle-arrow-link {
  width: 36px; 
  height: 36px; 
  background: #0f4ca3; 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  border: none; 
  cursor: pointer; 
  padding: 0;
}

.circle-arrow-link.white-circle {
  background: #ffffff;
}

.circle-arrow-link.white-circle svg { 
  fill: #0f4ca3; 
}
.circle-arrow-link svg { 
  width: 18px; 
  height: 18px; 
  fill: #ffffff; 
}

@media(max-width: 992px) {
  .dynamic-col { flex: 1 1 calc(50% - 10px); 
  }
}

@media(max-width: 680px) {
  .large-banner, .dynamic-col { 
    flex: 1 1 100%; 
  }
}


.bst-packages-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 15px;
  font-family: Arial, sans-serif;
}

.bst-packages-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
}

.bst-packages-title {
  font-size: 40px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.bst-pkg-tabs-row {
  display: flex;
  gap: 25px;
}

.bst-tab-trigger {
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  padding: 5px 0 12px 0;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.bst-tab-trigger:hover,
.bst-tab-trigger.active {
  color: #0f4ca3;
}

.bst-tab-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0f4ca3;
}

.bst-slider-relative-box {
  position: relative;
  padding: 0 10px;
}

.bst-main-swiper-engine {
  width: 100%;
  overflow: hidden;
}

.bst-main-swiper-engine.bst-slider-hidden {
  display: none !important;
}

.bst-package-card-item {
  height: 250px !important;
  border-radius: 14px !important;
  overflow: hidden;
  position: relative;
}

.bst-package-card-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease;
}

.bst-package-card-item:hover img {
  transform: scale(1.04);
}

.bst-card-info-mask {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
  padding: 20px 15px;
  box-sizing: border-box;
  color: #ffffff;
  z-index: 2;
}

.bst-card-info-mask h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.3;
  width: 80%;
}

.bst-card-info-mask p {
  font-size: 12px;
  margin: 0;
  opacity: 0.9;
}

.bst-card-info-mask p span {
  font-weight: 700;
  font-size: 14px;
}

.bst-yellow-arrow-circle {
  position: absolute;
  bottom: 18px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #ffd100;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.bst-yellow-arrow-circle svg {
  width: 14px;
  height: 14px;
  fill: #000000;
}

.bst-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.bst-arrow-left { 
  left: -15px; 
}
.bst-arrow-right { 
  right: -15px; 
}

.bst-arrow-btn:hover {
  background: #0f4ca3;
  border-color: #0f4ca3;
}

.bst-arrow-btn:hover svg { 
  fill: #ffffff; 
}
.bst-arrow-btn svg { 
  width: 18px; 
  height: 18px; 
  fill: #0f4ca3; 
}

@media (max-width: 768px) {
  .bst-packages-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .bst-pkg-tabs-row {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .bst-arrow-btn { display: none; } 
}

@media (max-width: 768px) {
  .bst-packages-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .bst-pkg-tabs-row {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .bst-arrow-btn { 
    display: flex !important; 
    width: 35px;             
    height: 35px;
  }

  .bst-arrow-left { 
    left: 5px; 
  }
  
  .bst-arrow-right { 
    right: 5px; 
  }
}










.hero-section {
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), 
                url('../image/banner/home_card_background.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 8%;
    margin: auto;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.left-content {
    color: #ffffff;
    font-weight: 700;
}

.left-content h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.left-content p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 480px;
    justify-self: end;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.input-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.input-control:focus {
    border-color: #0d47a1;
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.phone-group {
    display: flex;
    border: 1px solid #ced4da;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}
#submitSuccessMessage {
    display: none; /* Ye message tabhi dikhega jab form submit hoga */
}
.phone-group:focus-within {
    border-color: #0d47a1;
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.country-select {
    padding: 0 12px;
    background: #fff;
    border: none;
    border-right: 1px solid #ced4da;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.phone-group .input-control {
    border: none;
    border-radius: 0;
    padding-left: 10px;
}

.phone-group .input-control:focus {
    box-shadow: none;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a99ad;
    font-weight: 700;
    font-size: 1rem;
}

.input-icon-wrapper .input-control {
    padding-left: 42px;
}

/* Autofill ka background hatane ke liye */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #000 !important; /* Text color black rakha hai */
}

.radio-label-heading {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2d3748;
}

.radio-option input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e0;
    border-radius: 50%;
    outline: none;
    margin-right: 8px;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    transition: border 0.2s ease;
}

.radio-option input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: #0d47a1;
}

.radio-option input[type="radio"]:checked {
    border-color: #0d47a1;
}

.radio-option input[type="radio"]:checked::before {
    transform: scale(1);
}

.select-wrapper {
    position: relative;
}

.select-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #6c757d;
    outline: none;
    cursor: pointer;
    appearance: none;
    background: #fff;
    transition: all 0.3s ease;
}

.select-control:focus {
    border-color: #0d47a1;
    color: #333;
    font-weight: 700;
}

.select-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #4a5568;
    pointer-events: none;
}

.checkbox-group {
    margin-top: 15px;
    margin-bottom: 25px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.78rem;
    line-height: 1.4;
    color: #4a5568;
        font-weight: 600;
}

.checkbox-container input {
    margin-top: 3px;
    margin-right: 10px;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.checkbox-container a {
    color: #0d47a1;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

.error-message {
    color: #e53e3e;
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

.submit-btn {
    width: 100%;
    background-color: #124da8;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 15px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #0a3a82;
}

.submit-btn:active {
    transform: scale(0.98);
}

.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-content {
        text-align: center;
    }

    .left-content h1 {
        font-size: 2.8rem;
    }

    .form-card {
        justify-self: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 20px;
    }

    .left-content h1 {
        font-size: 2.2rem;
    }

    .left-content p {
        font-size: 0.95rem;
    }

    .form-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .submit-btn {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
}






.theme-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto 60px;
    padding: 20px;
}

.sect-title {
    font-size: 40px;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: 700;
}

.theme-container {
    display: flex;
    gap: 15px;
    width: 100%;
    height: 450px;
}

.theme-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    flex: 0.5 0 auto; 
    transition: flex 1.5s cubic-bezier(0.25, 1, 0.2, 1);
}

.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                    rgba(0, 0, 0, 0.4) 0%, 
                    rgba(0, 0, 0, 0.15) 40%, 
                    rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    z-index: 2;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 85%;
}

.tag {
    background:#ffffff;
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
}

.arrow-btn {
    background: #ffe600;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.1rem;
    font-weight: bold;
    transform: rotate(-45deg);
}

.bottom-info {
    position: relative;
    transition: transform 0.8s ease;
}

.card-heading {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 1.4s cubic-bezier(0.25, 1, 0.2, 1);
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px; 
    margin-top: 10px;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.7s ease, max-height 0.9s ease;
}


.theme-card:hover {
    flex: 1.4 0 auto; 
}

.theme-card:hover .top-info {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.theme-card:hover .card-heading {
    transform: rotate(0deg);
}

.theme-card:hover .card-description {
    opacity: 1;
    max-height: 100px;
    transition-delay: 0.3s;
}


.theme-card:not(:hover) .card-heading {
    transform: rotate(-90deg) translateX(-20px);
    transform-origin: left bottom;
    position: absolute;
    bottom: 25px;
    left: 12px;
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    .theme-container {
        flex-direction: column;
        height: auto;
    }
    .theme-card {
        flex: none;
        width: 100%;
        height: 160px;
        transition: height 1.2s ease;
    }
    .theme-card:hover {
        flex: none;
        height: 300px;
    }
    .theme-card:not(:hover) .card-heading {
        transform: none;
        position: static;
    }
}










.holiday-section {
    width: 100%;
    max-width: 1920px;
    margin: 20px auto 50px;

}

.holiday-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    padding: 18px;
    width: 100%;
}


.section-title {
    font-size: 40px;
    color: #222222;
    font-weight: 700;
    margin: 0; 
    line-height: 1; 
}

.region-tabs {
   position: relative; 
    display: flex;
    gap: 25px;
    border-bottom: 2px solid rgba(224, 130, 68, 0.3); 
    margin-bottom: 0px;    
    justify-content: flex-end;
    flex: 0 0 auto;
    padding-bottom: 0;
}

.region-tabs::-webkit-scrollbar {
    display: none; 
}

.tab-btn {
    background: none;
    border: none;
    font-size: 1.05rem;
    color: #8c92a0;
    cursor: pointer;
    font-weight: 500;
    padding-bottom: 10px;
    margin-bottom: -1.5px;
    border-bottom: 2.5px solid transparent;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: #e08244; 
}

.tab-btn.active {
    color: #e08244; 
    border-bottom: 2.5px solid #e08244;
}

@media (max-width: 768px) {
    .holiday-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .region-tabs {
        width: 100%; 
        justify-content: flex-start;
        margin-top: 15px;
    }
}


.slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 25px; 
}

.slider-swaper {
    width: 100%;
    padding: 10px 0;
}

.holiday-card {
    position: relative;
    height: 280px;
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.holiday-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.text-meta h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.text-meta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.yellow-explore-btn {
    background: #ffe600;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.yellow-explore-btn svg {
    width: 16px;
    height: 16px;
}

.holiday-card:hover .yellow-explore-btn {
    transform: scale(1.08);
}

.custom-nav-btn {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    top: 60% !important;
    transform: translateY(-50%);
}

.custom-nav-btn::after {
    display: none !important;
}

.custom-nav-btn svg {
    width: 23px !important;       
    height: 23px !important;      
    stroke-width: 3.5px !important; 
    transform: scale(0.85) !important; 
    transform-origin: center !important;
    display: block !important;
    margin: auto !important;
    transition: transform 0.2s ease !important;
}
.swiper-button-prev.prev-btn {
    left: 0px;
    background-color: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.swiper-button-prev.prev-btn:hover {
   color: #ffffff;
    background-color: #0a3a82;
    box-shadow: 0 6px 16px rgba(15, 86, 179, 0.35);
}

.swiper-button-next.next-btn {
    right: 0px;
    background-color: #ffffff; 
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(15, 86, 179, 0.25);
}

.swiper-button-next.next-btn:hover {
  color: #ffffff;
    background-color: #0a3a82;
    box-shadow: 0 6px 16px rgba(15, 86, 179, 0.35);
}

@media (max-width: 768px) {
    .holiday-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .region-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 1px;
    }
    
    .tab-btn.active::after {
        bottom: -12px;
    }
    
    .slider-wrapper {
        padding: 0 10px !important;
    }
    
    .custom-nav-btn {
        display: flex !important; 
        width: 38px !important;    
        height: 38px !important;
        top: 50%;
        transform: translateY(-50%);
    }

    .custom-nav-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    .custom-prev { 
        left: 5px !important; 
    }
    .custom-next { 
        right: 5px !important; 
    }
}






.india-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto 60px;
}

.india-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    padding: 18px;
}

.india-title {
    font-size: 40px;
    color: #1a202c;
    font-weight: 700;
}

.india-tabs {
    display: flex;
    gap: 25px;
    border-bottom: 1.5px solid rgba(224, 130, 68, 0.3);
}

.india-tab-btn {
    background: none;
    border: none;
    font-size: 1.05rem;
    color: #8c92a0;
    cursor: pointer;
    font-weight: 500;
    padding-bottom: 10px;
    margin-bottom: -1.5px;
    border-bottom: 2.5px solid transparent;
    transition: all 0.2s ease;
}

.india-tab-btn:hover { 
    color: #e08244; 
}

.india-tab-btn.active {
    color: #e08244;
    border-bottom: 2.5px solid #e08244;
}

.india-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 25px;
}

.india-swiper-container {
    width: 100%;
    padding: 10px 0;
}

.india-card {
    position: relative;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.india-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.india-card-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.india-card-text h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

.india-card-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.india-yellow-btn {
    background: #ffe600;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.india-yellow-btn svg { 
    width: 16px; 
    height: 16px; 
}

.india-card:hover .india-yellow-btn { 
    transform: scale(1.08); 
}

.india-nav-btn {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.india-nav-btn::after { 
    display: none !important; 
}

/* Inner small arrow logic with scale */
.india-nav-btn svg {
    width: 23px !important;
    height: 23px !important;
    stroke-width: 3.5px !important;
    transform: scale(0.85) !important;
    transition: transform 0.2s ease !important;
}

.india-nav-btn:hover {
    background-color: #0f4ca3 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(15, 86, 179, 0.35);
}

.india-prev { left: 0px; }
.india-next { right: 0px; }

.india-prev:hover svg { transform: scale(0.85) translateX(-1px) !important; }
.india-next:hover svg { transform: scale(0.85) translateX(1px) !important; }


@media (max-width: 768px) {
    .india-nav-btn {
        display: flex !important; 
        width: 38px !important;  
        height: 38px !important;
    }

    .india-nav-btn svg {
        width: 18px !important; 
        height: 18px !important;
    }

    .india-prev { left: 5px !important; }
    .india-next { right: 5px !important; }
    
    .india-slider-wrapper {
        padding: 0 5px !important;
    }
}







.why-us-section {
    width: 100%;
    max-width: 1920px;
    margin: 30px auto 30px;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

.why-us-title {
    font-size: 40px;
    font-weight: 700;
    color: #1c2434;
    margin-bottom: 25px;
}

.why-us-container {
    width: 100%;
    min-height: 520px; 
    border-radius: 28px;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.2)), 
                url('../image/banner/home_contact_background.png') no-repeat center center/cover;
    padding: 40px 25px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    box-sizing: border-box;
}

.cards-flex-wrapper {
    display: flex;
    width: 100%;
    gap: 16px;
    align-items: flex-end;
}

.feature-card {
    flex: 1;
    min-width: 0;
    border-radius: 24px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
    z-index: 1; 
}


.feature-card:nth-child(1),
.feature-card:nth-child(5) {
    height: 350px; 
}

.feature-card:nth-child(2),
.feature-card:nth-child(4) {
    height: 250px; 
}

.feature-card:nth-child(3) {
    height: 200px; 
}

.feature-card:hover {
    transform: translateY(-8px);
}

.card-top-content {
    position: relative;
    z-index: 5; 
    pointer-events: none; 
}
.card-top-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.card-top-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #4a5568;
}

.card-bottom-img {
    position: absolute;
    bottom: 10px;     
    left: 50%;
    transform: translateX(-50%);
    width: 210px;      
    height: 210px;      
    object-fit: contain;
    pointer-events: none;
    z-index: 2;       
    opacity: 0.15;      
    filter: alpha(opacity=15);
}

.feature-card:nth-child(1) .card-bottom-img,
.feature-card:nth-child(2) .card-bottom-img,
.feature-card:nth-child(4) .card-bottom-img,
.feature-card:nth-child(5) .card-bottom-img {
    left: 50% !important;
    right: auto !important;
    bottom: 10px !important;
    transform: translateX(-50%) !important;
    width: 210px !important;
    height: 210px !important;
    opacity: 0.15 !important;
}
.tc-light-cream { 
  background-color: #fbf6f0;
}
.color-orange { 
  color: #ee6c1a; 
}

.tc-orange { 
  background-color: #fbe6f7; 
}
.tc-orange .card-top-content p { 
  color: rgba(24, 24, 24, 0.9) !important; 
}

.tc-blue { 
  background-color: #1a74e2; 
}
.tc-blue .card-top-content p { 
  color: rgba(255, 255, 255, 0.9) !important; 
}

.tc-white { 
  background-color: #ffffff; 
}
.color-dark-blue { 
  color: #1459be;
 }

.tc-light-yellow { 
  background-color: #fffde8;
}
.color-gold { 
  color: #b78103; 
}

.color-white { 
  color: #ffffff; }



@media (max-width: 1100px) {
    .why-us-container {
        height: auto;
        padding: 25px 15px;
    }
    .cards-flex-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        align-items: stretch;
    }
    .feature-card:nth-child(1), .feature-card:nth-child(2),
    .feature-card:nth-child(3), .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        height: 350px; 
    }
}

@media (max-width: 768px) {
    .cards-flex-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cards-flex-wrapper {
        grid-template-columns: 1fr;
    }
    .feature-card:nth-child(1), .feature-card:nth-child(2),
    .feature-card:nth-child(3), .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        height: 320px; 
    }
}

.tourism-board-title {
    font-size: 40px;
    font-weight: 700;
    color: #1c2434;
    margin: 30px auto 10px auto;
    text-align: left;
    max-width: 1920px;
}

@media (max-width: 768px) {
    .tourism-board-title {
        text-align: left !important;
        padding-left: 15px !important; 
        margin: 20px 0 10px 0 !important;
        font-size: 40px !important; 
        width: 100%;
        box-sizing: border-box;
    }
}

.tourism-board-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 20px 0;
  margin: auto;
  justify-content: center;
}


.tour-card{
  width: 840px !important;
}
.tour-card img {
  width: 100%;
  height: 400px; 
  object-fit: cover;
}

.arrow-btn-left, .arrow-btn-right {
  width: 48px;
  height: 48px;
  position: absolute !important;
  top: 45% !important;
  z-index: 9999 !important; 
  background: white !important;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 50%;
  display: block !important;
}
.arrow-btn-left { 
  left: 19.5% !important; 
}
.arrow-btn-right { 
  right: 20% !important; 
}

.arrow-btn-left:hover{
  color: #ffffff;
  background-color: #0d47a1 !important;
}
.arrow-btn-right:hover{
  color: #ffffff;
  background-color: #0d47a1 !important;
}



.stats-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.stat-title{
     font-size: 40px;
    font-weight: 700;
    color: #1c2434;
    margin-bottom: 25px;
    text-align: center;
    margin: 40px auto;
}

.counter{
  font-size: 35px;
  font-weight: 500;
  color: #4f3613;
}

.stat-item { 
    text-align: center; 
    flex: 1; 
    border-right: 1px solid #8e6d3e; 
    padding: 10px 0;
    font-weight: 500;
}

.stat-item:last-child { 
    border-right: none; 
}




.testimonial-wrapper {
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;  
}

.swiper.myTestimonialSlider {
    padding-bottom: 20px;
    width: 100%;
}

.testimonial-card {
    width: 400px !important; 
    height: auto;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); 
    transition: box-shadow 0.1s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 50px;
    color: #f7d2b5; 
    line-height: 1;
    font-family: Arial, sans-serif; 
}

.swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1.05); 
}

.my-custom-testi-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;           
    margin-top: 25px;   
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;  
}

.user-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.user-date {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.my-custom-testi-prev, .my-custom-testi-next {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: white;
    transition: background 0.3s;
}

.my-custom-testi-prev:hover, .my-custom-testi-next:hover {
    background: #0a3a82;
    color: #ffffff;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 85vw !important; 
    }
}






.faq-section { 
  text-align: center; 
  padding: 50px 20px; 
}
.faq-heading { 
  margin-bottom: 30px; 
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a; 
}

.faq-container { 
  max-width: 800px;
  margin: 0 auto; 
} /* Center karne ke liye */

.faq-item { 
  border: 1px solid #eee; 
  margin-bottom: 15px; 
  border-radius: 8px; 
  cursor: pointer; 
  text-align: left; 
}
.faq-question { 
  padding: 10px; 
  font-weight: 600; 
}
.faq-answer { 
  display: none; 
  padding: 0 10px 10px 10px; 
  color: #fff; 
}
.hidden-faq { 
  display: none; 
}
/* Active State */
.faq-item.active { 
  background-color: #007bff; 
  color: white; 
  border: none; 
}

/* Show More Button */
.show-more-btn { 
  margin-top: 30px; 
  padding: 12px 30px; 
  background-color: #003399; 
  color: white; 
  border: none; 
  border-radius: 25px; 
  cursor: pointer; 
}







.package-tab-title{
  margin: 30px auto;
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a; 
  text-align: center;
}

/* 1. Main wrapper */
.package-tabs {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    margin: auto;
    max-width: 1920px;
    padding: 40px;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* 2. Left Sidebar - Scrollbar logic (Track visible, Thumb hidden until hover) */
.sidebar-menu {
    width: 320px;
    flex-shrink: 0;
    border-right: 1px solid #e0e0e0;
    max-height: 350px; 
    overflow-y: auto; 
}

/* Chrome, Safari, Edge Scrollbar Styles */
.sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

/* Track hamesha dikhega */
.sidebar-menu::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

/* Thumb default mein transparent (hidden) */
.sidebar-menu::-webkit-scrollbar-thumb {
    background: transparent; 
    border-radius: 10px;
}

/* Hover karne par thumb dikhega */
.sidebar-menu:hover::-webkit-scrollbar-thumb {
    background: #c1c1c1;
}

/* Hover ke doran thumb ka color thoda dark */
.sidebar-menu:hover::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Sidebar menu items */
.menu-item {
    padding: 12px 20px;
    cursor: pointer;
    color: #556070;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    min-height: 25px;
}
.menu-item.active {
    color: #0f4ca3;
    border-left: 3px solid #0f4ca3;
    background-color: #f8fafd;
    font-weight: 600;
}

/* 3. Right Content Area */
.content-container {
    flex: 1;
    padding-left: 40px;
    display: flex;
    flex-wrap: wrap;
}

.content-panel {
    display: none;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.content-panel.active {
    display: flex;
}

/* 4. Tags Styling */
.tag {
    padding: 10px 18px;
    border: 1px solid #0f4ca3;
    border-radius: 6px;
    color: #0f4ca3;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.tag:hover {
    background-color: #0f4ca3;
    color: #ffffff;
}

/* Mobile Screen ke liye (Screen width 768px se kam hone par) */
@media (max-width: 768px) {
    .package-tabs {
        flex-direction: column; /* Sidebar aur content ko ek dusre ke niche layega */
        padding: 20px;
    }

    .sidebar-menu {
        width: 100%; /* Mobile par full width lega */
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        max-height: 250px; /* Mobile par height thodi kam kar di */
        margin-bottom: 20px;
    }

    .content-container {
        padding-left: 0; /* Left padding hatayi */
        width: 100%;
    }

    .tag {
        font-size: 13px; /* Tags ka size chota kiya taaki fit ho sakein */
        padding: 8px 12px;
    }
}





/* Footer Wrapper - Pura background color screen ki width tak */
.footer-wrapper {
    background-color: #0b3880;
    color: white;
    padding: 180px 0 40px 0;
    position: relative;
    margin-top: 150px;
    width: 100%;
}

/* Content Container - Yahan hum 'max-width' aur 'margin' se dono side gap layenge */
/* Footer ka content container */
.footer-container {
    /* Is width ko increase karke dekhein (1400px ya 1500px), 
       ye aapke "Trending Travel Themes" ke alignment se match karega */
    max-width: 1920px; 
    margin: 0 auto;
    /* Yahan padding kam karke check karein */
    padding: 0 100px; 
    position: relative;
}

/* Newsletter Box */
.newsletter-box {
    background-color: #0d1e3d;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: -210px;
    
    /* Box ko container ki boundaries ke sath chipkane ke liye */
    left: 100px; 
    right: 100px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-top: -40px;
}
.newsletter-text h2 { margin: 0 0 10px 0; font-size: 24px; }
.newsletter-text p { margin: 0; opacity: 0.8; font-size: 14px; }

/* --- Subscribe Input & Button --- */
.subscribe-input {
    background: #254b8d;
    padding: 8px;
    border-radius: 50px;
    display: flex;
}

.subscribe-input input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 12px 20px;
    width: 300px;
}

.subscribe-input button {
    background: #ffcc00;
    color: #0d1e3d;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}


.footer-col h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 25px;
    color: #ffffff;
}

.footer-col a {
    display: block;
    color: #a0b1c5;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 17px;
}

.footer-col a:hover{
 color: #000;
 font-weight: 600;
}
/* --- Brand & Contact Styling --- */
.footer-logo {
    width: 300px;
    margin-bottom: 15px;
}

.brand-desc {
    color: #a0b1c5;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info {
    color: #a0b1c5;
    font-size: 16px;
    margin-bottom: 8px;
}


/* --- Mobile Responsive Fix --- */
@media (max-width: 768px) {
    /* Newsletter Box ko vertical karein */
    .newsletter-box {
        flex-direction: column; /* Text aur Input ko upar-neeche karein */
        text-align: center;
        padding: 20px;
        top: -240px; /* Thoda adjust kiya */
        left: 20px;
        right: 20px;
    }

    .subscribe-input {
        width: 100%;
        margin-top: 20px;
    }

    .subscribe-input input {
        width: 100%; /* Input box full width */
    }

    /* Grid ko 1 column mein convert karein aur center align karein */
    .footer-links-grid {
        grid-template-columns: 1fr; /* Sab kuch ek column mein */
        text-align: center;
        gap: 30px;
        margin-top: -40px; 
    }

    /* Footer container ki padding mobile par thodi kam karein */
    .footer-container {
        padding: 0 20px;
    }

    /* Sabhi footer columns aur unke contents ko center karne ke liye */
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Logo ko center align karne ke liye */
    .footer-logo {
        margin: 0 auto 15px auto;
        display: block;
    }

    .brand-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}



.banner-section {
    position: relative;
    width: 100%;       /* Ensures it takes full available width */
    overflow: hidden;  /* Prevents image overflow */
}

.banner-section__image {
    width: 100%;       /* Forces image to fill the container */
    height: 500px; 
    object-fit: cover; /* Ensures the image doesn't distort */
    display: block;    /* Removes bottom spacing issues */
    
}

.banner-section__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;      /* Matches the height of the banner */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-align: center;
}

.banner-section__rating{
  color: goldenrod;
  font-size: 30px;
}

.banner-section__title{
  font-size: 50px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}



@media (max-width: 900px) {
    .hotel-grid-container {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }
  @media (max-width: 600px) {
    .hotel-grid-container {
      grid-template-columns: 1fr !important;
    }
  }

  .about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    text-align: justify;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .about-img-box {
    flex: 1;
  }
  .about-img-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .about-content-box {
    flex: 1;
  }
  @media (max-width: 900px) {
    .about-container {
      flex-direction: column;
    }
  }







.main-destination-section {
  width: 100%;
    max-width: 1920px;
    margin: 20px auto;
    padding: 20px;
}

/* Header & See All Button Alignment */
.destinations-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.destinations-top-bar h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a !important; /* Text white rahega */
}

.view-all-btn {
    background: transparent;
    border: 2px solid black;
    color: #1a1a1a;
    padding: 5px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.view-all-btn:hover {
    color: #003380; 
    border: 2px solid #003380;

}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Hide extra cards initially */
.grid-container:not(.show-all) .extra-card {
    display: none;
}

/* Card Styles */
.card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Sabhi cards ki height barabar rakhne ke liye */
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.card-img-container {
    width: 100%;
    height: 220px;
    padding: 12px 12px 0 12px;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1; /* Yeh baaki bachi hui jagah ko cover karega */
    padding: 15px;
}

.location-title {
    font-size: 20px;
    font-weight: 600;
    color: #003399;
    display: flex;
    align-items: flex-start; /* Icon ko heading ki first line ke sath align rakhne ke liye */
    gap: 6px;
    white-space: normal !important; /* Text cut hone se rokne aur next line mein bhejne ke liye */
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: break-word;
    margin-bottom: 15px; /* Heading aur days wali line ke beech ka gap yahan badhaya gaya hai */
}

.location-title i {
    color: #1a1a1a;
    font-size: 13px;
    margin-top: 5px; /* Icon ko text ki pehli line ke barabar adjust karne ke liye */
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0; /* Extra gap control karne ke liye */
}

.duration {
    font-size: 15px;
    color: black;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #e71717;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}


.custom-modal-overlay {
    display: none; /* Default mein chupana hai */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.rating {
    font-size: 12px;
    color: #e71717;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

.card-package-info {
    flex: 1; /* Yeh content ke mutabik jagah lega aur footer ko niche bhej dega */
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed #e0e0e0;
    text-align: left;
}

.inline-section-heading{
  color: #003399;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 5px;
}
.inline-timeline {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    max-height: 120px; /* Itinerary ki height fix ki hai taaki card jyada lamba na ho */
    overflow-y: auto;  /* Agar days jyada honge toh scrollbar aa jayega */
    padding-right: 4px;
}

.inline-timeline::-webkit-scrollbar {
    width: 3px;
}

.inline-timeline::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.inline-timeline li {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
    line-height: 1.3;
}

.inline-inclusions {
    font-size: 14px;
    background: #f8f9fa;
    padding: 5px 8px;
    border-radius: 4px;
    font-weight: 400;
    color: #003399;
    border-left: 3px solid #28a745;
    margin-bottom: 10px;
}

/* 4. Card Footer hamesha bottom par fix rahega */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Yeh magic property footer ko sabse niche dhakel deti hai */
    padding-top: 10px;
    border-top: 1px solid #f1f1f1;
}

/* Book Now Button Styling */
.book-now-btn {
    background-color: #e0e0e0;
    color: #000000;
    border: none;
    padding: 6px 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-now-btn:hover {
   color: #ffffff;
   background-color: #003399;
  }




/* Main Section Wrapper */
.contact-section-wrapper {
  width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 40px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1920px;
    margin: 0 auto;
}

/* Left Side Styling */
.contact-left {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    margin-bottom: 30px;
}

.brand-subtitle {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    color: #003399;
    font-size: 32px;
    display: block;
    font-weight: 500;
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-desc {
    color: #777777;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 420px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: #f8f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #003399;
    color: #ffffff;
}

/* Right Side Form Styling */
.contact-right {
    flex: 1.2;
    min-width: 320px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row.full-width {
    display: block;
}

.form-input, .form-textarea {
    flex: 1;
    width: 100%;
    background-color: #fcf9f5;
    border: 1px solid #f0ece1;
    padding: 15px 20px;
    font-size: 14px;
    color: #333333;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #999999;
}

.form-input:focus, .form-textarea:focus {
    border-color: #003399;
}

.form-textarea {
    resize: vertical;
}

.form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}
/* Submit Button */
.submit-btn {
    background-color: #003399;
    color: #ffffff;
    border: none;
    padding: 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #003399;
}

/* Responsive Design for Mobile & Tablet */
@media (max-width: 992px) {
    .contact-section-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-left {
        padding-right: 0;
        margin-bottom: 40px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-desc {
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-right {
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .form-input, .form-textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .submit-btn {
        width: 100%;
    }
}







/* Hidden Checkbox */
.gt-modal-checkbox {
    display: none;
}

/* Trigger Button Design */
.gt-book-now-trigger {
    display: inline-block;
    padding: 10px 20px;
    background: #004bad;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Modal Default Hidden State */
.gt-custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Jab Checkbox Checked ho toh Modal Show ho jaye (Bina JS ke) */
.gt-modal-checkbox:checked ~ .gt-custom-modal-overlay {
    visibility: visible;
    opacity: 1;
}

/* Baaki Modal Styling */
.gt-modal-box {
    background: #ffffff;
    padding: 30px;
    width: 100%;
    max-width: 460px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

.gt-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.gt-modal-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.gt-field-wrap {
    margin-bottom: 15px;
}

.gt-input-control, .gt-select-control, .gt-country-dropdown {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcedf8;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background: #fff;
    color: #333;
}

.gt-phone-flex {
    display: flex;
    gap: 10px;
}

.gt-country-dropdown {
    width: 85px;
    cursor: pointer;
}

.gt-mail-icon-box {
    position: relative;
}

.gt-mail-icon-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
}

.gt-mail-icon-box .gt-input-control {
    padding-left: 42px;
}

.gt-radio-title {
    font-size: 13px;
    font-weight: 600;
    color: #2d3748;
    display: block;
    margin-bottom: 8px;
}

.gt-radio-container {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.gt-radio-label {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gt-terms-group {
    margin-bottom: 20px;
}

.gt-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    color: #4a5568;
}

.gt-checkbox-label a {
    color: #004bad;
    text-decoration: underline;
}

.gt-submit-action-btn {
    width: 100%;
    padding: 12px;
    background: #004bad;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}












































  
