.body {
  src: url("css/fonts/bootstrap-icons.woff") format("woff2");
  src: url("css/fonts/bootstrap-icons.woff2") format("woff");
}

body {
  font-family: var(--font-poppins);
  color: var(--color-text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.6;
}

:root {
  /* Primary Colors */
  --color-primary: #632240;
  --color-primary-dark: #6a0031;
  --color-primary-light: #953561;
  --color-secondary: #ff7733;
  --color-secondary-light: #ff894e;

  /* Additional color */
  --color-success: #27ae60;
  --color-cancel: #EC221F;

  /* Text Colors */
  --color-text-dark: #18171d;
  --color-text-medium: #27262b;
  --color-text-light: #52525c;
  --color-text-muted: #71717b;
  --color-text-lighter: #3f3f47;

  /* Background Colors */
  --bg-light-peach: #fff0e8;
  --bg-light-pink: #fff5f8;
  --bg-white: #ffffff;
  --gradient-start: #fff;
  --gradient-end: #fff0e8;
  --light-orange: #fff0e8;
  --border-color: #d6d3d1;
  --border: #e3e3e3;
  --light-pink: #fbd7e8;
  --bg-puja-benefite: #fff6f8;

  /* --text-muted: #78716c; */

  /* Gradients */
  --gradient-header: linear-gradient(180deg, #8e355e 0%, #632240 100%);
  /* --gradient-button: linear-gradient(225deg, #953561 0%, #6a0031 100%); */
  --gradient-button: linear-gradient(360deg, #632240 0%, #c94582 100%);
  --gradient-orange: linear-gradient(180deg, #ff8f57 0%, #f50 100%);
  --gradient-booking: linear-gradient(
    90deg,
    #fff5ef 0%,
    #ffefe5 50%,
    #fff5ef 100%
  );

  /* Font Families */
  --font-poppins: "Poppins", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;

  /* Box Shadow */
  --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6,
p, ul {
  margin-bottom: 0%;
}

/* ===========================================
   Global Styles
   =========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
 
} */

/* img {
    max-width: 100%;
    height: auto;
    } */



/* ===========================================
   Top Navigation
   =========================================== */

.yd-nav {
  z-index: 1000;
  /* position: sticky; */
  top: 0;
}

.nav-link-2:hover {
  text-decoration: none; /* Ensures no underline on hover */
  color: #632240;
  opacity: 1; /* Prevents color change on hover */
}

a:focus,
a:hover {
  color: #632240;
  text-decoration: none;
}

.navbar {
  margin-bottom: 0px;
}

.yd-navbar-brand img {
  max-width: 250px;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgb(255 255 255) !important;
}

.navbar {
  height: 90px;
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
}

.navbar-expand-lg .navbar-collapse {
  display: flex;
  flex-basis: auto;
  justify-content: flex-end;
}

.navbar-expand-lg .navbar-nav {
  height: fit-content;
  align-items: center;
  gap: 12px;
}

.h-btn {
  color: rgba(99, 34, 64, 0.6);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  position: relative;
  padding: 12px 6px;
  text-decoration: none;
}

.nav-item a:hover {
  color: #632240;
}

.nav-active {
  color: #632240;
}

.nav-active::before {
  color: #632240;
  width: fit-content;
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0px;
  display: block;
  background-color: #f73;
  opacity: 1;
}

.nav-item {
  padding: 0 5px;
  list-style: none;
}

.h-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0px;
  display: block;
  background-color: var(--color-secondary);
  opacity: 1;
}

.btn-center::after {
  transform: scale(0, 1);
  transition: transform 0.3s ease;
}

.btn-center:hover::after {
  transform: scale(1, 1);
}

.login-btn {
  color: var(--color-secondary);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  padding: 2px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 2px solid #ff8f57;
  background: #fff0e8;
  margin: 0px 10px 0px 10px;
}

.login-btn i {
  font-size: 24px;
}

a.dropdown-toggle {
  color: rgba(99, 34, 64, 0.6);
  padding: 12px 6px;
  text-decoration: none;
  line-height: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.25px;
}

.navbar-brand {
  margin-right: auto;
}

/* Dropdowns */
.dropdown-menu {
  width: 320px;
  max-height: 350px;
  overflow-y: auto;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 8px;
}

.dropdown-header {
  background-color: #f9f6f7;
  color: var(--main-color);
  font-weight: 600;
  padding: 10px 15px;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}

.dropdown-search {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 10px;
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.dropdown-search input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
}

.dropdown-item {
  padding: 10px 15px;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background-color: #f5ebf0;
  color: var(--main-color);
}

/* ===========================================
   Sub heading section
   =========================================== */

.bg-body-tertiary {
  z-index: 1000;
  position: relative;
}

.sub-headerbox {
  z-index: 999;
  position: relative;
  white-space: nowrap;
  background: linear-gradient(180deg, #8e355e 0%, #632240 100%);
  border-radius: 0px 0px 16px 16px;
}

.Sub-heading {
  display: flex;
  gap: 30px;
  overflow: auto;
  padding: 32px 0px 12px 0px;
  margin-top: -20px;
  justify-content: center;
}

.sub-nav a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.sub-nav img {
  width: 24px;
}

.sub-nav {
  align-items: center;
  display: flex;
  gap: 5px;
}

/*  ===========================================
    Hero Slider
    =========================================== */
.hero-slide {
  height: 316px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 20px;
}

/* Custom Carousel Indicators */
.carousel-indicators {
  margin: 0px 0px 12px 0px;
  justify-content: center;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* Remove carousel controls */
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/*  ===========================================
    Search Section
    =========================================== */

.search-section {
  background-color: var(--light-orange);
}

/*.search-label {
  font-weight: 600;
  color: #333;
  font-size: 18px;
  margin-bottom: 8px;
}*/
.search-label {
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
    display: block;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

/* VERY IMPORTANT */
.yph-search-card {
    overflow: visible !important;
}

/* Wrapper fix */
.field-wrapper {
    position: relative;
}

/* Dropdown FIX */
.custom-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    min-width: 220px;

    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);

    display: none;
    z-index: 9999;

    padding: 8px 0;
}

/* Smooth dropdown */
.custom-dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Items */
.custom-dropdown div {
    padding: 10px 15px;
    cursor: pointer;
}

.custom-dropdown div:hover {
    background: #f3f6fb;
}

/* Field style */
.search-field {
    background: #eef3f8;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
}

.search-input {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem 0.75rem 3rem;
  height: 60px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #333;
}

/*.yph-search-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  border: none;
  position: relative;
  z-index: 10;
}*/
.yph-search-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.search-input::placeholder {
  color: var(--color-text-muted);
}

.search-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(255, 119, 51, 0.1);
  outline: none;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: var(--color-text-muted);
  font-size: 1.2rem;
  z-index: 2;
}

.search-btn {
  background: var(--gradient-orange);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  width: 100%;
}

.search-btn:hover {
  transform: translateY(-2px);
  color: white;
}

.search-btn:active {
  transform: translateY(0);
}

.search-btn img {
  width: 24px;
}

.suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
}

.suggestion-item:hover {
  background-color: #f8f8f8;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.input-with-suggestions {
  position: relative;
}

/*  ===========================================
    Popular packages Section
    =========================================== */

.heading-box img {
  width: 70px;
}

.heading {
  color: #632240;
  font-weight: 600;
  letter-spacing: -1px;
  padding-left: 30px;
  margin-top: -12px;
}

.yph-card img {
  width: 140px;
  height: 170px;
  border-radius: 12px;
}

.yph-card:hover {
  /* transform: scale(1.03); */
  transform: scale(1.04);
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.yph-wrapers a {
  text-decoration: none;
  color: #18171d;
}

.yph-card h6 {
  font-weight: 600;
}

.yph-facility {
  align-items: baseline;
  justify-content: space-evenly;
  padding: 4px 0px;
}

.yph-facility::-webkit-scrollbar {
  width: 0px;
}

/*  ===========================================
    Explore packages Section
    =========================================== */

.state {
  overflow-x: auto;
  display: flex;
  padding: 0px;
  scroll-behavior: smooth;
  /* margin-top: 24px; */
}

.state::-webkit-scrollbar {
  width: 0;
}

.list-items {
  /* padding: 10px 20px 10px 0; */
  min-width: fit-content;
  list-style: none;
}

.state-btn {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 2px solid var(--UI-200, #ffcda8);
  background: var(--UI-50, #fff5ed);
  color: #632240;
  /* font-family: "Anek Latin"; */
  line-height: normal;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
  text-decoration: none;
}

.state-btn:hover:not(.state-active-btn) {
  background-color: #ffcda8;
  box-shadow: 0px 5px 10px rgba(68, 12, 6, 0.14);
  transition: all 0.3s ease;
}

.state-active-btn {
  display: inline-flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--gradient-button);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
  text-decoration: none;
  border: none;
  height: -webkit-fill-available;
}

.state-active-btn:hover {
  color: #fff;
}

.right-arrow {
  padding: 0;
  background: #fff;
  border: none;
}

.right-arrow i {
  font-size: 38px;
  color: var(--color-primary);
}

.puja-card {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.puja-card:hover {
  transform: translateY(-3px);
  border: 1px solid #632240;
}

.puja-image {
  width: 100%;
  height: 225px;
  object-fit: fill;
}

.puja-content {
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px);
}

.puja-title {
  font-weight: 600;
  font-size: 22px;
  color: #18171d;
}

/* .puja-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: #3f3f47;
} */

.yph-packages-description {
  /* padding: 8px 0px; */
  border-radius: 5px;
  font-size: 16px;
  color: var(--color-text-lighter);
}

/* .puja-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
} */

.yph-facility-box img {
  width: 32px !important;
}

.yph-facility-box {
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
}

.yph-facility-box span {
  color: var(--color-text-light);
}

.puja-price {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
}

.yph-packages-price span {
  color: var(--color-text-muted);
}

.price-amount {
  font-size: 22px;
  font-weight: 600;
  color: #18171d !important;
}

.outer-price-btm {
  justify-content: space-between;
  align-items: center;
}

.book-btn {
  background: var(--gradient-button);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* width: 100%; */
  transition: all 0.3s;
}

.duration-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-v3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-item {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.page-item.active {
  background: var(--gradient-button);
  color: white;
}

.page-item:not(.active) {
  background-color: #fff;
  border: 1px solid var(--border);
}

.page-item:not(.active):hover {
  background-color: #f1f1f1;
}

.page-item.control {
  width: 60px;
}

.page-item.control.disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* ===========================================
    Tabs Section
    =========================================== */

.tabs-section {
  background-color: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.tabs-wrapper {
  background: var(--gradient-orange);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.nav-item a {
  text-decoration: none;
}

.custom-tabs {
  background: transparent;
  border: none;
  padding: 0 2rem;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  gap: 12px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.custom-tabs::-webkit-scrollbar {
  display: none;
}
.custom-tabs .nav-item {
  flex-shrink: 0;
}
.custom-tabs .nav-link {
  background: transparent;
  border: none;
  border-bottom: 4px solid transparent;
  border-radius: 0;
  color: white;
  font-family: var(--font-roboto);
  font-size: 1.125rem;
  padding: 0.625rem 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.custom-tabs .nav-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.custom-tabs .nav-link.active {
  background: transparent;
  border-bottom-color: white;
  font-weight: 500;
}

/* ===========================================
    Chardham Yatra Package section
    =========================================== */

.yph-chardham-section {
  background-color: var(--light-orange);
}


/* ===========================================
    Festival Packages 
    =========================================== */

.yph-box img {
  border-radius: 16px;
}

.yph-box img:hover {
  transform: scale(1.02);
  transition: all easy 0.5s ease-in;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.yph-festival-wrapper {
  display: flex;
}

/* ===========================================
    Luxury & all india Packages 
    =========================================== */

.yd-packages-btn {
  border: none;
  padding: 10px 18px;
  background: #fff;
  border-radius: 8px;
  color: var(--color-text-light);
  height: fit-content;
}

.yd-packages-btn:hover {
  transition: all easy 0.3s ease-in;
  filter: drop-shadow(0 2px 8px rgba(59, 59, 59, 0.1));
}

.yph-active-btn {
  color: #fff;
  background: var(--gradient-button);
  font-weight: 500;
  height: fit-content;
}

.view-btn {
  width: fit-content;
  display: inline-flex;
  padding: 10px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 2px solid #ff8f57;
  background: #fff0e8;
  margin: 30px auto 0;
  color: var(--color-secondary);
  background: #fff;
}

.view-btn:hover {
  background: #fff;
  box-shadow: 0px 5px 10px rgba(68, 12, 6, 0.14);
  transition: all 0.3s ease;
}

.view-btn a {
    color: #F73;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}


/* ==========================================
   Why Choose Us Section
   =========================================== */

.yp-benefit-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 280px;
  border: 1px solid #ececec;
}

.yp-benefit-card:hover {
  border: 1px solid #e8bacb;
  transition: all 0.3s ease;
}

.yp-benefit-card:hover {
  border: 1px solid #e8bacb;
  transition: all 0.3s ease;
}

.yp-benefit-title {
  color: var(--color-text-dark);
  font-weight: 600;
}

.yp-benefit-description {
  color: var(--color-text-light);
  font-size: 16px;
}

.yp-benefit-icon img {
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 8px;
}

/* ===========================================
    FAQ Section start
    =========================================== */

.faq-container {
  background-color: var(--light-orange);
}

.faq-outer-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.faq-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.faqAccordian {
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.faqQuestion {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faqAccordian.f-active {
  max-height: fit-content;
  background: #fff5ed;
  transition: all 0.7s cubic-bezier(0.36, 0.01, 1, 0.06);
}

.faqAnswer.f-active {
  max-height: fit-content;
  display: contents;
  transition: all 0.7s cubic-bezier(0.36, 0.01, 1, 0.06);
}

.icon.f-active {
  transform: rotate(180deg);
}

.faqQuestion i {
  font-size: 25px;
  color: #440c06;
}

.faqQuestion h5 {
  color: var(--color-text-dark);
  font-weight: 600;
  width: 100%;
}

.faqAnswer {
  color: var(--color-text-light);
  display: none;
}

.faqAnswer h5 {
  padding-top: 10px;
  margin: 0px;
}

/* ===========================================
    List of all destinations Section start
    =========================================== */

.destination-outer-container {
  width: 100%;
}

.destination-box {
  height: fit-content;
  border-radius: 10px;
  border: 1.5px solid var(--UI-300, #ffa971);
  background: var(--UI-50, #fff5ed);
  margin: 0px auto 0px;
}

.destination-box h2 {
  color: var(--Solids-Saffron, #f73);
  text-align: center;
  font-weight: 600;
}

.d-search {
  padding: 14px;
  display: flex;
  align-items: center;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  margin: auto;
  box-shadow: 0px 0px 3px 0px rgba(47, 22, 4, 0.1);
}

.d-search i {
  font-size: 22px;
  padding-right: 10px;
  color: #78716c;
}

.d-search input::placeholder {
  color: var(--color-text-muted);
}

.d-search input {
  border: none;
  outline: none;
  width: 100%;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.25px;
}

li::marker {
  color: #78716c;
}

.yph-city {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: disc;
  column-gap: 40px;
  height: 300px;
  overflow-y: auto;
}

.yph-city a {
  color: #78716c;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.yph-city a:hover {
  color: #440c06;
  transition: all 0.3s ease-in;
}

/* ===========================================
    Footer Section start
    =========================================== */

.footer-container {
  height: 615px;
  display: flex;
  background: var(--Solids-Mulberry, #632240);
  margin-top: -260px;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer li {
  list-style: none;
}

.footer {
  display: flex;
  gap: 30px;
  padding: 40px 0px 25px 0px;
  margin: 0px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  cursor: pointer;
  flex-wrap: wrap;
  justify-content: center;
}

.footer a {
  color: #fff;
}

.social-icon {
  display: flex;
  gap: 16px;
}

.social-m-icon {
  display: flex;
  gap: 10px;
}

.f-h-line {
  width: 40px;
  background-color: #fff;
  height: 2px;
  margin: 18px 0px;
}

.footer-content p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0%;
  padding-bottom: 16px;
}

.payment-img {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  justify-content: center;
}

.payment-img img {
  width: 50px;
}

.sub-footer {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: var(
    --gradients-mulberry-gradient,
    linear-gradient(225deg, #953561 0%, #6a0031 100%)
  );
}

.sub-footer p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  opacity: 0.8;
  margin: 0px;
}

.footer-text a {
  color: #fff;
}

/* <!-- Footer Section End -->  */

/* Responsive Adjustments */

/* For very small screens */

@media (max-width: 1399px) {
  .yph-wrapers {
    overflow-x: auto;
    scroll-behavior: smooth;
  }
}

@media (max-width: 1200px) {
  .yd-navbar-brand img {
    max-width: 216px;
  }

  .outer-price-btm {
    align-items: self-start;
    flex-direction: column;
  }

  .book-btn,
  .yph-btn {
    width: 100%;
  }

  .puja-title,
  .price-amount {
    font-size: 18px;
  }

  .yph-facility-box span {
    font-size: 14px;
  }

  .yph-facility-box img {
    width: 30px !important;
  }
}

@media (max-width: 992px) {
  a.dropdown-toggle,
  .h-btn {
    padding: 0px 0px 8px 0px;
  }

  .search-card {
    padding: 1.5rem;
  }

  .search-btn {
    width: 100%;
    font-size: 16px;
  }

  .city a {
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
    padding-left: 60px;
  }

  .section-title::before {
    width: 50px;
    height: 35px;
    background-size: contain;
  }

  .benefit-card {
    min-width: 300px;
    flex: 1;
    max-width: calc(25% - 15px);
  }

  .yd-section-title {
    font-size: 2rem;
  }

  .main-image {
    height: 350px;
    margin-bottom: 1rem;
  }

  .navbar-expand-lg .navbar-nav {
    align-items: flex-start;
    gap: 20px;
  }

  .video-title {
    font-size: 1.1rem;
  }

  .navbar-toggler {
    border: 0px !important;
    padding: 8px !important;
    font-size: medium !important;
    box-shadow: 0px 0px 4px 0px #cecece !important;
    border-radius: 50% !important;
  }

  .custom-tabs .nav-link {
    padding: 10px;
    font-size: 16px;
  }

  .custom-tabs {
    gap: 0px;
    padding: 0 1rem;
  }

  #location,
  #pujaType {
    height: 300px;
  }

  .puja-location,
  .puja-description,
  .yajman-count,
  .duration-badge {
    font-size: 14px;
  }

  .puja-description {
    padding: 4px 0px;
  }

  .icon-container {
    margin-right: 16px;
  }

  .city {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cards-container {
    overflow-x: auto;
  }

  .puja-image {
    height: 180px;
  }

  .state-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  .yph-festival-wrapper {
    overflow-x: auto;
    scroll-behavior: auto;
  }

  .yph-city {
    grid-template-columns: 1fr 1fr;
}

.hero-slide {
    height: 170px;
    border-radius: 8px;
}
.payment-img img {
    width: 45px;
}
}

@media (max-width: 768px) {
  .custom-dropdown {
        position: fixed;
        left: 10px;
        right: 10px;
        width: auto;
        top: auto;
        bottom: 20px;
    }
  .search-card {
    padding: 1.25rem;
  }

  .search-field {
    height: 55px;
  }

  .offer-content {
    font-size: 16px;
    animation-duration: 15s;
  }

  .yd-section-title {
    font-size: 1.8rem;
  }

  .timings-section {
    padding: 1.5rem;
  }

  .timing-category {
    font-size: 1.2rem;
  }

  .timing-detail {
    font-size: 1rem;
  }

  .nav-link.active::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .control-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .Sub-heading {
      justify-content: flex-start;
      gap: 16px;
    }

  .city {
    overflow: auto;
    margin: 15px;
  }

  h2 {
    font-size: 24px;
  }

  .footer {
    gap: 12px;
    padding: 20px 0px 15px 0px;
  }

  .d-search {
    width: 90%;
    height: 42px;
  }

  .f-h-line {
    margin: 15px 0px;
  }

  .payment-img {
    padding-bottom: 20px;
  }

  .d-search i {
    font-size: 18px;
  }

  .sub-footer p {
    font-size: 12px;
  }

  .destination-outer-container {
    width: 90%;
    margin: auto;
  }

  .footer {
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
  }

  .features-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--secondary-color);
    justify-content: flex-start;
    flex-direction: column;
  }

  .features-container::-webkit-scrollbar {
    height: 8px;
  }

  .features-container::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
  }

  .features-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
  }

  .feature-item {
    flex: 0 0 280px;
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .icon-container {
    margin: 0px auto 12px;
  }

  .custom-tabs {
    padding: 0 1rem;
  }

  .custom-tabs .nav-link {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }

  .section-title {
    font-size: 28px;
    text-align: center;
    padding-left: 0;
  }

  .section-title::before {
    display: none;
  }

  .sub-nav a {
    font-size: 16px;
  }

  .heading {
    padding-left: 20px;
  }

  .heading-box img {
    width: 46px;
  }

  .feature-title {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .footer-container {
    height: 600px;
  }

  .city {
    height: 250px;
  }

  .state {
    padding: 0px;
    margin: 0px;
  }

  .right-arrow {
    display: none;
  }

  .yph-search-card {
    padding: 1rem;
  }

  .yph-box img {
    border-radius: 8px;
  }

  .destination-box h2 {
    font-size: 20px;
  }

  .yph-city a {
      font-size: 14px;
  }

}

@media (max-width: 576px) {
  .search-label {
    font-size: 1rem;
  }

  .search-placeholder {
    font-size: 0.9rem;
  }

  .offer-content {
    font-size: 14px;
    animation-duration: 12s;
  }

  .offer-section {
    padding: 10px 0;
  }

  .yd-section-title {
    font-size: 22px;
  }

  .product-title {
    font-size: 1.3rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .yd-temple-content h5 {
    color: #f73;
    font-size: 16px;
  }

  .upi-img img {
    width: 16%;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .Sub-heading {
    justify-content: flex-start;
  }

  .section-title {
    font-size: 24px;
  }

  .section-title::before {
    width: 40px;
    height: 28px;
  }

  .benefit-card,
  .timing-card {
    padding: 20px 15px;
  }

  .custom-tabs {
    padding: 0 0.5rem;
  }

  .custom-tabs .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .tabs-wrapper {
    border-radius: var(--radius-sm);
  }

  .faqQuestion h5 {
    font-size: 16px;
  }

  .faqAnswer h6 {
    font-size: 14px;
  }

  .faqQuestion i {
    font-size: 18px;
    color: #440c06;
  }

  .city {
    column-gap: 0px;
  }

  .filter-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-card {
    width: 80px;
  }

  .city-image {
    margin-bottom: 12px;
    width: 60px;
    height: 60px;
  }

  .city-name {
    font-size: 14px;
  }

  .nav-btn svg {
    width: 14px;
  }

  .nav-btn {
    width: 36px;
    height: 32px;
  }

  .puja-content {
    padding: 12px;
  }

  .search-input {
    height: 50px;
  }

  .modal-dialog {
    margin: 12px !important;
  }

  .heading-box img {
    width: 40px;
  }

  .heading {
    padding-left: 16px;
  }

  .yph-card img {
    width: 116px;
    height: 140px;
    border-radius: 8px;
  }

  .yph-city {
    grid-template-columns: 1fr;
  }
  .payment-img img {
      width: 35px;
  }
}

@media (max-width: 426px) {
  .faqQuestion h5 {
    font-size: 14px;
  }

  h2 {
    font-size: 20px;
  }

  .login-btn span {
        display: none;
    }
}

@media (max-width: 376px) {
  .yd-navbar-brand img {
    max-width: 175px;
  }
  .footer-container {
    height: 665px;
  }
}
