* {
  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;
}

.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%;
  height: 600px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  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))
}

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

.hero-headline {
  color: #003380;
  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: #003380;
  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: 0 10px;
}

.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;
}

.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;
}

@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;
  }
}
@media (max-width: 1050px) {
  .center-nav-menu {
    gap: 14px;
  }
  .brand-name {
    font-size: 19px;
  }
  .hero-headline {
    font-size: 34px;
  }
}

@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;
  }
  
  .navbar-login-btn {
    display: none;
  }
  
  .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;
  padding: 0 25px; 
}

.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;
}

.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 h3 {
  position: absolute;
  top: 40px; 
  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 img {
  width: 100% !important;
  height: 100% !important; 
  object-fit: cover !important;
  position: absolute;
  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;
}

.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.avif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 8%;
    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;
}

.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;
}

.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 content (Tags & Arrow button) */
.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%;
}

/* Big Font Size Tags */
.tag {
    background: rgba(255, 255, 255, 0.25);
    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 content (Headings & Descriptions) */
.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;
}

/* ===================================================
   HOVER STATE LOGIC (Fixed & Balanced Expansion)
   =================================================== */

.theme-card:hover {
    /* Iski width ko kam kiya taaki baki cards compress na hon */
    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;
}

/* ===================================================
   COLLAPSED STATE LOGIC (Vertical Text)
   =================================================== */

.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;
}

/* Responsive for Mobile */
@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;

}

/* 1. .holiday-header ko update karein */
.holiday-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* FIXED: dono ko niche se barabar align karein */
    padding: 18px;
    width: 100%;
}


/* 3. Heading ko control karne ke liye */
.section-title {
    font-size: 40px;
    color: #222222;
    font-weight: 700;
    margin: 0; /* Padding/Margin ki wajah se upar-niche ho sakta hai, ise 0 karein */
    line-height: 1; /* Line-height adjust karein taaki text bottom se chipke */
}

/* 2. .region-tabs ka alignment update karein */
.region-tabs {
   position: relative; /* Ye zaroori hai */
    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; /* Chrome/Safari se scrollbar hatane ke liye */
}

/* Buttons ki styling aur padding text ke hisab se set ki */
.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; 
}

/* Active button ke niche dark orange thick line */
.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%; /* Mobile par wapas 100% kar diya */
        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);
}

/* NAVIGATION ARROWS CUSTOM TINTS RULES */
.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: 50%;
    transform: translateY(-50%);
}

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

.custom-nav-btn svg {
    /* Swiper ki default sizes ko override karne ke liye !important lagaya */
    width: 23px !important;       
    height: 23px !important;      
    stroke-width: 3.5px !important; /* Thoda bold aur clean dikhne ke liye */
    
    /* Agar Swiper fir bhi bada dikhaye, toh scale down (chota) karein */
    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: 10px;
    }
    
    .tab-btn.active::after {
        bottom: -12px;
    }
    
    /* Mobile par thodi padding zaroori hai taaki buttons screen se chipke na aur andar dikhein */
    .slider-wrapper {
        padding: 0 10px !important;
    }
    
    /* Galti Yahan Thi: display:none ko hata kar flex kiya aur size chhota kiya */
    .custom-nav-btn {
        display: flex !important; 
        width: 38px !important;    /* Mobile ke liye comfortable size */
        height: 38px !important;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Arrow icons ka size mobile ke hisab se scale kiya */
    .custom-nav-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    /* Buttons ko mobile screen ke edges ke andar rakhne ke liye positions */
    .custom-prev { 
        left: 5px !important; 
    }
    .custom-next { 
        right: 5px !important; 
    }
}





/* ==========================================
   RESET & BASE STYLES
   ========================================== */

/* ==========================================
   CONTAINER & HEADER
   ========================================== */
.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;
}

/* ==========================================
   TABS STYLING
   ========================================== */
.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;
}

/* ==========================================
   SLIDER WRAPPER & CARDS
   ========================================== */
.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); 
}

/* ==========================================
   NAVIGATION BUTTONS (Arrows & Circles)
   ========================================== */
.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; }

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    /* NAYA: Yeh line mobile par kisi bhi display:none ko force karke overwrite karegi */
    .india-nav-btn {
        display: flex !important; 
        width: 38px !important;  /* Mobile par buttons ka size thoda comfortable kiya */
        height: 38px !important;
    }

    .india-nav-btn svg {
        width: 18px !important;  /* Mobile ke hisab se arrow svg chhota kiya */
        height: 18px !important;
    }

    /* Mobile par buttons ko bilkul kinaron par set kiya taaki content na chupe */
    .india-prev { left: 5px !important; }
    .india-next { right: 5px !important; }
    
    /* Agar aapke slider ke aas-paas padding nahi h toh is wrapper ko padding de dein */
    .india-slider-wrapper {
        padding: 0 5px !important;
    }
}






/* ==========================================
   WHY THOMAS COOK SECTION STYLING (BOTTOM ALIGNED - TOP WAVE)
   ========================================== */
.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;
}

/* Background Large Banner Container */
.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.avif') no-repeat center center/cover;
    padding: 40px 25px;
    display: flex;
    align-items: flex-end; /* FIXED: Niche se sabko ek barabar line me chipka diya */
    overflow: hidden;
    box-sizing: border-box;
}

/* Flex layout for 5 cards side-by-side */
.cards-flex-wrapper {
    display: flex;
    width: 100%;
    gap: 16px;
    align-items: flex-end; /* FIXED: Niche ki line bilkul flat aur barabar rahegi */
}

/* Common Feature Card Base */
.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; /* Card ka base layer */
}

/* ==========================================
   EXACT GRADUAL HEIGHTS FROM BOTTOM (IMAGE MATCH)
   ========================================== */

/* Card 1 aur Card 5: Sabse Unche (Corners) */
.feature-card:nth-child(1),
.feature-card:nth-child(5) {
    height: 350px; 
}

/* Card 2 aur Card 4: Medium Unche */
.feature-card:nth-child(2),
.feature-card:nth-child(4) {
    height: 250px; 
}

/* Card 3: Sabse Chhota Box (Center) */
.feature-card:nth-child(3) {
    height: 200px; 
}

.feature-card:hover {
    transform: translateY(-8px); /* Hover par thoda upar lift hoga */
}

.card-top-content {
    position: relative;
    z-index: 5; /* Yeh text ko logo ke upar rakhega */
    pointer-events: none; /* Taaki hover effects smoothly chalein */
}
.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;
}

/* Illustrations Positioning */
/* ==========================================
   FIXED: LOGO/IMAGE SIZES AND PERFECT CENTER POSITION
   ========================================== */
.card-bottom-img {
    position: absolute;
    bottom: 10px;       /* Niche se thoda upar */
    left: 50%;
    transform: translateX(-50%);
    width: 210px;       /* FIXED: Size bada kiya taaki background cover kare */
    height: 210px;      
    object-fit: contain;
    pointer-events: none;
    z-index: 2;         /* Text se niche, background se upar */
    opacity: 0.15;      /* FIXED: Isse logo light hokar background watermark ban jayega */
    filter: alpha(opacity=15);
}

/* Sabhi child elements par universal center alignment control */
.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;
}
/* ==========================================
   COLORS SETTINGS
   ========================================== */
.tc-light-cream { background-color: #fbf6f0;}
.color-orange { color: #ee6c1a; }

.tc-orange { background-color: #f5c6ec; }
.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; }


/* ==========================================
   RESPONSIVE LAYOUT
   ========================================== */
@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;
    }
    /* Mobile/Tablets par design normal box ho jayega step distortion rokne ke liye */
    .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; 
    }
}