:root {
  /* Brand Colors */
  --primary-orange: #f6611c;
  --primary-hover: #29224c;
  --secondary-yellow: #fc961b;
  --navbar-deep: #29224c;
  --heritage-red: #b30000;
  --heritage-red-light: #b50000;
  --whatsapp-green: #008001;

  /* Category Colors */
  --cat-best-seller-bg: #ffebf5;
  --cat-best-seller-text: #cf3881;
  --cat-featured-bg: #fff0ed;
  --cat-featured-text: #e9652e;
  --cat-hot-bg: #e6f7f4;
  --cat-adventure-bg: #4ba7fc;
  --cat-popular-bg: #e8edf1;
  --cat-popular-text: #4f5e71;

  /* UI Colors */
  --swiper-bullet: #aaafb6;
  --star-rating: #ffcc00;
}

/* similar tour code display none */
h2.text-black.text-3xl.font-bold.leading-\[1\.1\].mb-8 {
  display: none;
}
section.hi5-itinerary-wrap {
  display: none;
}
/* similar tour code display none end */

.category-best-seller {
  background-color: var(--cat-best-seller-bg);
  color: var(--cat-best-seller-text);
}

.category-featured {
  background-color: var(--cat-featured-bg);
  color: var(--cat-featured-text);
}

.category-hot {
  background-color: var(--cat-hot-bg);
  color: var(--primary-orange);
}

.category-adventure {
  background-color: var(--cat-adventure-bg);
  color: #ffffff;
}

.category-cultural {
  background-color: var(--secondary-yellow);
  color: #ffffff;
}

.category-popular,
.category-luxury {
  background-color: var(--cat-popular-bg);
  color: var(--cat-popular-text);
}

.swiper-pagination {
  .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: var(--swiper-bullet) !important;
  }

  .swiper-pagination-bullet-active {
    background-color: var(--primary-orange) !important;
  }
}

.swiper-pagination-custom {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .swiper-pagination-bullet-active {
    width: 32px !important;
    height: 10px !important;
    border-radius: 5px;
    background-color: var(--primary-orange);
  }
}

.shop-details {
  .thumbSwiper {
    .swiper-slide {
      border: 2px solid transparent;
    }

    .swiper-slide-thumb-active {
      border: 2px solid var(--primary-orange);
      border-radius: 8px;

      img {
        border-radius: 8px;
      }
    }
  }
}

.tours-details-02 {
  .thumbSwiper02 {
    .swiper-slide {
      border: 2px solid transparent;
    }

    .swiper-slide-thumb-active {
      border: 2px solid var(--primary-orange);
      border-radius: 8px;

      img {
        border-radius: 8px;
      }
    }
  }
}

.star-wrapper .iconify {
  /* color: transparent; */
  stroke: var(--secondary-yellow);
  stroke-width: 1.5;
}

.star-wrapper.active .iconify {
  color: var(--secondary-yellow);
  stroke: var(--secondary-yellow);
}

.noUi-horizontal {
  height: 4px !important;
}

.noUi-tooltip {
  display: none !important;
}

.noUi-handle {
  top: -10px !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 100% !important;
  box-shadow: none !important;
  border: 2px solid var(--primary-orange);

  &::before {
    display: none !important;
  }

  &::after {
    display: none !important;
  }
}

.noUi-target {
  box-shadow: none !important;
  background: var(--cat-popular-bg) !important;
  border: none !important;
}

.noUi-handle-lower {
  cursor: pointer !important;
  right: -24px !important;
}

.noUi-handle-upper {
  cursor: pointer !important;
  right: 0 !important;
}

.checkout-box {
  background-color: #dcd7e3;
  position: relative;
  border-radius: 2px;

  &::before {
    content: "";
    display: block;
    border: 15px solid #dcd7e2;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    position: absolute;
    top: -15px;
    left: 0;
    margin: -15px 0 0 25px;
  }
}

@media (max-width: 1023px) {
  .header-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
    margin: 0;
    box-sizing: border-box;
    overflow-y: auto;

    &.active {
      left: 0;
    }

    ul {
      padding-top: 20px;

      &.active {
        padding-top: 0;
      }
    }

    &.active ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .nav-father.active {
      .nav-wrapper {
        margin-top: 12px;
        height: auto;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease;
        width: 100%;
      }
    }

    .nav-wrapper {
      height: 0;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      padding-left: 15px;
    }
  }

  body.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
  }

  .sidebar-filter {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }

  .sidebar-filter.active {
    left: 0;
  }

  .overlay-for-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .overlay-for-sidebar.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 640px) {
  #scroll-nav {
    display: none !important;
  }

  .swiper-button-next {
    width: 38px !important;
    height: 38px !important;
  }

  .swiper-button-prev {
    width: 38px !important;
    height: 38px !important;
  }
}







/* header */

/* Base header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #0f1729;
  border-bottom: 1px solid #ddd;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-logo img {
  height: 50px;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 5px 10px;
}

.search-box i {
  color: #666;
  margin-right: 8px;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 0.95rem;
}

/* Right info */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #333;
}

.phone {
  font-weight: bold;
  color: var(--primary-orange);
}

/* Navbar */
.travel-navbar {
  background: var(--navbar-deep);
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 12px 18px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.nav-menu a:hover {
  background: var(--primary-orange);
}

/* Mega dropdown */
.mega-parent:hover .mega-dropdown {
  display: flex;

}

.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.mega-column {
  min-width: 220px;
}

.mega-column ul {
  list-style: none;
  padding: 0;
}

.mega-column ul li a {
  display: block;
  padding: 5px 10px;
  color: #333;
}



/* Expert button */
.expert-btn {
  background: var(--primary-orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0px;
  margin-left: 15px;
  text-decoration: none;
  transition: background 0.3s;
}

.expert-btn:hover {
  background: var(--primary-orange);
}

/* Responsive */
.hamburger {
  display: none;
}

@media (max-width: 992px) {
  .header-right {
    display: none;
    /* hide info items */
  }

  .nav-menu {
    flex-direction: column;
    display: none;
    /* hidden by default */
    background: #333;
    width: 100%;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    padding: 12px;
    border-bottom: 1px solid #444;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
  }

  .nav-menu.active {
    display: flex;
    /* show menu when active */
  }

  /* Mega dropdowns collapse into simple lists */
  .mega-dropdown {
    position: static;
    box-shadow: none;
    padding: 0;
    display: none;
    flex-direction: column;
    background: #444;
  }

  .mega-parent.open .mega-dropdown {
    display: flex;
  }

  .mega-column ul li a {
    color: #fff;
    padding: 10px;
  }
}

/* header end */
.hero-slider {
  position: relative;
  z-index: 1;

  height: 85vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgb(255, 255, 255);
}

.content h2 {
  font-size: 40px;
  font-weight: 300;
}

.content h1 {
  font-size: 80px;
  margin: 10px 0;
}

.content p {
  font-size: 20px;
}

@keyframes slideRightToLeft {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.running-text {
  white-space: nowrap;
  display: inline-block;
  animation: slideRightToLeft 8s linear infinite;
}

.destination-section {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  /* Images ke beech space */
}

.destination-card {
  width: 23%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 15px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.card-info {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.view-btn {
  display: inline-block;
  padding: 8px 15px;
  background: var(--primary-orange);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

.view-btn:hover {
  background: var(--primary-orange);
}

.luxury-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 80px 10px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.luxury-container {
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.luxury-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-orange);
}

.luxury-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ddd;
}

.luxury-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #f1f1f1;
}

.highlight {
  color: var(--primary-orange);
  font-weight: 600;
}

.luxury-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--primary-orange);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
}

.luxury-btn:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* ===== TOUR SECTION ===== */

.tour-section {
  padding: 30px 20px;
  background: #f5f7fa;
  font-family: 'Segoe UI', sans-serif;
}

.tour-container {
  max-width: 1200px;
  margin: auto;
}

.tour-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* ===== TOUR CARD ===== */

.tour-card {
  flex: 1 1 calc(50% - 15px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  transition: 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* ===== IMAGE ===== */

.tour-image {
  flex: 1;
  min-width: 200px;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CONTENT ===== */

.tour-content {
  flex: 1;
  min-width: 200px;
  padding: 20px;
}

.tour-content h3 {
  font-size: 18px;
  color: #0b2545;
  margin-bottom: 8px;
}

.tour-content h4 {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 10px;
}

.tour-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ===== BUTTON ===== */

.tour-btn {
  display: inline-block;
  background: var(--primary-orange);
  color: #ffffff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  transition: 0.3s ease;
}

.tour-btn:hover {
  background: var(--primary-hover);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .tour-card {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .tour-card {
    flex: 1 1 100%;
  }
}

/* ===== SECTION BACKGROUND ===== */

.tour-section-new {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

/* ===== HEADER ===== */

.tour-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.tour-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tour-header h2 span {

  padding: 5px 12px;
  border-radius: 6px;
  color: var(--primary-orange);
}

.tour-header p {
  font-size: 18px;
  color: #dcdcdc;
}

/* ===== GRID (3 COLUMN) ===== */

.tour-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== TOUR BOX ===== */

.tour-box {
  background: #ffffff;
  color: #333;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tour-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-orange);
}

.tour-box p {
  font-size: 15px;
  line-height: 1.6;
}

.tour-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .tour-header h2 {
    font-size: 28px;
  }
}

/* ===== ABOUT HOME SECTION ===== */

.about-home {
  padding: 30px 0px;
  background: #f8f5f2;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */

.about-header {
  text-align: center;
  margin-bottom: 30px;

}

.about-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.about-header h2 span {

  padding: 6px 14px;
  border-radius: 6px;
  color: var(--primary-orange);
}

.about-subtitle {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
}

/* ===== CONTENT ===== */

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-highlight {
  font-weight: 600;
  color: #b08900;
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .about-header h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 16px;
  }
}

.am-tour-section {
  padding: 60px 0;
  background: #f4f6fb;
}

.am-container {
  width: 95%;
  margin: 25px;
}

.am-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.am-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding-bottom: 20px;
  transition: 0.3s;
}

.am-card:hover {
  transform: translateY(-6px);
}

.am-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.am-title {
  font-size: 18px;
  padding: 15px;
  margin: 0;
  font-weight: 600;
}

.am-highlight {
  color: black;

  display: inline-block;
  padding: 5px 12px;
  border-radius: 30px;
}

.am-desc {
  padding: 0 15px;
  font-size: 14px;
  color: #555;
}

.am-btn {
  display: inline-block;
  margin: 15px;
  padding: 10px 20px;
  background: var(--primary-orange);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.am-btn:hover {
  background: var(--primary-hover);
}

/* Query Section */


/* Responsive */


.am-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Make Card Flex Column */
.am-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* IMPORTANT */
  height: 100%;
  /* IMPORTANT */
}

/* Content Area */
.am-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* IMPORTANT */
}

/* Image */
.am-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Title */
.am-title {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Description */
.am-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Push Button to Bottom */
.am-btn {
  margin-top: auto;
  /* MAGIC LINE */
  padding: 12px 20px;
  background: var(--primary-orange);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

@media(max-width: 992px) {
  .am-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

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

  .am-query-box {
    width: 90%;
  }
}

.travel-duration-wrapper {
  padding: 20px 0;
  background: #374150;
}

.travel-duration-row {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* .travel-duration-image {
    flex: 1;
} */

.travel-duration-image img {
  width: 100%;
  border-radius: 15px;
  border-top-right-radius: 190px;
  border-bottom-right-radius: 190px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.travel-duration-content {
  flex: 1;
}

.travel-duration-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--primary-orange);
}

.travel-duration-content p {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 30px;
}

.travel-duration-buttons button {
  padding: 12px 22px;
  margin: 8px;
  border: none;
  border-radius: 30px;
  background: #e4e8f5;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.travel-duration-buttons button:hover,
.active-btn {
  background: #fff;
  color: var(--primary-orange);
}

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


}

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


}

/* TOUR RESULT SECTION */

.travel-tour-results {
  width: 90%;
  margin: 60px auto;
}

.tour-group {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tour-group.active-tour {
  display: grid;
}

.tour-card-duration {
  padding: 25px;
  background: var(--primary-orange);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}

.tour-card:hover {
  transform: translateY(-6px);
}

.immersive-journeys {
  background: #374150;
  /* soft peach background */
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.journeys-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.journeys-text {
  flex: 1;
}

.journeys-text h2 {
  font-size: 2.2rem;
  color: var(--primary-orange);
  margin-bottom: 60px;
}

.journeys-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 15px;
}



.journeys-links {
  margin-top: 15px;
}

.journeys-links a {
  display: inline-block;
  margin-right: 15px;
  padding: 10px 18px;
  background: var(--primary-orange);
  color: #ad4444;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.journeys-links a:hover {
  background: var(--primary-orange);
}

.journeys-image {
  flex: 1;
  text-align: center;
}

.journeys-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .journeys-container {
    flex-direction: column;
    text-align: center;
  }

  .journeys-text {
    order: 2;
  }

  .journeys-image {
    order: 1;
    margin-bottom: 20px;
  }
}

.luxury-trains {
  padding: 80px 40px;
  font-family: 'Segoe UI', sans-serif;
  color: #000000;
  position: relative;
  background: url('luxury-bg.jpg') center/cover no-repeat;
}

.luxury-trains::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  /* dark overlay for readability */
  z-index: 0;
}

.luxury-intro,
.train-grid {
  position: relative;
  z-index: 1;
}

.luxury-intro {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.luxury-intro h1 {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.luxury-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
}

.train-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.train-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: flex;
  flex-direction: column;
  /* stack content vertically */
  justify-content: space-between;
  /* push button to bottom */
  text-align: center;
}

.train-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.train-card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.train-card p {
  flex-grow: 1;
  /* allow description to expand */
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-align: justify;
  color: #555;
}

.read-more {
  align-self: center;
  /* center button horizontally */
  background: var(--primary-orange);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.read-more:hover {
  background: var(--primary-hover);
}

.luxury-partners {
  padding: 70px 40px;
  background: #374150;
  font-family: 'Segoe UI', sans-serif;
}

.partners-intro {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.partners-intro h2 {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.partners-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  color: #fff;
}

.partners-logos {
  display: grid;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: white;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.logo img {

  object-fit: contain;

}

.logo img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

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

  .train-grid {
    display: grid;

    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

}

@media (max-width: 480px) {
  .partners-logos {
    grid-template-columns: 1fr;
  }
}

/* .partners-logos { display: flex; gap: 40px; overflow: hidden; animation: scroll 20s linear infinite; } @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } } */


.trusted-partners-section {
  padding: 70px 40px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.trusted-partners-intro {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.trusted-partners-intro h2 {
  font-size: 2.4rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.trusted-partners-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  color: #555;
}

.trusted-partners-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.trusted-logo img {
  max-width: 160px;
  max-height: 90px;
  object-fit: contain;
  /* transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%); */
}

.trusted-logo img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

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

@media (max-width: 480px) {
  .trusted-partners-logos {
    grid-template-columns: 1fr;
  }
}

.holiday-deals-section {
  padding: 70px 40px;
  background: #fdfdfd;
  font-family: 'Segoe UI', sans-serif;
}

.holiday-deals-intro {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.holiday-deals-intro h2 {
  font-size: 2.2rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.holiday-deals-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  color: #555;
}

.holiday-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns per row */
  gap: 30px;
}

.holiday-deal-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.holiday-deal-card:hover {
  transform: translateY(-5px);
}

.deal-image img {
  width: 170px;
  height: 100%;
  object-fit: cover;
}

.deal-content {
  padding: 15px;
}

.deal-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-orange);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.deal-content p {
  font-size: 0.95rem;
  color: #666;
}

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

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

  .holiday-deal-card {
    flex-direction: column;
    text-align: center;
  }

  .deal-image img {
    width: 100%;
    height: auto;
  }
}

.guest-testimonials-section {
  padding: 80px 40px;
  background: url ('assets/images/slider/1.jpg') center/cover no-repeat;
  position: relative;
  /* font-family: 'Segoe UI', sans-serif; */
  color: #fff;
}

.guest-testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* dark overlay for readability */
  z-index: 0;
}

.guest-testimonials-intro {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.guest-testimonials-intro h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
}

.guest-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: var(--star-rating);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.reviewer {
  font-weight: bold;
  font-size: 0.95rem;
  color: #444;
}

.date {
  font-weight: normal;
  font-size: 0.85rem;
  color: #777;
  margin-left: 8px;

}

.indiatripo-section {
  padding: 70px 40px;
  background: url('assets/images/indiatripo-bg.jpg') center/cover no-repeat;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.indiatripo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(55, 65, 80, 0.8);
  /* overlay for readability */
  z-index: 0;
}

.indiatripo-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.indiatripo-intro h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: var(--primary-orange);
}

.indiatripo-intro p {
  font-size: 1.1rem;
  color: #ddd;
}

.indiatripo-accordion {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: var(--primary-orange);
  color: #1a1818;
  ;
  padding: 15px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: var(--primary-orange);
}

.exclusive-offers-section {
  padding: 70px 40px;
  background-color: #ffffff;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  /* ensures text is readable */
}

.exclusive-offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* semi-transparent overlay */
  z-index: 0;
}

.exclusive-offers-intro,
.exclusive-tabs,
.exclusive-content {
  position: relative;
  z-index: 1;
  /* keeps content above overlay */
}

.exclusive-offers-intro {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.exclusive-tabs {
  text-align: center;
  margin-bottom: 30px;
}

.tab-btn {
  background: #807f7f;
  border: none;
  padding: 12px 24px;
  margin: 0 10px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

.tab-btn.active {
  background: var(--primary-orange);
  color: #fff;
}

.tab-btn:hover {
  background: var(--primary-orange);
  color: #fff;
}

.exclusive-content {
  display: none;
}

.exclusive-content.active {
  display: block;
}

.exclusive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.exclusive-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  /* stack image + content vertically */
  justify-content: space-between;
  /* push button to bottom */
  overflow: hidden;
  transition: transform 0.3s ease;
}

.exclusive-card:hover {
  transform: translateY(-5px);
}

.exclusive-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  flex-grow: 1;
  /* allow text area to expand */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  text-align: center;
}

.card-content h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.book-btn {
  align-self: center;
  /* center button horizontally */
  background: var(--primary-hover);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 25px;
  /* ensures button stays at bottom */
}

.book-btn:hover {
  background: var(--primary-orange);
}

.exclusive-offers-intro h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary-orange);
  /* ensure heading is black */
  margin-bottom: 15px;
}

.exclusive-offers-intro p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  /* ensure heading is black */
  margin-bottom: 15px;
}

.tour-packages-section {
  padding: 70px 40px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.tour-packages-intro {
  margin-bottom: 40px;
}

.tour-packages-intro h2 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 15px;
  border-left: 5px solid var(--primary-orange);
  padding-left: 10px;
}

.tour-packages-intro ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.tour-packages-intro ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 15px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.tour-packages-intro ul li a:hover {
  background: var(--primary-orange);
  color: #fff;
  transform: translateY(-3px);
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* Mobile view */
@media (max-width: 992px) {
  .header-right {
    display: none;
    /* hide info items */
  }

  .nav-menu {
    flex-direction: column;
    display: none;
    /* hidden by default */
    background: #333;
    width: 100%;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    padding: 12px;
    border-bottom: 1px solid #444;
    color: #fff;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
  }

  .nav-menu.active {
    display: flex;
    /* show menu when active */
  }
}

.indiatripo-tour-grid {
  display: grid;
  /* max-width: 1200px; */
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px;
}

.indiatripo-tour-card {
  text-align: center;
}

.indiatripo-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.indiatripo-image-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.4s ease;
}

.indiatripo-image-box:hover img {
  transform: scale(1.08);
}

.indiatripo-title {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

.indiatripo-stats {
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  border-radius: 12px;
  font-size: 14px;
  color: #333;
}

.indiatripo-desc {
  margin: 18px 10px;
  font-size: 14px;
  color: #555;
}

.indiatripo-btn {
  display: inline-block;
  padding: 8px 22px;
  background: var(--primary-orange);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.indiatripo-btn:hover {
  background: var(--primary-hover);
}


/* ===================== */
/* RESPONSIVE BREAKPOINT */
/* ===================== */

/* Tablet */
@media (max-width: 1024px) {
  .indiatripo-tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .indiatripo-image-box img {
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .indiatripo-tour-grid {
    grid-template-columns: 1fr;
  }

  .indiatripo-image-box img {
    height: 320px;
  }

  .indiatripo-title {
    font-size: 18px;
  }

  .indiatripo-stats {
    font-size: 12px;
  }
}

h1.text-black.text-left.text-3xl.md\:text-\[25px\].font-bold.leading-\[1\.1em\].mb-4 {
  text-transform: capitalize !important;
  color: hwb(39 45% 3%);
}

/* ============================= */
/* HERITAGE TRAIN PAGE STYLING */
/* ============================= */

.mx-heritage-wrapper * {
  box-sizing: border-box;
}

/* Container */
.mx-heritage-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

/* ============================= */
/* TOP BAR */
/* ============================= */

.mx-heritage-topbar {
  border-top: 4px solid var(--primary-orange);
  background: linear-gradient(to right, #f3e5e1, #f8f4f2);
  padding: 10px 0;
}

.mx-heritage-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mx-heritage-itinerary {
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.mx-heritage-breadcrumb {
  font-size: 14px;
  color: #444;
}

.mx-heritage-breadcrumb a {
  color: var(--heritage-red-light);
  text-decoration: none;
}

.mx-active {
  color: var(--heritage-red-light);
  font-weight: 500;
}

/* ============================= */
/* INTRO SECTION */
/* ============================= */

.mx-heritage-main {
  background: #f2f2f2;
  padding: 20px 0 70px;
  text-align: center;
}

.mx-heritage-title {
  font-size: 44px;
  font-weight: 300;
  margin-bottom: 1%;
  color: #222;
}

.mx-heritage-main p {
  max-width: 1200px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

/* ============================= */
/* HIGHLIGHTS */
/* ============================= */

.mx-heritage-highlights {
  background: #f2f2f2;
  padding: 0px 0 100px;
  text-align: center;
}

.mx-heritage-highlights h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #222;
}

.mx-heritage-highlights ul {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding-left: 22px;
}

.mx-heritage-highlights li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #333;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

  .mx-heritage-title {
    font-size: 34px;
  }

  .mx-heritage-highlights h2 {
    font-size: 28px;
  }

  .mx-heritage-main p,
  .mx-heritage-highlights li {
    font-size: 16px;
  }
}

@media (max-width: 576px) {

  .mx-heritage-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mx-heritage-title {
    font-size: 26px;
  }

  /* .mx-heritage-main {
        padding: 60px 0;
    } */

  .mx-heritage-main p,
  .mx-heritage-highlights li {
    font-size: 15px;
  }
}

/* =============================== */
/* JOURNEY ROUTE SECTION */
/* =============================== */

.mx-journey-wrapper {
  background: #f2f2f2;
  /* padding: 10px 0; */
}

.mx-journey-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ROUTE */
.mx-journey-route {
  text-align: center;
  margin-bottom: 60px;
}

.mx-journey-route h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.mx-route-list {
  font-size: 18px;
  color: #222;
}

.mx-route-list span {
  color: var(--heritage-red);
  margin: 0 10px;
  font-weight: bold;
}

/* TIMING HEADING */
.mx-timing-heading {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 50px;
}

.mx-timing-heading span {
  color: var(--heritage-red);
}

/* GRID */
.mx-timing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CARD */
.mx-timing-card {
  background: #ffffff;
  padding: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
}

.mx-timing-card h3 {
  font-size: 20px;
  margin-bottom: 25px;
}

.mx-check {
  background: var(--heritage-red);
  color: #fff;
  padding: 6px 10px;
  border-radius: 50%;
  font-size: 14px;
  margin-right: 10px;
}

.mx-timing-card p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.mx-icon {
  color: var(--heritage-red);
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .mx-timing-grid {
    grid-template-columns: 1fr;
  }

  .mx-timing-card {
    padding: 30px;
  }

  .mx-route-list {
    font-size: 16px;
    line-height: 1.8;
  }

}




.itinerary-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px;
}

.title {
  text-align: center;
  font-size: 32px;
  /* margin-bottom:px; */
}

.accordion-item {
  background: #f3e6e6;
  margin-bottom: 05px;
  border-radius: 2px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  cursor: pointer;
}

.left {
  display: flex;
  align-items: center;
  gap: 05px;
}

.icon {
  width: 20px;
  height: 20px;
  border: 2px solid #d4a5a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.day {
  color: var(--heritage-red);
  font-weight: bold;
}

h4 {
  margin: 5px 0 0;
  font-size: 18px;
  color: #000000;
}

.arrow {
  font-size: 18px;
}

.accordion-content {
  display: none;
  padding: 20px;
  background: #848383;
}

.accordion-item.active .accordion-content {
  display: block;
}

@media (max-width:768px) {

  .title {
    font-size: 24px;
  }

  .icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  h4 {
    font-size: 16px;
  }

}

.itinerary-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.itinerary-content h4 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.itinerary-content ul {
  padding-left: 20px;
}

.itinerary-content ul li {
  margin-bottom: 8px;
}

@media (max-width: 720px) {
  .travel-duration-row {
    flex-direction: column;
  }
}

#deccanOdysseySection {
  background: #fdf6f0;
  padding: 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

.deccan-container {
  max-width: 1100px;
  margin: auto;
}

.deccan-header {
  text-align: center;
  margin-bottom: 40px;
}

.deccan-title {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 10px;
}

.deccan-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 20px;
}

.deccan-description {
  font-size: 1rem;
  color: #333;
  /* max-width: 800px; */
  margin: auto;
}

.deccan-offers-title {
  font-size: 1.5rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
  text-align: center;
}

.deccan-table {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.deccan-table th,
.deccan-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.deccan-table th {
  background: var(--primary-orange);
  color: #fff;
}

.deccan-btn {
  display: inline-block;
  background: var(--primary-orange);
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.deccan-btn:hover {
  background: #000;
}

/* Responsive */
@media (max-width: 768px) {

  .deccan-table th,
  .deccan-table td {
    padding: 10px;
    font-size: 0.9rem;
  }
}

#reviews {
  display: none;
}

a#whatsappBtn {
  max-width: 45px;
  background-color: green;
  border-radius: 7px;
}

a.booknowc {
  width: -webkit-fill-available;
  border-radius: 7px;
}

i.fa-brands.fa-whatsapp.whatappstyle {
  color: #ffffff;
  font-size: 20px;
}

li:has(a[href="#reviews"]) {
  display: none !important;
}

li:has(a[href="#map"]) {
  display: none !important;
}

div#map {
  display: none;
}

.wpbg {
  background: var(--whatsapp-green);
  color: #fff;
  border: 1px solid var(--whatsapp-green);
  width: 55px;
}

h4.tourTitle.mb-2.text-base.font-bold.text-black.line-clamp-2.hover\:text-green-zomp {
  height: 40px;
  line-height: 1.2;
}

h1.text-black.text-2xl.lg\:text-\[32px\].font-bold.leading-\[1\.1em\].mb-4 {
  text-transform: capitalize;
}

h4.tourTitle.mb-2.text-base.font-bold.text-black.line-clamp-2.hover\:text-green-zomp {
  text-transform: capitalize;
}

.mega-dropdown {
  width: 1000px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-grid li {
  margin: 0;
}

.tour-grid li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all .3s ease;
  font-size: 14px;
  line-height: 1.4;
}

.tour-grid li a:hover {
  background: rgba(244, 158, 11, 0.12);
  color: var(--primary-orange);
  transform: translateX(5px);
}

.tour-grid li a::before {
  content: "✈";
  color: var(--primary-orange);
  margin-right: 8px;
}

/* Mobile */
@media(max-width:768px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }

  .mega-dropdown {

    background: #333333;

  }
}










/* new css */



/* Scoped Variables for the Hero Slider */
.it-hero-wrapper {
  --it-brand-color: #f6611c;
  --it-text-light: #ffffff;
  --it-overlay-dark: rgba(15, 32, 39, 0.5);
  /* Deep luxury tint */
  --it-font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;

  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  font-family: var(--it-font-main);
  background-color: #111;
}

/* Slide Base & Background */
.it-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.it-hero-slide.it-hero-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.it-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease-out;
  /* The Ken Burns Effect */
}

.it-hero-active .it-hero-bg {
  transform: scale(1.08);
}

.it-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--it-overlay-dark);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

/* Content & Animations */
.it-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 1000px;
  color: var(--it-text-light);
  z-index: 3;
}

.it-hero-subtitle {
  display: block;
  font-size: clamp(14px, 2vw, 18px);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: var(--it-brand-color);
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
}

.it-hero-title {
  font-size: clamp(32px, 6vw, 70px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 35px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.5s;
}

.it-hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--it-brand-color);
  color: var(--it-text-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.7s, background-color 0.3s ease;
}

.it-hero-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Triggering Content Animations */
.it-hero-active .it-hero-subtitle,
.it-hero-active .it-hero-title,
.it-hero-active .it-hero-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation Controls */
.it-hero-nav-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.it-hero-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--it-text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.it-hero-arrow:hover {
  background: var(--it-brand-color);
  border-color: var(--it-brand-color);
  transform: scale(1.1);
}

.it-hero-pagination {
  display: flex;
  gap: 8px;
}

.it-hero-bar {
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.it-hero-bar.it-active-bar {
  width: 50px;
  background: var(--it-brand-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .it-hero-nav-container {
    bottom: 20px;
  }

  .it-hero-arrow {
    display: none;
    /* Hide arrows on small screens, rely on auto/bars */
  }
}



/* Scoped Variables */
.it-pkg-section {
  --it-brand: #f6611c;
  --it-brand-dark: #cc4d12;
  --it-text-dark: #1a1a1a;
  --it-text-gray: #555555;
  --it-bg-light: #f9fbfd;
  --it-white: #ffffff;
  --it-star-color: #ffb800;

  background-color: var(--it-bg-light);
  padding: 40px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-pkg-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* --- Intro Section --- */
.it-pkg-intro {
  text-align: center;
  margin-bottom: 30px;
}

.it-pkg-title {
  font-size: clamp(30px, 4vw, 42px);
  color: var(--it-text-dark);
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.it-pkg-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--it-text-gray);
  margin-bottom: 30px;
  text-align: center;
}

.it-pkg-highlight {
  color: var(--it-brand);
  font-weight: 600;
}

.it-pkg-desc-grid {
  /* display: grid; */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto 30px;
  color: var(--it-text-gray);
  line-height: 1.7;
}

/* --- Tour Grid --- */
.it-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* --- Individual Tour Card --- */
.it-pkg-card {
  background: var(--it-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.it-pkg-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.it-pkg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.it-pkg-card:hover .it-pkg-image img {
  transform: scale(1.08);
}

.it-pkg-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* New: Route, Title, and Reviews */
.it-pkg-route {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--it-text-gray);
  margin-bottom: 8px;
}

.it-pkg-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.it-pkg-content h3 a {
  color: var(--it-text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.it-pkg-content h3 a:hover {
  color: var(--it-brand);
}

.it-pkg-reviews {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
  flex-grow: 1;
  /* Pushes buttons to the bottom consistently */
}

.it-stars {
  color: var(--it-star-color);
  letter-spacing: 2px;
}

.it-review-count {
  color: var(--it-text-gray);
  margin-left: 8px;
}

/* --- Card Buttons (Updated Layout) --- */
.it-pkg-actions {
  display: grid;
  grid-template-columns: 50px 1fr;
  /* WhatsApp button is square, Explore gets the rest */
  gap: 12px;
}

.it-pkg-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.it-pkg-btn-whatsapp:hover {
  background: #1EBE5D;
}

.it-pkg-btn-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--it-brand);
  color: var(--it-white);
  padding: 10px 0;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.it-pkg-btn-solid:hover {
  background: #000000;
  color: #ffffff;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .it-pkg-desc-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}





/* --- Same Day Tours Core Style Architecture --- */
.it-sdt-section {
  --it-sdt-primary: #f6611c;
  --it-sdt-green: #008001;
  --it-sdt-green-hover: #006601;
  --it-sdt-dark: #111111;
  --it-sdt-gray: #4a5568;
  --it-sdt-light-gray: #edf2f7;
  --it-sdt-border: #e2e8f0;
  --it-sdt-stars: #ffb100;

  background-color: #f8f5f2;
  padding: 40px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-sdt-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* --- Content Intro Section --- */
.it-sdt-intro-block {
  margin-bottom: 65px;
  text-align: center;
}

.it-sdt-main-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--it-sdt-dark);
  margin-bottom: 15px;
  text-align: center;
}

.it-sdt-main-title span {
  color: var(--it-sdt-primary);
}

.it-sdt-lead-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--it-sdt-gray);
  max-width: 800px;
  margin: 0 auto 35px;
  line-height: 1.5;
  text-align: left;
}

.it-sdt-narrative-columns {
  /* display: grid; */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: center;
  color: var(--it-sdt-gray);
  font-size: 15px;
  line-height: 1.75;
}

.it-sdt-inline-highlight {
  color: var(--it-sdt-primary);
  font-weight: 600;
}

/* --- Packages Horizontal Grid Layout --- */
.it-sdt-packages-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22%, 1fr));
  gap: 20px;
}

.it-sdt-row-card {
  background: #ffffff;
  border: 1px solid var(--it-sdt-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Horizontal alignment layout */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-sdt-row-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
}

/* Card Visual Element Side */
.it-sdt-card-img-zone {
  flex: 0 0 40%;
  /* Exactly 40% row width allocated to photo element */
  min-width: 240px;
  overflow: hidden;
  position: relative;
}

.it-sdt-card-img-zone img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.it-sdt-row-card:hover .it-sdt-card-img-zone img {
  transform: scale(1.04);
}

/* Card Info Details Side */
.it-sdt-card-info-zone {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;

  flex-grow: 1;
}

.it-sdt-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--it-sdt-gray);
  font-size: 13px;
  margin-bottom: 8px;
}

.it-sdt-tour-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.it-sdt-tour-heading a {
  color: var(--it-sdt-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.it-sdt-tour-heading a:hover {
  color: var(--it-sdt-primary);
}

.it-sdt-rating-stars {
  color: var(--it-sdt-stars);
  font-size: 14px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.it-sdt-review-count {
  color: var(--it-sdt-gray);
  font-size: 13px;
  margin-left: 6px;
}

.it-sdt-card-divider {
  height: 1px;
  background-color: var(--it-sdt-light-gray);
  margin-bottom: 20px;
}

/* Dual Interactive Action Layout */
.it-sdt-action-cluster {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.it-sdt-btn-whatsapp {
  flex: 0 0 54px;
  /* Perfectly square dimension button profile container */
  height: 44px;
  background: var(--it-sdt-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51a12.8 12.8 0 0 0-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413Z'/%3E%3C/svg%3E") no-repeat center center;
  background-size: 20px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.it-sdt-btn-whatsapp:hover {
  background-color: var(--it-sdt-green-hover);
  transform: scale(1.03);
}

.it-sdt-btn-explore {
  flex: 1;
  text-align: center;
  background-color: var(--it-sdt-primary);
  color: #ffffff;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.it-sdt-btn-explore:hover {
  background-color: var(--it-sdt-dark);
  transform: translateY(-1px);
}

/* --- Media Queries (Adaptive Smartphone Refinement Grid) --- */
@media (max-width: 768px) {
  .it-sdt-row-card {
    flex-direction: column;
    /* Collapses to standard clean card on standard smaller displays */
  }

  .it-sdt-card-img-zone {
    flex: 0 0 auto;
    width: 100%;
    height: 200px;
  }

  .it-sdt-card-info-zone {
    padding: 20px;
  }

  .it-sdt-tour-heading {
    font-size: 18px;
  }

  .it-sdt-packages-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 30px;
  }

  .it-pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
}


/* --- Tour Card Extras (Location & Reviews) --- */
.it-pkg-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--it-text-gray);
  font-size: 13px;
  margin-bottom: 8px;
}

.it-pkg-location svg {
  color: var(--it-brand);
}

.it-pkg-content h3 {
  font-size: 18px;
  color: var(--it-text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Truncates long titles to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.it-pkg-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.it-pkg-content h3 a:hover {
  color: var(--it-brand);
}

.it-pkg-reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
  flex-grow: 1;
  /* Pushes buttons to the bottom */
}

.it-pkg-stars {
  color: #ffb800;
  /* Rich gold for stars */
  font-size: 16px;
  letter-spacing: 2px;
}

.it-pkg-review-count {
  font-size: 13px;
  color: var(--it-text-gray);
}

/* --- Card Buttons Layout --- */
.it-pkg-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.it-pkg-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #ffffff;
  border: none;
  width: 50px;
  /* Square button for the icon */
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.it-pkg-btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.it-pkg-btn-solid {
  flex-grow: 1;
  /* Makes "Explore More" fill the remaining space */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--it-brand);
  color: var(--it-white);
  height: 44px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.it-pkg-btn-solid:hover {
  background: var(--it-brand-dark);
  transform: translateY(-2px);
}


/* --- PREMIUM ABOUT SECTION --- */
.it-about-section {
  --it-brand: #f6611c;
  --it-text-dark: #222222;
  --it-text-muted: #555555;
  --it-bg-soft: #f8f5f2;

  background-color: var(--it-bg-soft);
  padding: 40px 20px 0px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.it-about-header {
  text-align: center;
  margin-bottom: 10px;
}

.it-about-header h2 {
  font-size: clamp(30px, 4vw, 42px);
  color: var(--it-text-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  text-align: center;
}

.it-about-highlight {
  color: var(--it-brand);
}

.it-about-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--it-text-muted);
  text-align: center;
}

.it-about-content {
  /* display: grid; */
  grid-template-columns: 1fr;
  gap: 30px;
  color: #444;
  line-height: 1.8;
  font-size: 16px;
}

.it-about-column p {
  margin-bottom: 20px;
}

.it-about-emphasis {
  font-weight: 600;
  color: #b08900;
  /* Subtle gold/bronze tone */
  font-size: 17px;
  text-align: center;
  /* padding-left: 15px; */
  /* border-left: 3px solid var(--it-brand); */
  margin-bottom: 0px !important;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .it-about-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* --- PREMIUM DESTINATIONS GRID --- */
.it-dest-section {
  padding: 10px 20px 80px 20px;
  background-color: #f8f5f2;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-dest-container {
  max-width: 1200px;
  margin: 0 auto;
}

.it-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.it-dest-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.it-dest-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.it-dest-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.it-dest-card:hover .it-dest-image-wrap img {
  transform: scale(1.08);
}

/* Dark Gradient Overlay for Text Readability */
.it-dest-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
}

.it-dest-overlay h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.it-dest-stats {
  font-size: 13px;
  opacity: 0.9;
}

.it-dest-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.it-dest-body p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Dual Buttons Layout */
.it-dest-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;

}

.it-dest-btn-outline,
.it-dest-btn-whatsapp {
  text-align: center;
  padding: 10px 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.it-dest-btn-outline {
  border: 1px solid #f6611c;
  color: #f6611c;
  background: transparent;
}

.it-dest-btn-outline:hover {
  background: rgba(246, 97, 28, 0.05);
}

.it-dest-btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: 1px solid #25D366;
}

.it-dest-btn-whatsapp:hover {
  background: #1EBE5D;
  border-color: #1EBE5D;
  transform: translateY(-2px);
}




/* Scoped Variables */
.it-duration-section {
  --it-dur-brand: #f6611c;
  --it-dur-bg: #f4f7f6;
  --it-dur-dark: #29224c;
  --it-dur-text: #555555;
  --it-dur-white: #ffffff;

  background-color: var(--it-dur-bg);
  padding: 80px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-duration-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .it-duration-container {
    grid-template-columns: 350px 1fr;
    /* Left sidebar, right content */
    align-items: start;
  }
}

/* --- Left Dashboard (Sticky) --- */
.it-duration-dashboard {
  position: sticky;
  top: 100px;
  /* Sticks to screen when scrolling */
}

.it-duration-image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.it-duration-image-box img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.it-duration-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(41, 34, 76, 0.9) 10%, rgba(41, 34, 76, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  color: var(--it-dur-white);
}

.it-duration-overlay h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.it-duration-overlay p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Filter Pills */
.it-duration-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.it-filter-btn {
  background: var(--it-dur-white);
  color: var(--it-dur-dark);
  border: 1px solid #e0e5e9;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-grow: 1;
  text-align: center;
}

.it-filter-btn:hover {
  border-color: var(--it-dur-brand);
  color: var(--it-dur-brand);
}

.it-filter-btn.active {
  background: var(--it-dur-brand);
  color: var(--it-dur-white);
  border-color: var(--it-dur-brand);
  box-shadow: 0 4px 15px rgba(246, 97, 28, 0.3);
}

/* --- Right Content Grid --- */
.it-duration-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Mini Cards */
.it-dur-card {
  background: var(--it-dur-white);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid var(--it-dur-brand);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.it-dur-card.hidden {
  display: none;
}

.it-dur-card-header {
  margin-bottom: 15px;
}

.it-dur-badge {
  background: rgba(246, 97, 28, 0.1);
  color: var(--it-dur-brand);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.it-dur-card-body h3 {
  font-size: 18px;
  color: var(--it-dur-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.it-dur-card-body p {
  font-size: 14px;
  color: var(--it-dur-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.it-dur-link {
  color: var(--it-dur-dark);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.it-dur-link:hover {
  color: var(--it-dur-brand);
}




/* Scoped Variables */
.it-immersive-section {
  --it-im-brand: #f6611c;
  --it-im-bg: #ffffff;
  --it-im-text-dark: #1a1a1a;
  --it-im-text-muted: #555555;

  background-color: var(--it-im-bg);
  padding: 60px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  overflow: hidden;
  /* Prevents decorative elements from causing scrollbars */
}

.it-immersive-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .it-immersive-container {
    grid-template-columns: 1fr 1fr;
    /* 50/50 split on desktop */
    gap: 80px;
  }
}

/* --- Typography & Text Area --- */
.it-immersive-subtitle {
  color: var(--it-im-brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.it-immersive-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--it-im-text-dark);
  font-weight: 700;
  margin-bottom: 25px;
}

.it-immersive-divider {
  width: 60px;
  height: 4px;
  background-color: var(--it-im-brand);
  border-radius: 2px;
  margin-bottom: 30px;
}

.it-immersive-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--it-im-text-muted);
  margin-bottom: 20px;
}

/* --- Visuals & Image Framing --- */
.it-immersive-visual {
  position: relative;
}

/* The decorative offset frame */
.it-immersive-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(246, 97, 28, 0.4);
  border-radius: 16px;
  z-index: 0;
  transition: all 0.5s ease;
}

.it-immersive-visual:hover::before {
  top: -10px;
  right: -10px;
}

.it-immersive-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.it-immersive-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.it-immersive-image-wrapper:hover img {
  transform: scale(1.05);
  /* Subtle zoom on hover */
}

/* The overlapping trust badge */
.it-immersive-badge {
  position: absolute;
  bottom: 40px;
  left: -10px;
  /* Pulls it outside the image slightly */
  background: var(--it-im-brand);
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(246, 97, 28, 0.3);
  font-weight: 600;
  font-size: 15px;
  z-index: 2;
}

/* --- Mobile Adjustments --- */
@media (max-width: 991px) {
  .it-immersive-badge {
    left: 20px;
    /* Pull the badge inside the image on small screens */
    bottom: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .it-immersive-visual::before {
    display: none;
    /* Hide the dashed frame on mobile to save space */
  }
}



/* Scoped Variables */
.it-lt-section {
  --it-lt-brand: #f6611c;
  --it-lt-brand-hover: #b68b00;
  --it-lt-text-light: #ffffff;
  --it-lt-text-dark: #1a1a1a;
  --it-lt-text-muted: #666666;

  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Creates a subtle parallax effect */
  padding: 60px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-lt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 39, 0.85);
  /* Deep luxury tint */
  z-index: 1;
}

.it-lt-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Keeps content above the overlay */
}

/* --- Header & Typography --- */
.it-lt-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: var(--it-lt-text-light);
}

.it-lt-accent {
  width: 50px;
  height: 3px;
  background-color: var(--it-lt-brand);
  margin: 0 auto 20px;
}

.it-lt-title {
  font-size: clamp(28px, 4vw, 35px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.it-lt-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
}

.it-lt-desc strong {
  color: var(--it-lt-brand);
  font-weight: 600;
}

/* --- Grid & Cards --- */
.it-lt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.it-lt-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.it-lt-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.it-lt-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.it-lt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.it-lt-card:hover .it-lt-image img {
  transform: scale(1.08);
}

.it-lt-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* Pushes the button to the bottom */
  text-align: center;
}

.it-lt-name {
  font-size: 20px;
  color: var(--it-lt-text-dark);
  font-weight: 700;
  margin-bottom: 15px;
}

.it-lt-text {
  font-size: 14px;
  color: var(--it-lt-text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* --- "Read More" Button --- */
.it-lt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--it-lt-brand);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
  border-top: 1px solid #eeeeee;
  transition: color 0.3s ease;
  margin-top: auto;
}

.it-lt-btn svg {
  transition: transform 0.3s ease;
}

.it-lt-btn:hover {
  color: var(--it-lt-brand-hover);
}

.it-lt-btn:hover svg {
  transform: translateX(5px);
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .it-lt-section {
    padding: 70px 20px;
    background-attachment: scroll;
    /* Disable parallax on mobile for performance */
  }
}



/* Scoped Variables */
.it-partner-section {
  --it-pt-brand: #f6611c;
  --it-pt-bg: #f9fbfd;
  /* Very soft, luxurious off-white */
  --it-pt-text-dark: #1a1a1a;
  --it-pt-text-gray: #555555;
  --it-pt-white: #ffffff;

  background-color: var(--it-pt-bg);
  padding: 40px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-partner-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header & Typography --- */
.it-partner-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.it-partner-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--it-pt-brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.it-partner-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--it-pt-text-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

.it-partner-divider {
  width: 50px;
  height: 3px;
  background-color: var(--it-pt-brand);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.it-partner-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--it-pt-text-gray);
}

/* --- The Logo Stage --- */
.it-partner-stage {
  background: var(--it-pt-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  /* Ultra-soft premium shadow */
}

.it-partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}

/* --- Logo Interactions --- */
.it-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90px;
}

.it-partner-logo img {
  max-width: 100px;
  max-height: 80px;
  object-fit: contain;
  /* Blend mode ensures images with white backgrounds blend into the container */
  mix-blend-mode: multiply;
  /* Professional Grayscale effect */
  /* filter: grayscale(100%) opacity(60%); */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.it-partner-logo:hover img {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.1);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .it-partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .it-partner-section {
    padding: 70px 20px;
  }

  .it-partner-stage {
    padding: 30px 20px;
  }

  .it-partner-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
    gap: 25px;
  }

  /* Make the last logo span across both columns to center it on mobile */
  .it-partner-logo:last-child {
    grid-column: span 2;
  }
}


/* Scoped Variables */
.it-trust-section {
  --it-tr-brand: #f6611c;
  --it-tr-bg: #ffffff;
  /* Pure white for contrast against other sections */
  --it-tr-text-dark: #1a1a1a;
  --it-tr-text-gray: #555555;

  background-color: var(--it-tr-bg);
  padding: 40px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  border-top: 1px solid #f0f0f0;
  /* Subtle separator line */
}

.it-trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* --- Header & Typography --- */
.it-trust-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.it-trust-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--it-tr-brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding: 6px 16px;
  background: rgba(246, 97, 28, 0.1);
  border-radius: 30px;
}

.it-trust-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--it-tr-text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.it-trust-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--it-tr-text-gray);
}

/* --- Logos Grid --- */
.it-trust-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
  padding-top: 20px;
}

.it-trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  transition: transform 0.3s ease;
}

.it-trust-logo img {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
  /* Grayscale filter for a unified, professional look */
  /* filter: grayscale(100%) opacity(70%); */
  transition: all 0.4s ease;
  cursor: pointer;
}

.it-trust-logo:hover img {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.05);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .it-trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 600px) {
  .it-trust-section {
    padding: 60px 20px;
  }

  .it-trust-title {
    font-size: 24px;
  }

  .it-trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .it-trust-logo img {
    max-width: 120px;
  }
}

/* Scoped Variables */
.it-deals-section {
  --it-dl-brand: #f6611c;
  --it-dl-bg: #fdfdfd;
  --it-dl-text-dark: #1a1a1a;
  --it-dl-text-gray: #666666;
  --it-dl-white: #ffffff;

  background-color: var(--it-dl-bg);
  padding: 80px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-deals-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.it-deals-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.it-deals-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--it-dl-text-dark);
  margin-bottom: 15px;
}

.it-deals-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--it-dl-text-gray);
}

/* --- Grid & Cards --- */
.it-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.it-deals-card {
  display: flex;
  align-items: center;
  background: var(--it-dl-white);
  border-radius: 12px;
  border: 1px solid #eeeeee;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
}

.it-deals-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(246, 97, 28, 0.3);
}

/* --- Image Styling --- */
.it-deals-image {
  width: 130px;
  height: 110px;
  flex-shrink: 0;
  overflow: hidden;
}

.it-deals-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.it-deals-card:hover .it-deals-image img {
  transform: scale(1.1);
}

/* --- Content Styling --- */
.it-deals-content {
  padding: 15px 20px;
  flex-grow: 1;
}

.it-deals-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--it-dl-text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.it-deals-card:hover .it-deals-content h3 {
  color: var(--it-dl-brand);
}

.it-deals-price {
  font-size: 13px;
  color: var(--it-dl-text-gray);
}

.it-deals-price strong {
  font-size: 18px;
  color: var(--it-dl-brand);
  margin-left: 4px;
}

.it-deals-price span {
  font-size: 12px;
  color: #999;
}

/* --- Hover Arrow --- */
.it-deals-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  color: var(--it-dl-brand);
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease;
}

.it-deals-card:hover .it-deals-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* --- Mobile Adjustments --- */
@media (max-width: 600px) {
  .it-deals-grid {
    grid-template-columns: 1fr;
  }

  .it-deals-card {
    padding-right: 15px;
    /* Ensure space for arrow */
  }

  .it-deals-image {
    width: 110px;
    height: 100px;
  }

  .it-deals-content {
    padding: 12px 15px;
  }
}



/* Scoped Variables */
.it-why-section {
  --it-wy-brand: #f6611c;
  --it-wy-text-light: #ffffff;
  --it-wy-text-muted: #cccccc;
  --it-wy-border: rgba(255, 255, 255, 0.15);

  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--it-wy-text-light);
}

.it-why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 25, 33, 0.85);
  /* Deep, elegant navy tint */
  z-index: 1;
}

.it-why-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 992px) {
  .it-why-container {
    grid-template-columns: 4fr 6fr;
    /* Left Intro, Right Accordion */
    align-items: start;
    gap: 80px;
  }
}

/* --- Intro Text --- */
.it-why-intro {
  position: sticky;
  top: 100px;
}

.it-why-subtitle {
  color: var(--it-wy-brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.it-why-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.it-why-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--it-wy-text-muted);
}

/* --- Luxury Accordion --- */
.it-why-accordion {
  display: flex;
  flex-direction: column;
  z-index: 2;
  background-color: #353b42;
}

.it-why-item {
  border-bottom: 1px solid var(--it-wy-border);
}

.it-why-item:first-child {
  border-top: 1px solid var(--it-wy-border);
}

/* Header/Button */
.it-why-header {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--it-wy-text-light);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.it-why-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.it-why-num {
  font-size: 16px;
  font-weight: 600;
  color: var(--it-wy-brand);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.it-why-label {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  transition: color 0.3s ease;
}

.it-why-header:hover .it-why-label {
  color: var(--it-wy-brand);
}

.it-why-header:hover .it-why-num {
  opacity: 1;
}

/* The Animated Plus/Minus Icon */
.it-why-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.it-why-icon::before,
.it-why-icon::after {
  content: '';
  position: absolute;
  background-color: var(--it-wy-text-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease, background-color 0.3s ease;
}

.it-why-icon::before {
  width: 100%;
  height: 2px;
}

.it-why-icon::after {
  height: 100%;
  width: 2px;
}

/* Active State Styles */
.it-why-item.active .it-why-label {
  color: var(--it-wy-brand);
}

.it-why-item.active .it-why-num {
  opacity: 1;
}

.it-why-item.active .it-why-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  /* Turns the Plus into a Minus */
  background-color: var(--it-wy-brand);
}

.it-why-item.active .it-why-icon::before {
  background-color: var(--it-wy-brand);
}

/* Accordion Content & Animation */
.it-why-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.it-why-content-inner {
  padding-bottom: 30px;
  padding-left: 45px;
  /* Aligns text with the label, bypassing the number */
}

.it-why-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--it-wy-text-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .it-why-content-inner {
    padding-left: 0;
    /* Resets alignment on small screens */
  }
}


/* Scoped Variables */
.it-exc-section {
  --it-exc-brand: #f6611c;
  --it-exc-bg: #f5f7fa;
  /* Soft luxury gray */
  --it-exc-white: #ffffff;
  --it-exc-text-dark: #1a1a1a;
  --it-exc-text-muted: #666666;

  background-color: var(--it-exc-bg);
  padding: 40px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-exc-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.it-exc-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.it-exc-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--it-exc-text-dark);
  margin-bottom: 15px;
}

.it-exc-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--it-exc-text-muted);
}

/* --- Segmented Toggle --- */
.it-exc-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.it-exc-toggle {
  display: inline-flex;
  background-color: #e4e9f0;
  padding: 6px;
  border-radius: 50px;
  position: relative;
}

.it-exc-tab {
  background: transparent;
  border: none;
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--it-exc-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.it-exc-tab.active {
  background-color: var(--it-exc-brand);
  color: var(--it-exc-white);
  box-shadow: 0 4px 15px rgba(246, 97, 28, 0.3);
}

/* --- Content Panes --- */
.it-exc-pane {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.it-exc-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* --- Grid & Cards --- */
.it-exc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.it-exc-card {
  background: var(--it-exc-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-exc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.it-exc-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  /* Keeps all images uniformly sized */
  overflow: hidden;
}

.it-exc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.it-exc-card:hover .it-exc-image img {
  transform: scale(1.08);
}

.it-exc-content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.it-exc-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--it-exc-text-dark);
  margin-bottom: 20px;
  line-height: 1.4;
  flex-grow: 1;
}

.it-exc-btn {
  background: var(--it-exc-white);
  color: var(--it-exc-brand);
  border: 2px solid var(--it-exc-brand);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
}

.it-exc-btn:hover {
  background: var(--it-exc-brand);
  color: var(--it-exc-white);
}

/* --- Mobile Adjustments --- */
@media (max-width: 600px) {
  .it-exc-section {
    padding: 60px 20px;
  }

  .it-exc-grid {
    grid-template-columns: 1fr;
  }

  .it-exc-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
}



/* Scoped Variables */
.it-testi-section {
  --it-ts-brand: #f6611c;
  --it-ts-star: #ffc107;
  --it-ts-white: #ffffff;
  --it-ts-text-dark: #1a1a1a;
  --it-ts-text-gray: #555555;

  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
  padding: 100px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-testi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 39, 0.85);
  /* Deep luxury tint */
  z-index: 1;
}

.it-testi-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Keeps content above the overlay */
}

/* --- Header --- */
.it-testi-header {
  text-align: center;
  margin-bottom: 60px;
  color: var(--it-ts-white);
}

.it-testi-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--it-ts-brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.it-testi-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 25px;
}

.it-testi-divider {
  width: 60px;
  height: 3px;
  background-color: var(--it-ts-brand);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Grid & Cards --- */
.it-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.it-testi-card {
  background: var(--it-ts-white);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.it-testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

/* Decorative Quote Mark */
.it-testi-quote-mark {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  color: rgba(246, 97, 28, 0.08);
  /* Faint brand color */
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* --- Content Styling --- */
.it-testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.it-testi-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--it-ts-star);
}

.it-testi-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--it-ts-text-gray);
  font-style: italic;
  margin-bottom: 30px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

/* --- Author Block --- */
.it-testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
}

.it-testi-avatar {
  width: 45px;
  height: 45px;
  background-color: rgba(246, 97, 28, 0.1);
  color: var(--it-ts-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.it-testi-meta {
  display: flex;
  flex-direction: column;
}

.it-testi-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--it-ts-text-dark);
  margin: 0 0 4px 0;
}

.it-testi-date {
  font-size: 13px;
  color: #888888;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .it-testi-section {
    padding: 70px 20px;
    background-attachment: scroll;
    /* Disable parallax on mobile for performance */
  }

  .it-testi-card {
    padding: 30px 20px;
  }
}



/* Scoped Variables */
.it-explore-section {
  --it-ex-brand: #f6611c;
  --it-ex-brand-light: rgba(246, 97, 28, 0.08);
  --it-ex-bg: #f9fbfd;
  /* Soft premium background */
  --it-ex-white: #ffffff;
  --it-ex-text-dark: #1a1a1a;
  --it-ex-text-gray: #555555;
  --it-ex-border: #e4e9f0;

  background-color: var(--it-ex-bg);
  padding: 40px 20px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.it-explore-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* Space between the large category blocks */
}

/* --- Category Block --- */
.it-explore-group {
  background: var(--it-ex-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--it-ex-border);
  transition: box-shadow 0.3s ease;
}

.it-explore-group:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* --- Typography --- */
.it-explore-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--it-ex-text-dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.it-explore-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 24px;
  background-color: var(--it-ex-brand);
  border-radius: 4px;
  margin-right: 12px;
}

/* --- The Link Grid (Pills) --- */
.it-explore-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.it-explore-list li {
  margin: 0;
}

.it-explore-list a {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--it-ex-white);
  color: var(--it-ex-text-gray);
  border: 1px solid var(--it-ex-border);
  border-radius: 8px;
  /* Slightly rounded square feels modern */
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.it-explore-list a:hover {
  background-color: var(--it-ex-brand);
  color: var(--it-ex-white);
  border-color: var(--it-ex-brand);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(246, 97, 28, 0.25);
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .it-explore-section {
    padding: 60px 20px;
  }

  .it-explore-group {
    padding: 25px 20px;
  }

  .it-explore-title {
    font-size: 20px;
  }

  .it-explore-list a {
    font-size: 13px;
    padding: 8px 16px;
  }
}



/* Scoped Variables */
.it-footer-section {
  --it-ft-bg: #0f172a;
  /* Deep luxury slate */
  --it-ft-brand: #f6611c;
  --it-ft-text-light: #f8fafc;
  --it-ft-text-muted: #94a3b8;
  --it-ft-border: rgba(255, 255, 255, 0.1);

  background-color: var(--it-ft-bg);
  color: var(--it-ft-text-light);
  font-family: 'Segoe UI', system-ui, sans-serif;
  padding-top: 60px;
}

.it-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Premium Newsletter Bar --- */
.it-footer-newsletter {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid var(--it-ft-border);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.it-footer-nl-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.it-footer-nl-content p {
  color: var(--it-ft-text-muted);
  font-size: 15px;
}

.it-footer-nl-form {
  display: flex;
  flex-grow: 1;
  max-width: 500px;
  gap: 10px;
}

.it-footer-nl-form input {
  flex-grow: 1;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid var(--it-ft-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--it-ft-text-light);
  outline: none;
  font-size: 15px;
}

.it-footer-nl-form input::placeholder {
  color: #64748b;
}

.it-footer-nl-form input:focus {
  border-color: var(--it-ft-brand);
}

.it-footer-nl-form button {
  background: var(--it-ft-brand);
  color: #fff;
  border: none;
  padding: 0 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.it-footer-nl-form button:hover {
  background: #d95316;
}

/* --- Footer Grid --- */
.it-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.it-footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 25px;
}

.it-footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--it-ft-text-light);
  position: relative;
  padding-bottom: 10px;
}

.it-footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--it-ft-brand);
}

.it-footer-desc {
  color: var(--it-ft-text-muted);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Contact List */
.it-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.it-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--it-ft-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.it-footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--it-ft-brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.it-footer-contact a {
  color: var(--it-ft-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.it-footer-contact a:hover {
  color: var(--it-ft-brand);
}

/* Links List */
.it-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.it-footer-links a {
  color: var(--it-ft-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.it-footer-links a:hover {
  color: var(--it-ft-brand);
  transform: translateX(5px);
}

/* Social Buttons */
.it-footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s;
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn.facebook {
  background: #1877F2;
}

.social-btn.instagram {
  background: #CF3881;
}

.social-btn.youtube {
  background: #FF0000;
}

.social-btn.twitter {
  background: #1DA1F2;
}

/* Payments */
.it-footer-payments {
  height: 50px;
  width: auto;
  opacity: 0.9;
}

/* --- Bottom Copyright --- */
.it-footer-bottom {
  border-top: 1px solid var(--it-ft-border);
  padding: 25px 0;
  text-align: center;
  color: var(--it-ft-text-muted);
  font-size: 14px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .it-footer-grid {
    grid-template-columns: 1fr 1fr;
    /* 2 columns on tablet */
  }
}

@media (max-width: 768px) {
  .it-footer-nl-form {
    flex-direction: column;
  }

  .it-footer-nl-form button {
    padding: 12px;
  }
}

@media (max-width: 600px) {
  .it-footer-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
    gap: 50px;
  }

  .it-footer-newsletter {
    padding: 25px 20px;
  }
}


/* --- Premium Navigation Upgrades --- */
.travel-navbar {
  background: #29224c;
  position: relative;
  z-index: 99;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu>li>a {
  color: #fff;
  padding: 20px;
  display: block;
  text-decoration: none;
  font-weight: 600;
}

/* Mega Dropdown - Multi-Column Grid */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  /* Hidden by default */
  z-index: 100;
}

/* Hover Effect to show dropdown */
.mega-parent:hover .mega-dropdown {
  display: inline-table;
  max-width: 600px;
  width: 100%;
}

/* The Grid Layout for your links */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Automatically makes it 4 columns */
  gap: 15px;
  list-style: none;
  padding: 0;
  width: 600px;

}

.tour-grid li a {
  color: #444;
  font-size: 14px;
  display: block;
  padding: 8px 0;
  transition: 0.3s;
}

.tour-grid li a:hover {
  color: #f6611c;
  padding-left: 5px;
}

/* Mobile Fixes for your existing structure */
@media (max-width: 992px) {
  .nav-menu {
    flex-direction: column;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .mega-dropdown {
    position: static;
    width: 100%;
  }

  .tour-grid {
    grid-template-columns: 1fr;
  }
}


/* --- 1. Top Bar Design --- */
.it-topbar {
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
  display: none;
}

.it-topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}

.it-topbar-left a {
  color: #fff;
  text-decoration: none;
}

/* --- 2. Menu Styling Upgrades --- */
.travel-navbar {
  background: #fff;
  border-bottom: 2px solid #f6611c;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.nav-menu>li>a {
  color: #333 !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Mega Dropdown Premium Look */
.mega-dropdown {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0 0 8px 8px;
  padding: 20px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tour-grid li a {
  color: #555 !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  padding: 5px 0 !important;
}

.tour-grid li a:hover {
  color: #f6611c !important;
}

/* --- 3. Mobile View Fixes --- */
@media (max-width: 992px) {
  .nav-menu {
    background: #29224c;
    padding: 20px;
  }

  .nav-menu>li>a {
    color: #fff !important;
  }

  .mega-dropdown {
    background: #3a3360;
    padding: 10px 20px;
  }

  .tour-grid {
    grid-template-columns: 1fr;
  }

  .tour-grid li a {
    color: #fff !important;
  }
}


.expert-btn {
  background: #f6611c;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 5px;
  margin-left: 20px;
  transition: 0.3s;
}

.expert-btn:hover {
  background: #d95316;
}


/* --- Premium Header Right Styling --- */
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
  /* Space between items */
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  transition: transform 0.3s ease;
}

/* Icon Styling */
.info-item i {
  font-size: 24px;
  color: #f6611c;
  /* Your brand orange */
  background: #fff;
  /* Faint orange circle background */
  padding: 12px;
  border-radius: 50%;
}

/* Typography Styling */
.info-item div {
  line-height: 1.2;
}

.info-item strong {
  font-size: 15px;
  color: #fff;
  /* Deep navy text */
  display: block;
}

.info-item div {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Phone Section Styling */
.phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #29224c;
  background: #f8f9fa;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid #eee;
}

.phone i {
  color: #f6611c;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
  .header-right {
    display: none;
    /* Hide trust items on small screens to keep header clean */
  }
}





/* new css ===============================================================*/
.itp-contact-card {

  border-radius: 16px;
  padding: 20px;

  margin-bottom: 25px;
}

.itp-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
}

.itp-contact-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.itp-contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6611c, #ff8a4c);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(244, 158, 11, .35);
}

.itp-contact-content {
  display: flex;
  flex-direction: column;
}

.itp-contact-label {
  font-size: 13px;
  color: #777;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.itp-contact-link {
  color: #222;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}

.itp-contact-link:hover {
  color: #F49E0B;
}

.itp-social-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.itp-social-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all .35s ease;
}

.itp-social-icon:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .18);
}

.itp-facebook {
  background: #1877F2;
}

.itp-instagram {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.itp-youtube {
  background: #FF0000;
}

.itp-whatsapp {
  background: #25D366;
}

.itp-twitter {
  background: #111;
}

.text-black-align {
  text-align: center;
}


/* ==============================================new css after correction=================================================== */
/* Master Section Wrapper to hold everything together */
.section-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 60px auto;
  /* Centers the whole block on your webpage */
  padding: 0 20px;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Heading Layout Styles */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  /* Generates breathing room above the images */
}

/* Main Heading Title */
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

/* Optional Subheading Paragraph */
.section-header p {
  font-size: 1.1rem;
  color: #666666;
  margin: 0 auto;
  max-width: 100%;
  /* Prevents the text line from getting too wide */
  line-height: 1.5;
}

/* --- Core Card Layout Adjustments --- */
.categories-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 50px;
  width: 100%;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
}

.category-card .image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-top-left-radius: 140px 140px;
  border-top-right-radius: 140px 140px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}

.category-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111111;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
}

/* Responsive Setup */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .categories-container {
    flex-wrap: wrap;
  }

  .category-card {
    flex: calc(50% - 30px);
    max-width: 240px;
  }
}

/* ==================================================================================================== */
/* Base Styles for Section */



/* =========================================================Slider css================================= */

/* --- Base Layout --- */
.fm_hero_slider_section {
  position: relative;
  width: 100%;
  min-height: 480px;
  background-color: #000000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: background-image 0.8s ease-in-out;
}

.fm_hero_dark_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.fm_slider_container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.fm_slide {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
  pointer-events: none;
}

.fm_slide.active {
  position: relative;
  top: 0;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* --- Main Grid Wrapper --- */
.fm_hero_wrapper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 100px 80px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

/* --- Left Text Column --- */
.fm_hero_text_column {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.fm_hero_cursive_sub {
  font-family: 'Great Vibes', cursive;
  color: #3e9e73;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.fm_hero_main_title {
  font-size: clamp(32px, 3.0vw, 64px);
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.fm_hero_description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 560px;
}

.fm_hero_cta_btn {
  display: inline-flex;
  align-items: center;
  background-color: #3e9e73;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(62, 158, 115, 0.3);
}

.fm_hero_cta_btn:hover {
  background-color: #317d5b;
  transform: translateY(-2px);
}

/* --- Right Image Graphic Column --- */
.fm_hero_graphic_column {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Responsive Custom Polygon with Curved Corners for Desktop */
.fm_clipped_shape_container {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  -webkit-clip-path: path("M 144,0 C 168,0 192,4 211,9 L 408,58 C 432,64 451,82 456,106 L 478,312 C 483,336 474,360 456,374 L 336,470 C 317,485 293,485 274,475 L 58,408 C 34,401 14,382 9,358 L 0,176 C -5,152 4,128 23,113 L 106,14 C 117,5 130,0 144,0 Z");
  clip-path: path("M 144,0 C 168,0 192,4 211,9 L 408,58 C 432,64 451,82 456,106 L 478,312 C 483,336 474,360 456,374 L 336,470 C 317,485 293,485 274,475 L 58,408 C 34,401 14,382 9,358 L 0,176 C -5,152 4,128 23,113 L 106,14 C 117,5 130,0 144,0 Z");
}

.fm_main_graphic_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlapping Circle Badge */
.fm_circular_overlap_badge {
  position: absolute;
  bottom: -20px;
  left: 10px;
  width: 190px;
  height: 190px;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.fm_circle_inner_img_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

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

.fm_mini_play_trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background-color: #3e9e73;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.fm_mini_play_trigger svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

/* --- Floating Side Arrows --- */
.fm_slider_nav_controls {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.fm_nav_arrow_btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fm_nav_arrow_btn:hover {
  background-color: #3e9e73;
  color: #ffffff;
}

.fm_nav_arrow_btn svg {
  width: 22px;
  height: 22px;
}


/* ==========================================================================
   PERFECT MOBILE & TABLET RESPONSIVE FIXES
   ========================================================================== */

@media (max-width: 992px) {

  /* Stack layout vertically, add padding top for mobile space header */
  .fm_hero_wrapper {
    grid-template-columns: 1fr;
    padding: 60px 24px 100px 24px;
    gap: 40px;
  }

  .fm_hero_text_column {
    text-align: center;
  }

  .fm_hero_description {
    margin: 0 auto 30px auto;
  }

  .fm_hero_graphic_column {
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 40px;
    /* Space for the absolute overlap badge */
  }

  /* CRITICAL FIX: Overriding clip-path on mobile.
    Instead of standard rigid paths that break when compressed on smaller viewports,
    we use a beautiful fluid, organic border-radius shape.
  */
  .fm_clipped_shape_container {
    max-width: 340px;
    width: 100%;
    aspect-ratio: 1 / 1;
    clip-path: none;
    -webkit-clip-path: none;
    border-radius: 65% 35% 45% 55% / 40% 60% 40% 60%;
    /* Recreates the organic shape seamlessly */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  /* Make the overlapping circular image smaller for phone displays */
  .fm_circular_overlap_badge {
    width: 130px;
    height: 130px;
    bottom: -15px;
    left: calc(50% - 150px);
    /* Offsets beautifully relative to center */
  }

  .fm_mini_play_trigger {
    width: 36px;
    height: 36px;
  }

  .fm_mini_play_trigger svg {
    width: 16px;
    height: 16px;
  }

  /* Move arrows to bottom center for premium mobile slider behavior */
  .fm_slider_nav_controls {
    position: absolute;
    right: auto;
    left: 50%;
    top: auto;
    bottom: 25px;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 20px;
  }

  .fm_nav_arrow_btn {
    width: 46px;
    height: 46px;
  }
  /* .fm_hero_graphic_column {
    display: none;
  } */
}

@media (max-width: 480px) {
  .fm_hero_cursive_sub {
    font-size: 20px;
  }

  .fm_hero_main_title {
    font-size: 23px;
  }

  .fm_clipped_shape_container {
    max-width: 280px;
  }

  .fm_circular_overlap_badge {
    width: 110px;
    height: 110px;
    left: calc(50% - 120px);
  }

  /* .fm_hero_graphic_column {
    display: none;
  } */

  /* .fm_hero_slider_section {
    height: 500px !important;
  } */
}

/* =========================================holiday ======================================== */
.tds-section {
  background: #0f172a;
  padding: 80px 0;
  font-family: Arial, sans-serif;
}

.tds-container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
}

.tds-heading-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.tds-title {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.tds-subtitle {
  color: #fff;
  font-size: 16px;
  margin-top: 18px;
  opacity: .9;
}

.tds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tds-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 130px;
  transition: .35s ease;
  cursor: pointer;
}

.tds-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

.tds-image {
  width: 50%;
  height: 130px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.tds-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tds-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
}

.tds-image h3 {

  z-index: 2;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  line-height: 1;
  margin: 0;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .4);

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);



}

.tds-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
}

.tds-price-box {
  flex: 1;
  padding: 0 20px;
}

.tds-from {
  display: block;
  color: #555;
  font-size: 15px;
}

.tds-price {
  color: #d44b35;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  margin: 5px 0;
}

.tds-person {
  color: #666;
  font-size: 15px;
}

.tds-arrow {
  width: 70px;
  text-align: center;
  font-size: 60px;
  color: #0f172a;
  font-weight: 300;
}

.tds-card:hover .tds-arrow {
  transform: translateX(6px);
  transition: .3s;
}

@media(max-width:1024px) {
  .tds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tds-title {
    font-size: 50px;
  }
}

@media(max-width:768px) {

  .tds-grid {
    grid-template-columns: 1fr;
  }

  .tds-title {
    font-size: 36px;
  }

  .tds-subtitle {
    font-size: 18px;
  }

  .tds-image h3 {
    font-size: 18px;
  }

  .tds-price {
    font-size: 30px;
  }
}

/* ======================================whye choose us+++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.wbu-section {
  padding: 40px;
  font-family: Arial, sans-serif;
}

.wbu-container {
  background: #0f172a;
  border-radius: 30px;
  padding: 60px 70px;
  overflow: hidden;
}

.wbu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.wbu-title-wrap h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.wbu-illustration img {
  width: 300px !important;
  max-width: 100%;
  margin-top: -20px;
}

.wbu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}

.wbu-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.wbu-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
}

.wbu-item h3 {
  color: #fff;
  margin: 0 0 3px;
  font-size: 18px;
  font-weight: 700;
}

.wbu-item p {
  color: #e8f2ff;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

@media(max-width:1024px) {

  .wbu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wbu-title-wrap h2 {
    font-size: 38px;
  }

  .wbu-illustration img {
    width: 250px;
  }
}

@media(max-width:768px) {

  .wbu-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .wbu-grid {
    grid-template-columns: 1fr;
  }

  .wbu-title-wrap h2 {
    font-size: 24px;
  }

  .wbu-illustration img {
    margin-top: 20px;
  }

  .wbu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wbu-container {
    padding: 40px 25px;
  }

  .wbu-item h3 {
    font-size: 18px;
    text-align: center;
  }

  .wbu-item p {
    font-size: 15px;
    text-align: center;
  }
}

/* ===================================Trusted ========================================== */
.it-trust-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.it-trust-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: itScroll 20s linear infinite;
}

.it-trust-logo {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.it-trust-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: .3s;
}

.it-trust-logo:hover img {
  transform: scale(1.05);
}

@keyframes itScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.wbu-icon i {
  color: #0f172a;
}

.tour-sidebar {
  padding: 20px;
}



/* Button Wrapper for alignment */
.vm-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Base Button Styling */
.vm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 36px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  color: #3cb071;
  /* India Tripo Green */
  background-color: transparent;
  border: 2px solid #3cb071;
  border-radius: 50px;
  /* Pill shape */
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Arrow Styling */
.vm-arrow {
  margin-left: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.vm-btn:hover {
  background-color: #3cb071;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(60, 176, 113, 0.3);
  transform: translateY(-3px);
  /* Gentle lift effect */
}

/* Push arrow to the right on hover */
.vm-btn:hover .vm-arrow {
  transform: translateX(5px);
}

/* Active/Click Effect */
.vm-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(60, 176, 113, 0.2);
}

section.privacy-terms{
  padding-bottom: 50px;
}

section.privacy-terms .pt{
  padding: 40px 30px;
}

.about-subtitle {
  max-height: 97px;
  overflow: hidden;
  position: relative;
  transition: max-height 1.2s ease-in-out;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
}

.about-subtitle.expanded {
  max-height: 2000px;
}

.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
 
  color: #000000;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #d1d5db;
}

.read-more-btn:hover {
  background: #f6611c;
  transform: translateY(-2px);
  color: white;
}
.hi5-itinerary-wrap{
  background:#f3f3f3;
  padding:28px;
  border-radius:18px;
  width:100%;
}

.hi5-itinerary-title{
  font-size:22px;
  font-weight:700;
  color:#222;
  margin:0 0 20px;
  line-height:1.2;
}

.hi5-itinerary-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.hi5-tour-card{
  display:flex;
  align-items:center;
  gap:18px;
  background:#ffffff;
  border-radius:16px;
  padding:12px 18px;
  text-decoration:none;
  min-height:98px;
  transition:.3s ease;
  box-shadow:0 0 0 1px rgba(0,0,0,.03);
}

.hi5-tour-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.hi5-tour-thumb{
  width:95px;
  min-width:95px;
  height:75px;
  overflow:hidden;
  border-radius:6px;
}

.hi5-tour-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hi5-tour-content{
  color:#3b3b3b;
  font-size:17px;
  line-height:1.35;
  font-weight:400;
}

/* Tablet */

@media (max-width:1024px){

  .hi5-itinerary-grid{
      grid-template-columns:repeat(2,1fr);
  }

}

/* Mobile */

@media (max-width:767px){

  .hi5-itinerary-wrap{
      padding:18px;
  }

  .hi5-itinerary-grid{
      grid-template-columns:1fr;
      gap:15px;
  }

  .hi5-tour-card{
      padding:12px;
      min-height:auto;
  }

  .hi5-tour-thumb{
      width:85px;
      min-width:85px;
      height:65px;
  }

  .hi5-tour-content{
      font-size:15px;
  }

  .hi5-itinerary-title{
      font-size:20px;
  }

}



/* ==========================================================================
   Premium Travel Layout - Language Selector Custom System (White Trigger Edition)
   ========================================================================== */

/* Outer structure wrapper anchoring */
.it-lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

/* Elegant main button design rules - Forced White Variant */
.it-lang-dropdown-trigger {
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 10px;
  border-radius: 20px; /* Modern capsule shape */
  
  /* White Color Overrides */
  border: 1px solid #ffffff; 
  color: #ffffff !important; 
  
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Force icons inside trigger to be white */
.it-lang-dropdown-trigger i {
  color: #ffffff !important;
}

/* Subtle accent focus states on hover */
.it-lang-dropdown-trigger:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Small dropdown downward icon */
.it-dropdown-arrow {
  display: inline-block;
  font-size: 10px;
  color: #ffffff !important;
  transition: transform 0.25s ease;
}

/* Interactive dynamic arrow inversion */
.it-lang-dropdown-wrapper.active .it-dropdown-arrow {
  transform: rotate(180deg);
}

/* Clean UI Dropdown Menu Drawer Panel (Stays light for perfect legibility) */
.it-lang-dropdown-menu {
  position: absolute;
  top: 135%;
  right: 0;
  background-color: #ffffff;
  color: #1f2937; /* Dark charcoal text color */
  width: 280px; /* Perfectly scaled width map to prevent item overflow text wrapping */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 16px;
  z-index: 99999; /* Higher layer index configuration to overlay main header controls */
  display: none;
  
  /* Smooth transform state transitions */
  opacity: 0;
  transform: translateY(-12px) scale(0.95);
  transform-origin: top right;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active Class trigger matching Javascript layout controls */
.it-lang-dropdown-wrapper.active .it-lang-dropdown-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Micro-Header Content Styling Rules */
.it-lang-dropdown-section h4 {
  font-size: 11px;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.75px;
  margin: 0 0 12px 4px;
  font-weight: 700;
}

/* Automated Clean Multi-column Grid */
.it-lang-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* Clean 2 column layout map */
  gap: 4px;
}

/* Micro-Buttons item selections layout */
.it-lang-dropdown-section ul li button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  font-family: inherit;
  border-radius: 6px;
  transition: all 0.15s ease;
  display: block;
}

/* Interactive element choice hovering response states */
.it-lang-dropdown-section ul li button:hover {
  background-color: #f3f4f6;
  color: #111111;
}

/* Highlight style mapping for chosen active selections */
.it-lang-dropdown-section ul li button.active {
  background-color: #eff6ff; /* Soft sky blue splash background accent */
  color: #2563eb; /* Deep primary blue branding text tone color */
  font-weight: 600;
}

/* Golden Triangel Tour grid */
.wpbg2 {
  background: var(--whatsapp-green);
  color: #fff;
  border: 1px solid var(--whatsapp-green);
  width: 48%;
  border-radius: 0px;
  font-size: 14px;
}
.ps-tour-section{
  width:100%;
  /* padding:40px 0; */
  background:#fff;
}

.ps-tour-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.ps-tour-card{
  border-radius: 7px !important;
  position:relative;
  background:#fff;
  border-radius:4px;
  overflow:hidden;
  border:1px solid #e5e5e5;
  box-shadow:0 2px 8px rgba(0,0,0,.12);
  transition:.35s;
}

.ps-tour-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.ps-tour-image{
  height:190px;
  overflow:hidden;
}

.ps-tour-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.5s;
}

.ps-tour-card:hover img{
  transform:scale(1.08);
}

/* Discount */

.ps-tour-discount{
  position:absolute;
  left:12px;
  top:-2px;
  width:40px;
  height:66px;
  background:#ff9d00;
  color:#fff;
  text-align:center;
  font-weight:700;
  z-index:10;
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:1;
}

.ps-tour-discount::after{
  content:"";
  position:absolute;
  bottom:-14px;
  left:0;
  border-left:20px solid transparent;
  border-right:20px solid transparent;
  border-top:14px solid #ff9d00;
}

.ps-tour-discount strong{
  font-size:18px;
}

.ps-tour-discount small{
  font-size:11px;
  letter-spacing:.5px;
}

.ps-tour-discount.orange,
.ps-tour-discount.orange::after{
  background:#ff4b11;
}

.ps-tour-discount.orange::after{
  border-top-color:#ff4b11;
}

/* Content */

.ps-tour-content{
  padding:18px;
}

.ps-tour-content h3{
  font-size:16px;
  margin:0 0 12px;
  /* text-transform:uppercase; */
  font-weight:700;
  color:#222;
  height: 45px;

}

/* .ps-tour-content h3 {
  font-size: 16px;
  margin: 0 0 12px;
  
  font-weight: 700;
  color: #222;


  line-height: 22px;         
  height: 44px;              
  

  display: -webkit-box;
  -webkit-line-clamp: 2;     
  -webkit-box-orient: vertical;
  overflow: hidden;          
} */

.ps-tour-content p{
  color:#666;
  font-size:15px;
  line-height:1.8;
  margin-bottom:22px;
  min-height:90px;
}

.ps-tour-buttons{
  display:flex;
  justify-content:space-between;
  border-top:1px solid #ececec;
  padding-top:15px;
}

.ps-btn-book,
.ps-btn-read{
  width:47%;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  transition:.3s;
}

.ps-btn-book{
  background:#008001;
  color:#fff;
}
.ps-btn-book:hover{
 
 
  transform:translateY(-2px) scale(1.03);
}
/* 
.ps-btn-book:hover{
  background:#f6611c;
} */

.ps-btn-read{
  border:1px solid #222;
  color:#222;
  background:#fff;
}

.ps-btn-read:hover{
  background:#000;
  color:#fff;
}

/* Responsive */

@media(max-width:768px){

.ps-tour-grid{
grid-template-columns:1fr;
}

.ps-tour-content h3{
font-size:18px;
}

}






.ps-review-line{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.ps-review-stars{
  color:#F4B400;
  font-size:18px;
  letter-spacing:2px;
  line-height:1;
}

.ps-review-count{
  color:#666;
  font-size:15px;
  font-weight:500;
}
/* end golde triange tour grid */


/* gallery */
/* --- Unique Slider Gallery Section Styles --- */

.xgal-gallery-wrapper {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f4f6f9;
  padding: 0rem 1rem;
}

.xgal-gallery-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.xgal-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.xgal-gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.xgal-gallery-title {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.xgal-gallery-subtitle {
  color: #666;
  font-size: 1.1rem;
}

/* Responsive Grid Engine */
.xgal-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images in one row */
  gap: 1.5rem;
}

/* Cards */
.xgal-item-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
  aspect-ratio: 4 / 3;
}

.xgal-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.xgal-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.xgal-item-card:hover .xgal-card-img {
  transform: scale(1.05);
}

/* Hover Overlays */
.xgal-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.xgal-item-card:hover .xgal-card-overlay {
  opacity: 1;
}

.xgal-overlay-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.xgal-overlay-desc {
  color: #ddd;
  font-size: 0.85rem;
}

/* Slider Lightbox Container */
.xgal-lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 99999; /* Sits over headers/footers */
  transition: opacity 0.3s ease;
}

.xgal-lightbox-modal.xgal-active {
  opacity: 1;
  pointer-events: all;
}

.xgal-lightbox-content-box {
  max-width: 80%;
  max-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.xgal-lightbox-content {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  object-fit: contain;
}

.xgal-lightbox-modal.xgal-active .xgal-lightbox-content {
  transform: scale(1);
}

/* Interactive Navigation Controls */
.xgal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100001;
}

.xgal-close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.xgal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background: rgba(255, 255, 255, 0.08); */
  color: #fff;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  font-size: 2.2rem;
  padding: 1.25rem 1rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s, opacity 0.2s, scale 0.2s;
  border-radius: 8px;
  opacity: 0.7;
  z-index: 100000;
}

.xgal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  scale: 1.05;
}

.xgal-prev-btn { left: 2rem; }
.xgal-next-btn { right: 2rem; }

/* Mobile Optimization for Arrows */
@media (max-width: 768px) {
  .xgal-lightbox-content-box {
      max-width: 92%;
  }
  .xgal-nav-btn {
      font-size: 1.6rem;
      padding: 0.8rem 0.6rem;
      background: rgba(0, 0, 0, 0.5); /* Higher visibility backdrop on mobile screen edges */
  }
  .xgal-prev-btn { left: 0.5rem; }
  .xgal-next-btn { right: 0.5rem; }
  .xgal-close-btn { top: 1rem; right: 1rem; font-size: 2.5rem; }
}


@media (max-width: 768px) {
  .xgal-grid-layout {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 10px !important;
  }

  .xgal-item-card {
      width: 100% !important;
      height: 80px;
  }

  .xgal-card-img {
      width: 100%;
      height: auto;
      display: block;
  }
}
/* end gallery */




/* categor Page content  */
.pmt-about-wrapper {
  width: 100%;
  max-width: 900px; /* Constrained neatly to align with your map layout width */
  margin: 2rem auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pmt-about-header {
  text-align: center; /* Enforces text center alignment on all content */
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers block level elements inside the container */
}

.pmt-about-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f6611c;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.pmt-about-header h2 {
  font-size: 2.4rem;
  color: #1e293b;
  margin: 0 0 2rem 0;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.pmt-about-header h2 span {
  position: relative;
  display: inline-block;
}

/* Accent line decoration perfectly centered under title */
.pmt-about-header h2 span::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%); /* Locks the absolute indicator precisely to absolute center */
  width: 60px;
  height: 4px;
  background-color: #fd8035;
  border-radius: 2px;
}

.pmt-about-text {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin: 0 auto 1.5rem auto;
  font-weight: 400;
  text-align: center;
  max-width: 850px; /* Gives the paragraphs a comfortable reading boundary */
}

/* Collapse functionality wrappers */
.pmt-about-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* State when expanded via JS */
.pmt-about-collapse.pmt-is-open {
  max-height: 1200px; /* Increased threshold to ensure clean paragraph deployment */
  opacity: 1;
  visibility: visible;
  margin-bottom: 1.5rem;
}

/* Centered Read More CTA */
.pmt-read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: #f6611c;
  border: 2px solid #f6611c;
  padding: 0.65rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin: 0.5rem auto 0 auto;
}

.pmt-read-more-btn i {
  font-size: 0.8rem;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.pmt-read-more-btn:hover {
  background-color: #f6611c;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(246, 97, 28, 0.2);
}

/* Rotates the small arrow icon upwards when open */
.pmt-read-more-btn.pmt-active-btn i {
  transform: rotate(180deg);
}

/* Mobile responsive scaling overrides */
@media (max-width: 600px) {
  .pmt-about-header h2 {
      font-size: 1.8rem;
  }
  .pmt-about-text {
      font-size: 0.98rem;
      line-height: 1.6;
  }
}
/* categor page content end */



/* landing page */
/* Container section background and base styles */
.gt-tour-section {
  background-color: #FAF6F0; /* Soft cream background from the layout */
  padding: 80px 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.gt-tour-container {
  max-width: 1140px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

/* Left Typography Column */
.gt-tour-content {
  display: flex;
  flex-direction: column;
}

.gt-tour-subheading {
  color: #B25E29; /* Earthy orange accent tone */
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.gt-tour-title {
  color: #0B1426; /* Deep dark blue/navy */
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.gt-tour-description {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 490px;
}

/* Button Component */
.gt-tour-btn {
  background-color: #0B1426;
  color: #FFFFFF;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s ease;
}

.gt-tour-btn:hover {
  opacity: 0.9;
}

.gt-tour-arrow {
  font-size: 16px;
}

/* Divider Line */
.gt-tour-divider {
  border: 0;
  border-top: 1px solid #E2E8F0;
  margin: 40px 0 32px 0;
  width: 100%;
}

/* Stats Row layout */
.gt-tour-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gt-tour-stat-card {
  display: flex;
  flex-direction: column;
}

.gt-tour-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #0B1426;
  margin-bottom: 4px;
}

.gt-tour-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #718096;
}

/* Right Side Image Composition Layout */
.gt-tour-media {
  position: relative;
  padding-bottom: 40px;
  padding-left: 40px;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}

.gt-tour-main-img-box {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  width: 100%;
  aspect-ratio: 0.95 / 1;
}

.gt-tour-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlapping Thumbnail Frame */
.gt-tour-thumb-img-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #FAF6F0; /* Blends seamlessly with section background */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.gt-tour-img-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Responsive Adaptations --- */
@media (max-width: 992px) {
  .gt-tour-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .gt-tour-content {
    align-items: center;
    text-align: center;
  }
  
  .gt-tour-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .gt-tour-btn {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .gt-tour-section {
    padding: 48px 16px;
  }
  
  .gt-tour-title {
    font-size: 36px;
  }
  
  .gt-tour-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .gt-tour-media {
    padding-left: 20px;
    padding-bottom: 20px;
  }
  
  .gt-tour-thumb-img-box {
    border-width: 4px;
  }
}


.backgroundcolor{
  background-color: #f8f5f2;
  padding-top: 30px;
    padding-bottom: 30px;
}


/* add new section for a landing page */
.tp-hero-section {
  background-color: #ffffff;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.tp-hero-container {
  max-width: 1140px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.tp-hero-content {
  display: flex;
  flex-direction: column;
}
.tp-hero-subheading {
  color: #B25E29;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.tp-hero-title {
  color: #0B1426;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}
.tp-hero-description {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 490px;
}
.tp-hero-btn {
  background-color: #0B1426;
  color: #FFFFFF;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s ease;
}
.tp-hero-btn:hover { opacity: 0.9; }
.tp-hero-divider {
  border: 0;
  border-top: 1px solid #E2E8F0;
  margin: 0px 0 15px 0;
  width: 100%;
}
.tp-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tp-hero-stat-card { display: flex; flex-direction: column; }
.tp-hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #0B1426;
  margin-bottom: 4px;
}
.tp-hero-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #718096;
}
.tp-hero-media {
  position: relative;
  padding-bottom: 40px;
  padding-left: 40px;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}
.tp-hero-main-img-box {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  width: 100%;
  aspect-ratio: 0.95 / 1;
}
.tp-hero-img-main { width: 100%; height: 100%; object-fit: cover; display: block; }
.tp-hero-thumb-img-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #FAF6F0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.tp-hero-img-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ==========================================================================
   SECTION 2: FEATURES COMPONENT (.tp-features-*)
   ========================================================================== */
.tp-features-section {
  background-color: #FFFFFF;
  padding: 100px 24px;
}
.tp-features-container {
  max-width: 1140px;
  margin: 0 auto;
}
.tp-features-header {
  text-align: center;
  margin-bottom: 60px;
}
.tp-features-tag {
  color: #B25E29;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.tp-features-heading {
  color: #0B1426;
  font-size: 38px;
  font-weight: 800;
  margin: 8px 0 0 0;
}
.tp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tp-features-card {
  background-color: #FAF6F0;
  padding: 40px 32px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.tp-features-card:hover { transform: translateY(-5px); }
.tp-features-icon {
  font-size: 32px;
  margin-bottom: 20px;
}
.tp-features-card-title {
  color: #0B1426;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.tp-features-card-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   SECTION 4: TESTIMONIALS COMPONENT (.tp-reviews-*)
   ========================================================================== */
.tp-reviews-section {
  background-color: #FFFFFF;
  padding: 40px 24px;
}
.tp-reviews-container {
  max-width: 1140px;
  margin: 0 auto;
}
.tp-reviews-header {
  text-align: center;
  margin-bottom: 20px;
}
.tp-reviews-tag {
  color: #B25E29;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.tp-reviews-heading {
  color: #0B1426;
  font-size: 38px;
  font-weight: 800;
  margin: 8px 0 0 0;
}
.tp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 32px;
}
.tp-reviews-card {
  background-color: #FAF6F0;
  padding: 40px;
  border-radius: 20px;
}
.tp-reviews-stars {
  color: #B25E29;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.tp-reviews-quote {
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 24px 0;
  color: #2D3748;
}
.tp-reviews-author {
  display: flex;
  flex-direction: column;
}
.tp-reviews-author strong { color: #0B1426; font-size: 15px; }
.tp-reviews-author span { font-size: 13px; color: #718096; margin-top: 2px; }

/* ==========================================================================
   SECTION 5: CTA BANNER COMPONENT (.tp-cta-*)
   ========================================================================== */
/* Core Styling for Lead Intake Form Block */

.gtt-form-section {
  padding: 30px 24px;
  background-color: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.gtt-form-container {
  max-width: 1450px;
  margin: 0 auto;
}

/* Master Form Flexbox Container setup */
.gtt-form-card {
  background-color: #0f172a;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 170px;
  padding: 60px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  border-top: 5px solid #f99b6c; /* Signature Accent Line */
  position: relative;
  overflow: hidden;
}

/* Background gradient orb decoration */
.gtt-form-card::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 155, 108, 0.1) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

/* Content Left side breakdown layout */
.gtt-form-info-side {
  flex: 1;
  color: #ffffff;
}

.gtt-form-mini-tag {
  color: #f99b6c;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: inline-block;
  margin-bottom: 16px;
}

.gtt-form-heading {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gtt-form-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 35px;
  font-weight: 300;
}

.gtt-form-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gtt-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #f8fafc;
  font-size: 0.95rem;
}

.gtt-benefit-item i {
  color: #f99b6c;
  font-size: 1.1rem;
}

/* Interactive Input Form Box styling elements */
.gtt-form-block {
  flex: 1.2;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.gtt-form-inner-title {
  font-size: 1.4rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.gtt-form-input-group {
  flex: 1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.gtt-form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Structured container wrapping prefix icons inside inputs */
.gtt-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.gtt-input-wrapper i {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 1rem;
}

.gtt-form-input, .gtt-form-select {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #0f172a;
  font-family: inherit;
  background-color: #f8fafc;
  transition: all 0.3s ease;
  box-sizing: border-box;
  appearance: none; /* Uniform Select dropdowns rendering */
}

.gtt-form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.gtt-form-input:focus, .gtt-form-select:focus {
  outline: none;
  border-color: #f99b6c;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(249, 155, 108, 0.15);
}

/* Form Submit Button matching your core theme color code */
.gtt-form-submit-btn {
  width: 100%;
  background-color: #f86a23;
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(249, 155, 108, 0.35);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.gtt-form-submit-btn:hover {

  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 155, 108, 0.5);
}

/* Fluid Layout Adjustments for Tablet and Mobile devices */
@media (max-width: 992px) {
  .gtt-form-card {
      flex-direction: column;
      padding: 40px 24px;
      gap: 40px;
  }
  .gtt-form-heading {
      font-size: 2.1rem;
  }
  .gtt-form-block {
      padding: 24px 16px;
  }
}

@media (max-width: 576px) {
  .gtt-form-row {
      flex-direction: column;
      gap: 0;
  }
  .gtt-form-section {
      padding: 60px 12px;
  }
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet Optimization (992px) */
@media (max-width: 992px) {
  .tp-hero-container,
  .tp-cta-box {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .tp-features-grid,
  .tp-packages-grid,
  .tp-reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tp-hero-content,
  .tp-features-header,
  .tp-packages-header,
  .tp-reviews-header {
    align-items: center;
    text-align: center;
  }
  .tp-hero-description { margin-left: auto; margin-right: auto;text-align: justify; }
  .tp-hero-btn { margin: 0 auto; }
}

/* Mobile Devices (600px) */
@media (max-width: 600px) {
  .tp-hero-section,
  .tp-features-section,
  .tp-packages-section,
  .tp-reviews-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .tp-cta-section { padding-bottom: 60px; }
  .tp-cta-box { padding: 32px 20px; }
  
  .tp-hero-title { font-size: 25px;
  font-weight: 700; }
  .tp-features-heading,
  .tp-packages-heading,
  .tp-reviews-heading { font-size: 28px; }
  .tp-cta-heading { font-size: 26px; }

  .tp-hero-stats { grid-template-columns: 1fr; gap: 24px; }
  .tp-hero-media { padding-left: 20px; padding-bottom: 20px; }
  .tp-hero-thumb-img-box { border-width: 4px; }
}




/* landing page golden Triangel tour ================================================================ */
/* Hero Section Wrapper */
/* Unique CSS Scope for Golden Triangle Tour Hero */
.bannerbackground{background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.85)), url('https://indiatripo.com/assets/images/tour-grid/golden-triangle-tour-with-kashmir-3.jpg');}
.gtt-hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  padding: 80px 24px;
  box-sizing: border-box;
  overflow: hidden;
}

.gtt-hero-inner {
  max-width: 850px;
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

/* Premium Badge styling */
.gtt-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gtt-badge-icon {
  color: #dfb15b; /* Elegant rich gold */
  font-size: 0.9rem;
}

.gtt-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f8fafc;
}

/* Typography styles */
.gtt-main-heading {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.gtt-highlight-text {
  color: #f6611c;
  background: linear-gradient(to right, #ffb48a, #f6611c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gtt-lead-description {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 40px auto;
  color: #f1f5f9;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gtt-lead-description strong {
  font-weight: 600;
  color: #ffffff;
  border-bottom: 1px dashed rgba(223, 177, 91, 0.6);
}

/* Button Layout & Micro-interactions */
.gtt-action-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gtt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: rgb(246 97 28);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 38px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(223, 177, 91, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gtt-btn-primary i {
  transition: transform 0.3s ease;
}

.gtt-btn-primary:hover {
  /* background-color: #ebd07b; */
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(223, 177, 91, 0.45);
}

.gtt-btn-primary:hover i {
  transform: translateX(5px);
}

.gtt-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.gtt-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Upgraded Floating WhatsApp Badge with interactive notification text */
.gtt-whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #25D366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.9rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.gtt-whatsapp-tooltip {
  position: absolute;
  left: 70px;
  background-color: #0f172a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.gtt-whatsapp-float:hover {
  transform: scale(1.08) rotate(8deg);
}

.gtt-whatsapp-float:hover .gtt-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Fluid Responsiveness */
@media (max-width: 768px) {
  .gtt-hero-wrapper {
      padding: 60px 16px;
  }
  .gtt-main-heading {
      font-size: 35px;
  }
  .gtt-lead-description {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 32px;
  }
  .gtt-action-group {
      flex-direction: column;
      width: 100%;
      gap: 14px;
  }
  .gtt-btn-primary, .gtt-btn-secondary {
      width: 100%;
      justify-content: center;
  }
}
/* end banner section =================*/
/* Custom Content Section Styles using theme #f99b6c */

.gtt-content-section {
 
  padding-top: 60px;
  padding-bottom: 10px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #f8f5f2;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.gtt-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Area styling */
.gtt-content-header {
  text-align: center;
  margin-bottom: 20px;
}

.gtt-content-badge {
  display: inline-block;
  color: #f6611c;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.gtt-content-main-title {
  font-size: 35px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.gtt-content-gradient-text {
  
  background: #f6611c;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Two-column layout core grids */
.gtt-content-grid {
  display: grid;
  /* grid-template-columns: 1.1fr 0.9fr; */
  gap: 50px;
  align-items: stretch;
  text-align: center;
}

/* Left blocks styling elements */
.gtt-content-left-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.gtt-content-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
 
}

.gtt-content-icon-wrap {
  background-color: rgba(249, 155, 108, 0.1);
  color: #f99b6c;
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.35rem;
}

.gtt-content-paragraph {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

/* Right Premium Highlight Card */
.gtt-content-right-block {
  display: flex;
}

.gtt-content-premium-card {
  background-color: #0f172a;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 4px solid #f99b6c; /* Accented Top border styling */
}

/* Decorative subtle background mesh glow inside card */
.gtt-content-premium-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 155, 108, 0.15) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.gtt-content-brand {
  display: block;
  color: #f99b6c;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.gtt-content-paragraph-white {
  font-size: 1.1rem;
  color: #f8fafc;
  line-height: 1.75;
  margin: 0;
  font-weight: 300;
}

.gtt-content-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 30px 0;
}

.gtt-content-paragraph-white.gtt-content-muted {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
}

/* Fluid Layout Breakpoints */
@media (max-width: 992px) {
  .gtt-content-grid {
      grid-template-columns: 1fr;
      gap: 60px;
  }
  .gtt-content-main-title {
      font-size: 25px;
  }
  .gtt-content-section {
      /* padding: 40px 16px; */
      padding-top: 40px;
      padding-bottom: 0px;
      padding-left: 24px;
      padding-right: 24;
  }
  .gtt-content-premium-card {
      padding: 40px 24px;
  }
}
/* read more 2 ================ */

/* Core Styling Framework for the Complete Content Block */

.gtt-circuit-section {
  padding: 40px 24px;
  background-color: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.gtt-circuit-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Elements Block styling */
.gtt-circuit-intro-block {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 40px auto;
}

.gtt-circuit-tag {
  display: inline-block;
  color: #f99b6c;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}

.gtt-circuit-main-title {
  font-size: 35px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.gtt-circuit-gradient {
  background: linear-gradient(to right, #f99b6c, #ff793f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gtt-circuit-main-desc {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.75;
}

/* 3-Column Structured Layout Grid */
.gtt-circuit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Individual Content Card Wrapper */
.gtt-circuit-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gtt-circuit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

/* Featured (Agra) Center Card Variant */
.gtt-circuit-card-featured {
  border-top: 5px solid #f99b6c;
  box-shadow: 0 10px 30px rgba(249, 155, 108, 0.08);
}

.gtt-circuit-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.gtt-circuit-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f99b6c;
  background-color: rgba(249, 155, 108, 0.1);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gtt-circuit-city-name {
  font-size: 1.6rem;
  color: #0f172a;
  font-weight: 700;
}

.gtt-circuit-city-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Monument List Subsections styling */
.gtt-circuit-monuments-wrap h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 15px;
  font-weight: 700;
}

.gtt-circuit-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gtt-monument-tag {
  background-color: #f1f5f9;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.gtt-monument-tag:hover {
  background-color: #f99b6c;
  color: #ffffff;
  border-color: #f99b6c;
  cursor: default;
}

/* Fluid Layout Adjustments for smaller screen devices */
@media (max-width: 768px) {
  .gtt-circuit-main-title {
      font-size: 25px;
  }
  .gtt-circuit-main-desc {
    text-align: justify;
  }
  .gtt-circuit-section {
      padding: 20px 16px;
  }
  .gtt-circuit-grid {
      grid-template-columns: 1fr;
  }
  .gtt-circuit-card {
      padding: 30px 20px;
  }
  .gtt-content-box {
    text-align: justify;
  }
}
.reviewheight{
  height: 500px;
  margin-bottom: 385px;
}
/* end landing page golden Triangel tour ================================================================ */