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

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f0;
  color: #111;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

section {
  /* padding:100px 0; */
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 35px;
  font-family: 'Cinzel', serif;
  color: #163832;
  margin-bottom: 0px;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dba85b;
  color: #fff;
  padding: 9px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: .4s;
  position: relative;
  overflow: hidden;
  font-size: 15px;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgb(22 56 50 / 32%);
  letter-spacing: 1px;
  background: #163832;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(10, 25, 22, .7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navbar {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 27px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
}

.logo span {
  color: #dba85b;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: .4s;
  font-size: 13px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #dba85b;
  transition: .4s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  top: 0;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .8), rgba(0, 0, 0, .3));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 50px;
  padding-top: 100px;
}

.hero-left h5 {
  color: #dba85b;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 50px;
  color: #fff;
  line-height: 1.1;
  font-family: 'Cinzel', serif;
  margin-bottom: 25px;
}

.hero-left p {
  color: #ddd;
  line-height: 1.9;
  margin-bottom: 35px;
  max-width: 650px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.outline-btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  transition: .4s;
}

.outline-btn:hover {
  background: #fff;
  color: #111;
}

.booking-card {
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

.booking-card h3 {
  margin-bottom: 25px;
  font-size: 30px;
  font-family: 'Cinzel', serif;
}

.booking-card .input-box {
  margin-bottom: 20px;
}

.booking-card input,
.booking-card select {
  width: 100%;
  height: 55px;
  border: none;
  outline: none;
  border-radius: 15px;
  padding: 0 20px;
  background: rgb(32 31 31);
  color: #fff;
}

.booking-card input::placeholder {
  color: #0f0f0f;
}

.booking-card button {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* FEATURES */

.features {
  background: #f5f7f6;
  margin-top: -70px;
  position: relative;
  z-index: 5;
  border-radius: 40px 40px 0 0;
  padding: 50px 0px;
}

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

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  transition: .5s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  border: 1px solid #00000012;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: #dba85b;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.feature-card i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: #163832;
  color: #fff;
  font-size: 32px;
  margin-bottom: 25px;
  transition: .5s;
}

.feature-card:hover i {
  transform: rotateY(360deg);
  background: #dba85b;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #163832;
}

.feature-card p {
  color: #666;
  line-height: 1.8;
}

/* EXPERIENCE */

.experience-row {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-direction: row-reverse;
}

.experience-row:nth-child(even) {
  direction: rtl;
}

.experience-row:nth-child(even) .experience-content {
  direction: ltr;
}

.experience-img {
  position: relative;
}

.experience-img img {
  object-fit: cover;
  transition: .7s;
}

.experience-img:hover img {
  transform: scale(1.1) rotate(2deg);
}

.experience-content h2 {
  font-size: 45px;
  color: #163832;
  margin-bottom: 25px;
  font-family: 'Cinzel', serif;
}

.experience-content p {
  line-height: 1.9;
  color: #666;
  margin-bottom: 14px;
  font-size: 14px;
}

/* GALLERY */

.gallery {
  background: #163832;
}

.gallery .section-title h2,
.gallery .section-title p {
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  height: 320px;
  cursor: pointer;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: .5s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: #fff;
  margin-bottom: 10px;
  transform: translateY(30px);
  transition: .5s;
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

/* COUNTERS */

.counter-section {
  background: url('https://images.unsplash.com/photo-1549366021-9f761d040a94?q=80&w=1600&auto=format&fit=crop') center/cover fixed;
  position: relative;
}

.counter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
}

.counter-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  color: #fff;
}

.counter-box h2 {
  font-size: 60px;
  color: #dba85b;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 18px;
}

/* PACKAGES */

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  transition: .5s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.package-card:hover {
  transform: translateY(-12px);
}

.package-img {
  overflow: hidden;
  height: 224px;
}

.package-img img {
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.package-card:hover img {
  transform: scale(1.1);
}

.package-content {
  padding: 15px 30px 25px;
}

.package-content h3 {
  margin-bottom: 6px;
  color: #163832;
  font-size: 20px;
}

.package-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}

.price {
  font-size: 20px;
  color: #163832;
  font-weight: 700;
  margin-bottom: 11px;
}

/* TESTIMONIAL */

.testimonial {
  background: #163832;
  color: #fff;
}

.testimonial .section-title h2,
.testimonial .section-title p {
  color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 25px;
  transition: .4s;
}

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

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial-card p {
  line-height: 1.9;
  color: #ddd;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  color: #dba85b;
}

/* FAQ */

.faq-box {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.faq-question {
  padding: 25px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #163832;
}

.faq-answer {
  padding: 0 25px 25px;
  display: none;
  color: #666;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

/* FOOTER */

footer {
  background: #0f2622;
  color: #fff;
  padding-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo {
  font-size: 34px;
  font-family: 'Cinzel', serif;
  margin-bottom: 20px;
}

.footer-logo span {
  color: #dba85b;
}

.footer-about p {
  color: #ccc;
  line-height: 1.9;
  margin-bottom: 25px;
}

.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: .4s;
}

.socials a:hover {
  background: #dba85b;
  transform: translateY(-5px);
}

.footer-links h3 {
  margin-bottom: 25px;
  color: #dba85b;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: #ccc;
  transition: .4s;
}

.footer-links ul li a:hover {
  color: #dba85b;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  padding: 25px 0;
  color: #bbb;
}

/* WHATSAPP */

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .7)
  }

  70% {
    box-shadow: 0 0 0 25px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .hero-content,
  .experience-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .gallery-grid,
  .package-grid,
  .testimonial-grid,
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-left h1 {
    font-size: 60px;
  }

}

@media(max-width:768px) {

  section {
    padding: 70px 0;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: #163832;
    flex-direction: column;
    padding: 50px;
    transition: .5s;
  }

  .nav-links.active {
    left: 0;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .feature-grid,
  .gallery-grid,
  .package-grid,
  .testimonial-grid,
  .counter-grid {
    grid-template-columns: 1fr;
  }

  .experience-content h2 {
    font-size: 34px;
  }

  .booking-card {
    padding: 30px 20px;
  }

  .gallery-item {
    height: 250px;
  }

}


.wild-section {
  padding: 51px 0;
  background: #ffffff;
}

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

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.sub-title {
  display: inline-block;
  color: #d89b2b;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 35px;
  color: #163832;
  font-weight: 700;
  margin-bottom: 20px;
}

.line {
  width: 90px;
  height: 4px;
  background: #d89b2b;
  margin: auto;
  border-radius: 20px;
  position: relative;
}

.line::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #163832;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wild-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.wild-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  transition: .5s;
  position: relative;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.wild-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.wild-img {
  position: relative;
  overflow: hidden;
  height: 213px;
}

.wild-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.wild-card:hover .wild-img img {
  transform: scale(1.12) rotate(2deg);
}

.wild-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .5s;
}

.wild-card:hover .wild-overlay {
  opacity: 1;
}

.wild-overlay a {
  width: 70px;
  height: 70px;
  background: #fff;
  color: #163832;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transform: scale(0);
  transition: .4s;
}

.wild-card:hover .wild-overlay a {
  transform: scale(1);
}

.wild-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d89b2b, #f3bc56);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(216, 155, 43, .4);
}

.wild-content {
  padding: 28px 35px 35px;
}

.wild-content h3 {
  font-size: 20px;
  color: #163832;
  margin-bottom: 10px;
}

.wild-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 15px;
}

.wild-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #163832;
  color: #fff;
  padding: 16px 22px;
  border-radius: 15px;
  transition: .4s;
  font-weight: 600;
}

.wild-btn i {
  transition: .4s;
}

.wild-btn:hover {
  background: #d89b2b;
}

.wild-btn:hover i {
  transform: translateX(8px);
}

@media(max-width:991px) {

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

}

@media(max-width:768px) {

  .section-heading h2 {
    font-size: 25px;
  }

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

}

.experience-img img {
  width: 456px;
}


section.ove {
  padding-bottom: 40px;
}

section.packa {
  padding: 41px 0px;
}


.sariska-history-section {
  padding: 60px 0;
  background: #f5f7f4;
  overflow: hidden;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

.history-heading {
  text-align: center;
  margin-bottom: 25px;
}

.history-heading span {
  color: #d89b2b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
}

.history-heading h2 {
  font-size: 35px;
  color: #163832;
  margin-bottom: 6px;
  font-weight: 700;
}

.history-heading p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.9;
  font-size: 14px;
}

.history-wrapper {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */

.history-left {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.history-card {
  background: #fff;
  padding: 20px 25px;
  border-radius: 30px;
  display: flex;
  gap: 25px;
  transition: .5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.history-card::before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #163832, #214d45);
  left: 0;
  top: 0;
  transition: .6s;
  z-index: 0;
}

.history-card:hover::before {
  width: 100%;
}

.history-card:hover {
  transform: translateY(-10px);
}

.history-card>* {
  position: relative;
  z-index: 2;
}

.history-icon {
  min-width: 57px;
  height: 57px;
  border-radius: 25px;
  background: linear-gradient(135deg, #d89b2b, #f3bc56);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 23px;
  box-shadow: 0 15px 35px rgba(216, 155, 43, .35);
}

.flora {
  background: linear-gradient(135deg, #3fc46a, #14893f);
}

.fauna {
  background: linear-gradient(135deg, #ff7b54, #ff5722);
}

.history-content h3 {
  font-size: 18px;
  color: #163832;
  margin-bottom: 15px;
  transition: .4s;
}

.history-content p {
  font-size: 15px;
  color: #666;
  line-height: 22px;
  transition: .4s;
  font-weight: 400;
}

.history-card:hover .history-content h3,
.history-card:hover .history-content p {
  color: #fff;
}

/* RIGHT */

.history-right {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image {
  width: 420px;
  height: 520px;
  border-radius: 45px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.main-image:hover img {
  transform: scale(1.1);
}

.circle-img {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
  z-index: 2;
}

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

.circle1 {
  top: 20px;
  right: 0;
}

.circle2 {
  bottom: 30px;
  left: 10px;
}

.floating-card {
  position: absolute;
  background: #fff;
  padding: 18px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
  z-index: 5;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: #163832;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card span {
  font-weight: 600;
  color: #163832;
}

.top-card {
  top: 120px;
  left: -40px;
}

.bottom-card {
  bottom: 90px;
  right: -20px;
}

@keyframes float {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }

}

/* RESPONSIVE */

@media(max-width:1100px) {

  .history-wrapper {
    grid-template-columns: 1fr;
  }

  .history-right {
    min-height: auto;
    padding-top: 60px;
  }

}

@media(max-width:768px) {

  .sariska-history-section {
    padding: 80px 0;
  }

  .history-heading h2 {
    font-size: 25px;
  }

  .history-card {
    flex-direction: column;
    padding: 30px 25px;
  }

  .history-content h3 {
    font-size: 26px;
  }

  .main-image {
    width: 100%;
    height: 420px;
  }

  .circle-img {
    width: 120px;
    height: 120px;
  }

  .top-card {
    left: 0;
    top: 40px;
  }

  .bottom-card {
    right: 0;
    bottom: 40px;
  }

}

section.faq_s {
  padding: 60px;
  background: #f7f3e8;
}

img.bg_sd.rota {
  transform: rotate(180deg);
  margin-bottom: -61px;
}

a.out_li {
  border: 1px solid #dba85b;
  padding: 8px 8px;
  border-radius: 22px;
  color: #dba85b;
  font-size: 12px;
}

a.out_li:hover {
  border: transparent;
  transform: scale(1.8);
}






.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media(min-width:576px) {
  .container {
    max-width: 540px;
  }
}

@media(min-width:768px) {
  .container {
    max-width: 720px;
  }
}

@media(min-width:992px) {
  .container {
    max-width: 960px;
  }
}

@media(min-width:1200px) {
  .container {
    max-width: 1230px;
  }
}

@media(min-width:1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row>* {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

/* GRID */

.col-1 {
  width: 8.333333%;
}

.col-2 {
  width: 16.666666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333333%;
}

.col-5 {
  width: 41.666666%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333333%;
}

.col-8 {
  width: 66.666666%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333333%;
}

.col-11 {
  width: 91.666666%;
}

.col-12 {
  width: 100%;
}

/* MD */

@media(min-width:768px) {

  .col-md-1 {
    width: 8.333333%;
  }

  .col-md-2 {
    width: 16.666666%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.333333%;
  }

  .col-md-5 {
    width: 41.666666%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.333333%;
  }

  .col-md-8 {
    width: 66.666666%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.333333%;
  }

  .col-md-11 {
    width: 91.666666%;
  }

  .col-md-12 {
    width: 100%;
  }

}

/* LG */

@media(min-width:992px) {

  .col-lg-1 {
    width: 8.333333%;
  }

  .col-lg-2 {
    width: 16.666666%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 32.333333%;
  }

  .col-lg-5 {
    width: 41.666666%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333333%;
  }

  .col-lg-8 {
    width: 66.666666%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.333333%;
  }

  .col-lg-11 {
    width: 91.666666%;
  }

  .col-lg-12 {
    width: 100%;
  }

}

/* GAP */

.g-1 {
  gap: 10px;
}

.g-2 {
  gap: 15px;
}

.g-3 {
  gap: 20px;
}

.g-4 {
  gap: 5px;
}

.g-5 {
  gap: 30px;
}

/* FLEX */

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

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

.justify-content-between {
  justify-content: space-between;
}

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

.w-100 {
  width: 100%;
}

.bxs_ico {
  display: flex;
  justify-content: space-between;
}



.best-time-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 245, 225, .72), rgba(255, 245, 225, .72)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

/* PAPER EFFECT */

.best-time-section::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 46px;
  background: #fff;
  clip-path: polygon(0 100%,
      2% 70%,
      4% 90%,
      6% 65%,
      8% 88%,
      10% 72%,
      12% 94%,
      14% 68%,
      16% 90%,
      18% 70%,
      20% 95%,
      22% 72%,
      24% 88%,
      26% 65%,
      28% 92%,
      30% 72%,
      32% 90%,
      34% 65%,
      36% 94%,
      38% 72%,
      40% 90%,
      42% 68%,
      44% 92%,
      46% 70%,
      48% 95%,
      50% 70%,
      52% 92%,
      54% 66%,
      56% 90%,
      58% 72%,
      60% 95%,
      62% 68%,
      64% 90%,
      66% 72%,
      68% 92%,
      70% 70%,
      72% 94%,
      74% 68%,
      76% 90%,
      78% 70%,
      80% 92%,
      82% 65%,
      84% 90%,
      86% 72%,
      88% 95%,
      90% 68%,
      92% 90%,
      94% 72%,
      96% 92%,
      98% 68%,
      100% 100%);
  z-index: 2;
}

/* HEADER */

.best-time-section .section-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 5;
}

/* TOP ICON */

.best-time-section .top-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.best-time-section .line {
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, #ff9800, #ffcc80);
  position: relative;
}

.best-time-section .line::before {
  content: "";
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff9800;
}

.best-time-section .top-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #1d7d31;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}

.best-time-section .section-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.1;
}

.best-time-section .section-header h2 span {
  color: #238636;
}

.best-time-section .orange-line {
  width: 120px;
  height: 3px;
  background: #ff7b00;
  border-radius: 20px;
  margin: 12px auto;
}

.best-time-section .section-header p {
  max-width: 1100px;
  margin: auto;
  font-size: 16px;
  color: #1f2937;
  line-height: 1.7;
}

/* TABLE */

.best-time-section .table-wrap {
  position: relative;
  z-index: 5;
  overflow-x: auto;
}

.best-time-section .custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .12);
}

.best-time-section .custom-table thead {
  background:
    linear-gradient(135deg, #012b2b, #064e3b);
}

.best-time-section .custom-table thead th {
  color: #fff;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.best-time-section .custom-table thead th:last-child {
  border-right: none;
}

.best-time-section .table-head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.best-time-section .table-head i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgb(4 66 54);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffe45c;
}

/* BODY */

.best-time-section .custom-table tbody tr {
  transition: .35s;
}

.best-time-section .custom-table tbody tr:hover {
  background: #fff8ef;
}

.best-time-section .custom-table tbody td {
  padding: 18px 14px;
  border-top: 1px solid #ececec;
  font-size: 14px;
  color: #1f2937;
  font-weight: 500;
}

.best-time-section .custom-table tbody td:last-child {
  min-width: 350px;
}

/* SEASON */

.best-time-section .season-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 14px;
}

.best-time-section .season-icon {
  font-size: 23px;
}

.winter {
  color: #1565d8;
}

.summer {
  color: #ff7b00;
}

.monsoon {
  color: #1f9c4d;
}

.post {
  color: #7c3aed;
}

/* TEMP */

.temp {
  font-weight: 800;
  font-size: 16px;
}

.temp-blue {
  color: #1565d8;
}

.temp-orange {
  color: #ff7b00;
}

.temp-green {
  color: #1f9c4d;
}

.temp-purple {
  color: #7c3aed;
}

/* EXPERIENCE */

.best-time-section .experience {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.best-time-section .exp-badge {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.blue-bg {
  background: #edf4ff;
  color: #1565d8;
}

.orange-bg {
  background: #fff3e5;
  color: #ff7b00;
}

.green-bg {
  background: #ebfff1;
  color: #1f9c4d;
}

.purple-bg {
  background: #f4efff;
  color: #7c3aed;
}

/* NOTE */

.best-time-section .note-box {
  margin-top: 45px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 4px 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
  border: 2px dashed #ffb74d;
  z-index: 5;
}

.best-time-section .note-box::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -15px;
  width: 260px;
  height: 140px;
  background: url('https://cdn-icons-png.flaticon.com/512/427/427735.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .08;
}

.best-time-section .note-content {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.best-time-section .note-icon {
  min-width: 45px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #ff6d00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 12px 25px rgba(255, 152, 0, .3);
}

.best-time-section .note-text h4 {
  font-size: 16px;
  font-weight: 800;
  color: #ff7b00;
  margin-bottom: 10px;
}

.best-time-section .note-text p {
  font-size: 16px;
  line-height: 22px;
  color: #1f2937;
}

/* RESPONSIVE */

@media(max-width:1199px) {

  .best-time-section .section-header h2 {
    font-size: 58px;
  }

  .best-time-section .section-header p {
    font-size: 22px;
  }

  .best-time-section .custom-table thead th {
    font-size: 20px;
  }

  .best-time-section .custom-table tbody td {
    font-size: 18px;
  }

}

@media(max-width:991px) {

  .best-time-section .best-time-section {
    padding: 80px 0;
  }

  .best-time-section .section-header h2 {
    font-size: 46px;
  }

  .best-time-section .section-header p {
    font-size: 18px;
  }

  .best-time-section .season-wrap {
    font-size: 16px;
  }

  .best-time-section .temp {
    font-size: 22px;
  }

  .best-time-section .note-text p {
    font-size: 18px;
  }

}

@media(max-width:767px) {

  .best-time-section .section-header h2 {
    font-size: 34px;
  }

  .best-time-section .line {
    width: 60px;
  }

  .best-time-section .section-header p {
    font-size: 16px;
  }

  .best-time-section .custom-table {
    min-width: 900px;
  }

  .best-time-section .note-content {
    flex-direction: column;
  }

  .best-time-section .note-text h4 {
    font-size: 26px;
  }

  .best-time-section .note-text p {
    font-size: 16px;
  }

}

.why-section {
  position: relative;
  padding: 54px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .93), rgba(255, 255, 255, .95)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

/* FOREST */

.forest-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  opacity: .08;
}

.forest-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  opacity: .08;
}

/* BIRDS */

.bird {
  position: absolute;
  color: rgba(0, 0, 0, .08);
  font-size: 35px;
  animation: fly 6s ease-in-out infinite;
}

.bird.one {
  top: 140px;
  left: 5%;
}

.bird.two {
  top: 190px;
  right: 6%;
}

@keyframes fly {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* HEADER */

.why-section .section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

/* TOP ICON */

.why-section .top-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.why-section .line {
  width: 130px;
  height: 2px;
  background: linear-gradient(to right, #ff9800, #ffd699);
  position: relative;
}

.why-section .line::before {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff9800;
}

.why-section .top-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d7a3b, #1e9b55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.why-section .section-header h2 {
  font-size: 25px;
  font-weight: 800;
  color: #13222f;
  margin-bottom: 18px;
  line-height: 1.1;
}

.why-section .section-header h2 span {
  color: #1e9b55;
}

.why-section .orange-line {
  width: 120px;
  height: 3px;
  border-radius: 20px;
  background: #ff9800;
  margin: 16px auto;
}

.why-section .section-header p {
  max-width: 1100px;
  margin: auto;
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
}

/* CARD */

.why-section .info-card {
  display: flex;
  align-items: flex-start;
  gap: 45px;
  background: rgba(255, 255, 255, .95);
  border-radius: 35px;
  padding: 35px;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  transition: .4s;
}

.why-section .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

/* BORDER GLOW */

.why-section .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #ff9800, #ff6d00);
}

.why-section .green-card::before {
  background: linear-gradient(to bottom, #1f9c4d, #0b7d43);
}

.why-section .blue-card::before {
  background: linear-gradient(to bottom, #1565d8, #0f4fb4);
}

.why-section .purple-card::before {
  background: linear-gradient(to bottom, #7c3aed, #5b21b6);
}

/* IMAGE */

.why-section .card-image {
  width: 33%;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  flex-shrink: 0;
}

.why-section .card-image img {
  width: 100%;
  height: 409px;
  object-fit: cover;
  border-radius: 25px;
  transition: .6s;
}

.why-section .info-card:hover .card-image img {
  transform: scale(1.08);
}

/* DASH BORDER */

.why-section .card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  border: 3px dashed rgba(255, 255, 255, .8);
  pointer-events: none;
}

/* CONTENT */

.why-section .card-content {
  flex: 1;
}

/* TOP */

.why-section .card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.why-section .number {
  min-width: 45px;
  height: 45px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff9800, #ff6d00);
}

.why-section .green-num {
  background: linear-gradient(135deg, #1f9c4d, #0b7d43);
}

.why-section .blue-num {
  background: linear-gradient(135deg, #1565d8, #0f4fb4);
}

.why-section .purple-num {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

/* ICON */

.why-section .card-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.orange-bg {
  background: #fff3e5;
  color: #ff9800;
}

.green-bg {
  background: #ebfff1;
  color: #1f9c4d;
}

.blue-bg {
  background: #edf4ff;
  color: #1565d8;
}

.purple-bg {
  background: #f4efff;
  color: #7c3aed;
}

.card-title-wrap h3 {
  font-size: 23px;
  color: #13222f;
  font-weight: 800;
  margin-bottom: 10px;
}

.card-dots {
  width: 100px;
  height: 8px;
  border-bottom: 5px dotted #ff9800;
}

.green-dots {
  border-color: #1f9c4d;
}

.blue-dots {
  border-color: #1565d8;
}

.purple-dots {
  border-color: #7c3aed;
}

/* TEXT */

.card-content p {
  font-size: 14px;
  line-height: 1.9;
  color: #374151;
}

/* REVERSE */

.reverse {
  flex-direction: row-reverse;
}

/* RESPONSIVE */

@media(max-width:1200px) {

  .section-header h2 {
    font-size: 58px;
  }

  .section-header p {
    font-size: 22px;
  }

  .card-title-wrap h3 {
    font-size: 32px;
  }

  .card-content p {
    font-size: 18px;
  }

}

@media(max-width:991px) {

  .why-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 46px;
  }

  .section-header p {
    font-size: 18px;
  }

  .info-card {
    flex-direction: column;
  }

  .reverse {
    flex-direction: column;
  }

  .card-image {
    width: 100%;
  }

  .card-image img {
    height: 260px;
  }

}

@media(max-width:767px) {

  .section-header h2 {
    font-size: 34px;
  }

  .line {
    width: 60px;
  }

  .section-header p {
    font-size: 16px;
  }

  .info-card {
    padding: 22px;
    border-radius: 25px;
  }

  .card-top {
    flex-wrap: wrap;
  }

  .card-title-wrap h3 {
    font-size: 24px;
  }

  .card-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .number {
    min-width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .card-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .card-image img {
    height: 220px;
  }

}

.booking-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(rgb(255 255 255 / 92%), rgb(255 255 255)), url(https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1600&auto=format&fit=crop);
  background-size: cover;
  background-position: center;
}

/* FOREST BOTTOM */

.booking-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 220px;
  background: url('https://svgshare.com/i/14M9.svg');
  background-size: cover;
  opacity: .08;
  pointer-events: none;
}

/* LEAFS */

.leaf-left {
  position: absolute;
  left: -20px;
  top: 0;
  width: 170px;
  opacity: .9;
}

.leaf-right {
  position: absolute;
  right: -20px;
  top: 0;
  width: 170px;
  opacity: .9;
}

/* ROW */

.booking-row {
  display: flex;
  gap: 45px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* LEFT */

.booking-left {
  flex: 1;
}

/* HEADER */

.section-header {
  margin-bottom: 40px;
}

/* ICON */

.top-icon-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}




.section-header h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  color: #13222f;
  margin-bottom: 22px;
}

.section-header h2 span {
  color: #1f9c4d;
}

.orange-line {
  width: 120px;
  height: 5px;
  border-radius: 30px;
  background: #ff9800;
  margin-bottom: 28px;
  margin: auto;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 16px;
  line-height: 1.4;
  color: #374151;
  font-weight: 400;
}

/* INFO CARD */

.info-card {
  display: flex;
  gap: 17px;
  transition: .4s;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.info-card:hover {}

/* LEFT BORDER */

.info-card::before {
  content: "";
}

/* ICON */

.info-icon {
  min-width: 35px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #eef8ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1f9c4d;
  box-shadow: 0 10px 25px rgba(31, 156, 77, .12);
}

/* TEXT */

.info-content {
  flex: 1;
}

.info-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #374151;
}

.info-content strong {
  color: #111827;
}

.highlight {
  color: #ff7b00;
  font-weight: 700;
}

/* RIGHT FORM */

.contact-box {
  width: 350px;
  background:
    linear-gradient(rgba(4, 68, 36, .92), rgba(2, 48, 24, .95)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1200&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  padding: 33px 20px;
  position: sticky;
  top: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .18);
}

/* FOREST */

.contact-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: url('https://svgshare.com/i/14M9.svg');
  background-size: cover;
  opacity: .16;
}

/* LEAF */

.contact-box::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -10px;
  width: 160px;
  height: 160px;
  background: url('https://pngimg.com/d/leaf_PNG3688.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .16;
}

/* FORM HEADER */

.form-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 35px;
}

.form-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
  color: #1f9c4d;
  font-size: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.form-header h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 5px;
}

.form-line {
  width: 100px;
  height: 4px;
  background: #ff9800;
  border-radius: 30px;
  margin: auto;
}

/* FORM */

.booking-section .form-group {
  position: relative;
  margin-bottom: 12px;
  z-index: 2;
}

.form-group i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #1f9c4d;
  font-size: 20px;
}

.form-control {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  padding: 0 22px 0 60px;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  color: #111827;
  transition: .3s;
}

.form-control:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
}

textarea.form-control {
  height: 126px;
  padding-top: 22px;
  resize: none;
}

/* BUTTON */

.submit-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff9800, #ff6d00);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: .4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .15);
  transition: .5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(255, 152, 0, .3);
}

/* RESPONSIVE */

@media(max-width:1200px) {

  .section-header h2 {
    font-size: 54px;
  }

  .section-header p {
    font-size: 20px;
  }

  .info-content p {
    font-size: 18px;
  }

}

@media(max-width:991px) {

  .booking-section {
    padding: 80px 0;
  }

  .booking-row {
    flex-direction: column;
  }

  .contact-box {
    width: 100%;
    position: relative;
    top: 0;
  }

  .section-header h2 {
    font-size: 42px;
  }

}

@media(max-width:767px) {

  .section-header h2 {
    font-size: 25px;
  }

  .section-header p {
    font-size: 16px;
  }

  .top-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .line {
    width: 50px;
  }

  .info-card {
    padding: 20px;
    gap: 16px;
    border-radius: 22px;
  }

  .info-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .info-content p {
    font-size: 15px;
  }

  .contact-box {
    padding: 35px 22px;
    border-radius: 28px;
  }

  .form-header h3 {
    font-size: 36px;
  }

  .form-control {
    height: 62px;
    font-size: 16px;
  }

  textarea.form-control {
    height: 120px;
  }

  .submit-btn {
    height: 66px;
    font-size: 20px;
  }

}



/* ........tbs.............. */


.tbsd .table-wrap {
  /* background:rgba(255,255,255,.8); */
  backdrop-filter: blur(12px);
  border-radius: 0;
  /* padding:25px; */
  overflow-x: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

/* TABLE */

.tbsd .distance-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 100%;
  overflow: hidden;
  border-radius: 13px;
}

/* HEAD */

.tbsd .distance-table thead {
  background: linear-gradient(135deg, #0b7d43, #1f9c4d);
}

.tbsd .distance-table thead th {
  color: #fff;
  padding: 19px 14px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.tbsd .distance-table thead th:last-child {
  border-right: none;
}

/* BODY */

.tbsd .distance-table tbody tr {
  transition: .3s;
  background: #fff;
}

.tbsd .distance-table tbody tr:nth-child(even) {
  background: #f7faf7;
}

.tbsd .distance-table tbody tr:hover {
  transform: scale(1.01);
  background: #eef8ef;
}

/* TD */

.tbsd .distance-table tbody td {
  padding: 14px 14px;
  font-size: 20px;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}

/* NUMBER */

.tbsd .number {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, #ff9800, #ff6d00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* CITY */

.tbsd .city-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tbsd .city-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #edf8ef;
  color: #1f9c4d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.tbsd .city-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

/* DISTANCE */

.tbsd .distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 50px;
  background: #edf8ef;
  color: #1f9c4d;
  font-size: 14px;
  font-weight: 700;
}

/* TIME */

.tbsd .time-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 15px;
  border-radius: 50px;
  background: #fff4e6;
  color: #ff7b00;
  font-size: 14px;
  font-weight: 700;
}

/* RESPONSIVE */

@media(max-width:1200px) {

  .tbsd .section-header h2 {
    font-size: 50px;
  }

}

@media(max-width:991px) {

  .tbsd .distance-section {
    padding: 80px 0;
  }

  .tbsd .section-header h2 {
    font-size: 40px;
  }

}

@media(max-width:767px) {

  .tbsd .section-header h2 {
    font-size: 30px;
  }

  .tbsd .top-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .tbsd .table-wrap {
    padding: 15px;
    border-radius: 22px;
  }

  .tbsd .distance-table thead th {
    font-size: 16px;
    padding: 18px;
  }

  .tbsd .distance-table tbody td {
    font-size: 15px;
    padding: 18px;
  }

  .tbsd .city-name {
    font-size: 18px;
  }

  .tbsd .distance-badge,
  .time-badge {
    font-size: 15px;
    padding: 10px 16px;
  }

}



/* ......booking page...... */

.booking-section_n {
  position: relative;
  padding: 145px 80px 30px;
  overflow: hidden;
  background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 29%)), url(../../assets/images/banner2.webp);
  background-size: cover;
  background-position: center;
}

/* CONTAINER */


/* ROW */

.booking-section_n .booking-row {
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

/* LEFT SIDE */

.booking-section_n .booking-left {
  flex: 1;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

/* TITLE */

.booking-section_n .booking-title {
  font-size: 25px;
  color: #fff;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 25px;
}

.booking-section_n .booking-title span {
  color: #ffcc29;
}

/* NOTICE */

.booking-section_n .notice-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 204, 41, .12);
  border: 1px solid rgba(255, 204, 41, .3);
  margin-bottom: 30px;
}

.booking-section_n .notice-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffcc29;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.booking-section_n .notice-box p {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

/* TABLE */

.booking-section_n .price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
}

.booking-section_n .price-table tr {
  background: rgba(255, 255, 255, .06);
  transition: .3s;
}

.booking-section_n .price-table tr:hover {
  background: rgba(255, 255, 255, .12);
}

.booking-section_n .price-table td {
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 10px;
  color: #fff;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.7;
}

/* LABEL */

.booking-section_n .label-cell {
  width: 34%;
  font-weight: 700;
  color: #ffcc29;
}

/* RIGHT */

.booking-section_n .booking-right {
  width: 430px;
  background: rgba(255, 255, 255, .96);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .3);
}

/* HEADER */

.booking-section_n .calendar-header {
  background: linear-gradient(135deg, #ffcc29, #ffb300);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-section_n .calendar-header button {
  width: 45px;
  height: 45px;
  border: none;
  background: rgba(255, 255, 255, .25);
  border-radius: 12px;
  color: #111;
  font-size: 20px;
  cursor: pointer;
  transition: .3s;
}

.booking-section_n .calendar-header button:hover {
  background: #fff;
}

.booking-section_n .month-year {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

/* WEEK */

.booking-section_n .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #1d1d1d;
}

.booking-section_n .weekdays div {
  padding: 8px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 14px;
}

/* DAYS */

.booking-section_n .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.booking-section_n .day {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
  background: #fff;
  font-weight: 600;
  padding: 8px 0px;
}

.booking-section_n .day:hover {
  background: #0b7d43;
  color: #fff;
}

.booking-section_n .empty {
  background: #f5f5f5;
  cursor: default;
}

.booking-section_n .active-date {
  background: #0b7d43;
  color: #fff;
}

.booking-section_n .today {
  background: #ff6d00;
  color: #fff;
}

/* FORM */

.booking-section_n .booking-form {
  padding: 25px;
}

.booking-section_n .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-section_n .form-group {
  margin-bottom: 18px;
}

.booking-section_n .form-control {
  width: 100%;
  height: 50px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 10px;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: .3s;
}

.booking-section_n .form-control:focus {
  border-color: #0b7d43;
}

/* BUTTON */

.booking-section_n .submit-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b7d43, #1f9c4d);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .4s;
}

.booking-section_n .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11, 125, 67, .25);
}

/* NOTE */

.booking-section_n .note {
  margin-top: 18px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.booking-section_n .note span {
  color: #0b7d43;
  font-weight: 700;
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .booking-section_n .booking-row {
    flex-direction: column;
  }

  .booking-section_n .booking-right {
    width: 100%;
  }

}

@media(max-width:767px) {

  .booking-section_n .booking-section {
    padding: 50px 0;
  }

  .booking-section_n .booking-left {
    padding: 22px;
  }

  .booking-section_n .booking-title {
    font-size: 28px;
  }

  .booking-section_n .notice-box {
    flex-direction: column;
  }

  .booking-section_n .notice-box p {
    font-size: 16px;
  }

  .booking-section_n .price-table td {
    font-size: 14px;
    padding: 14px;
  }

  .booking-section_n .month-year {
    font-size: 22px;
  }

  .booking-section_n .day {
    height: 55px;
    font-size: 15px;
  }

  .booking-section_n .form-grid {
    grid-template-columns: 1fr;
  }

}



.ss-info-wrap {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .95), rgba(255, 255, 255, .96)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1600&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
}

/* TOP LEAF */

.ss-info-wrap::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: url('https://pngimg.com/d/leaf_PNG3688.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .35;
}

/* BOTTOM TREE */

.ss-info-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: url('https://svgshare.com/i/14M9.svg');
  background-size: cover;
  opacity: .08;
}

/* CONTAINER */

.ss-container {
  width: 100%;
  max-width: 1350px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* HEADER */

.ss-top-head {
  text-align: center;
  margin-bottom: 60px;
}

.ss-small-line {
  width: 140px;
  height: 4px;
  background: #ff9800;
  margin: 20px auto;
  border-radius: 20px;
}

.ss-main-title {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  color: #101828;
  margin-bottom: 25px;
}

.ss-main-title span {
  color: #0c7c43;
}

.ss-para {
  max-width: 1100px;
  margin: auto;
  font-size: 16px;
  line-height: 1.9;
  color: #475467;
}

/* ROW */

.ss-main-row {
  display: flex;
  gap: 45px;
  align-items: flex-start;
}

/* IMAGE SIDE */

.ss-left-box {
  width: 38%;
}

.ss-img-box {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.ss-img-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: .5s;
}

.ss-img-box:hover img {
  transform: scale(1.05);
}

/* IMAGE BADGE */

.ss-img-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: #0c7c43;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
}

/* RIGHT SIDE */

.ss-right-box {
  width: 62%;
}

/* INFO CARD */

.ss-info-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(12, 124, 67, .12);
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

/* CARD TITLE */

.ss-card-title {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 35px;
  background: linear-gradient(to right, #edf7ef, #f7fbf8);
  border-bottom: 1px solid #e4e7ec;
}

.ss-title-icon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  background: #0c7c43;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.ss-card-title h3 {
  font-size: 20px;
  color: #0c7c43;
  font-weight: 800;
}

/* LIST */

.ss-list-area {
  padding: 15px 35px 30px;
}

/* ITEM */

.ss-list-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed #d0d5dd;
  transition: .3s;
}

.ss-list-item:last-child {
  border-bottom: none;
}

.ss-list-item:hover {
  transform: translateX(6px);
}

/* ICON */

.ss-point-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #edf7ef;
  color: #0c7c43;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* TEXT */

.ss-point-text {
  font-size: 14px;
  line-height: 1.8;
  color: #1d2939;
  font-weight: 500;
}

/* RESPONSIVE */

@media(max-width:1200px) {

  .ss-main-title {
    font-size: 48px;
  }

  .ss-para {
    font-size: 19px;
  }

  .ss-card-title h3 {
    font-size: 30px;
  }

  .ss-point-text {
    font-size: 20px;
  }

}

@media(max-width:991px) {

  .ss-main-row {
    flex-direction: column;
  }

  .ss-left-box,
  .ss-right-box {
    width: 100%;
  }

  .ss-main-title {
    font-size: 40px;
  }

}

@media(max-width:767px) {

  .ss-info-wrap {
    padding: 65px 0;
  }

  .ss-main-title {
    font-size: 30px;
  }

  .ss-para {
    font-size: 16px;
    line-height: 1.8;
  }

  .ss-card-title {
    padding: 20px;
  }

  .ss-card-title h3 {
    font-size: 22px;
  }

  .ss-title-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .ss-list-area {
    padding: 10px 20px 20px;
  }

  .ss-list-item {
    gap: 15px;
    padding: 18px 0;
  }

  .ss-point-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 16px;
  }

  .ss-point-text {
    font-size: 15px;
    line-height: 1.7;
  }

}




.sz-main-section {
  position: relative;
  padding: 26px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .95), rgba(255, 255, 255, .96)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

/* LEAF */

.sz-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: url('https://pngimg.com/d/leaf_PNG3688.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .25;
}

/* CONTAINER */

.sz-container {
  width: 100%;
  max-width: 1450px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ROW */

.sz-main-row {
  display: flex;
  gap: 35px;
  align-items: stretch;
}

/* IMAGE SIDE */

.sz-left-side {
  width: 33%;
}

.sz-image-box {
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.sz-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .5s;
}

.sz-image-box:hover img {
  transform: scale(1.05);
}

/* BADGE */

.sz-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #0c7c43;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
}

/* RIGHT SIDE */

.sz-right-side {
  width: 67%;
}

/* CARD */

.sz-card-wrap {
  background: rgba(255, 255, 255, .92);
  border-radius: 35px;
  border: 1px solid rgba(12, 124, 67, .12);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

/* TITLE */

.sz-card-title {
  background: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)),
    url('../../assets/images/bg.avif');
  background-size: cover;
  background-position: center;
  padding: 12px 30px 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sz-title-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  color: #0c7c43;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  min-width: 35px;
}

.sz-card-title h2 {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}

/* TABLE */

.sz-table-wrap {
  padding: 25px;
  overflow-x: auto;
}

.sz-table {
  width: 100%;
  border-collapse: collapse;
  /* min-width:850px; */
}

/* HEAD */

.sz-table thead tr {
  background: linear-gradient(135deg, #0c7c43, #1b5e20);
}

.sz-table thead th {
  color: #fff;
  padding: 13px 10px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  /* text-align:left; */
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.sz-table thead th:last-child {
  border-right: none;
}

/* BODY */

.sz-table tbody tr {
  background: #fff;
  transition: .3s;
}

.sz-table tbody tr:nth-child(even) {
  background: #f7faf8;
}

.sz-table tbody tr:hover {
  background: #edf7ef;
}

/* TD */

.sz-table tbody td {
  padding: 8px 15px;
  border-bottom: 1px solid #e4e7ec;
  font-size: 14px;
  color: #1d2939;
  vertical-align: middle;
  text-align: center;
}

/* TAG */

.sz-zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: #edf7ef;
  color: #0c7c43;
  font-weight: 500;
  font-size: 14px;
}

/* ROUND */

.sz-round {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.sz-morning {
  color: #ff9800;
}

.sz-evening {
  color: #1565c0;
}

/* ROUTE */

.sz-route {
  font-weight: 600;
  color: #344054;
}

/* SEAT */

.sz-seat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #0c7c43;
  font-size: 14px;
  font-weight: 800;
}

/* NOTE */

.sz-note-box {
  margin: 0 25px 30px;
  padding: 22px 25px;
  border-radius: 22px;
  background: #f7fbf8;
  border: 1px solid #d7eadc;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.sz-note-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: #0c7c43;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.sz-note-text {
  font-size: 14px;
  line-height: 1.7;
  color: #1d2939;
}

.sz-note-text span {
  color: #0c7c43;
  font-weight: 800;
}

/* RESPONSIVE */

@media(max-width:1200px) {

  .sz-card-title h2 {
    font-size: 32px;
  }

}

@media(max-width:991px) {

  .sz-main-row {
    flex-direction: column;
  }

  .sz-left-side,
  .sz-right-side {
    width: 100%;
  }

  .sz-image-box {
    height: 500px;
  }

}

@media(max-width:767px) {

  .sz-main-section {
    padding: 60px 0;
  }

  .sz-card -title {
    padding: 22px;
  }

  .sz-title-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 22px;
  }

  .sz-card-title h2 {
    font-size: 22px;
  }

  .sz-table-wrap {
    padding: 15px;
  }

  .sz-table thead th {
    font-size: 15px;
    padding: 16px;
  }

  .sz-table tbody td {
    font-size: 14px;
    padding: 16px;
  }

  .sz-note-box {
    margin: 0 15px 20px;
    padding: 18px;
  }

  .sz-note-text {
    font-size: 15px;
  }

}

p.ove {
  padding: 14px 44px;
}

section.tab {
  padding: 60px 0px;
}

.in_oc_c {
  width: 30%;
  height: 340px;
  float: inline-start;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
}

.wrp_ov_s p {
  font-size: 14px;
  margin-bottom: 21px;
}

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

.wrp_ov_s {
  background: #fff;
  padding: 33px 45px;
  border-radius: 24px;
  margin-bottom: 50px;
}

h5.sub_ty {
  margin-top: 13px;
  display: inline-block;
  color: #fff;
  background: #0c7c43;
  padding: 10px 10px;
  margin-bottom: 14px;
  border-radius: 7px;
}


section.bread_crumb {
  background: url('../../assets/images/bread.webp');
  padding: 209px 0px 57px;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

section.bread_crumb h1 {
  color: #dba85b;
  font-size: 42px;
  font-weight: 700;
}

ul.bread_c_lis li {
  color: #fff;
}

ul.bread_c_lis {
  display: flex;
  gap: 7px;
  justify-content: center;
}

ul.bread_c_lis li a {
  color: #fff;
  font-weight: 600;
}

ul.bread_c_lis li a.active {
  color: #d3a257;
}

/* ............about............ */

.contact-wild-section {
  padding: 44px 0;
  background: #f5f7f4;
  overflow: hidden;
}


.contact-wild-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 45px;
  align-items: start;
}

/* LEFT SIDE */

.contact-wild-section .section-title {
  margin-bottom: 25px;
}

.contact-wild-section .section-title span {
  color: #d89b2b;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.contact-wild-section .section-title h2 {
  font-size: 35px;
  color: #163832;
  line-height: 1.2;
  /* max-width:650px; */
  text-align: left;
}

.contact-wild-section .about-text {
  color: #666;
  line-height: 2;
  margin-bottom: 40px;
  font-size: 17px;
}

/* GALLERY */

.contact-wild-section .wild-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-wild-section .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  height: 250px;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.contact-wild-section .gallery-item.big {
  grid-row: span 2;
  height: 100%;
  min-height: 530px;
}

.contact-wild-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.contact-wild-section .gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
  z-index: 1;
}

.contact-wild-section .gallery-item:hover img {
  transform: scale(1.12) rotate(2deg);
}

.contact-wild-section .gallery-content {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 2;
  color: #fff;
}

.contact-wild-section .gallery-content h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-wild-section .gallery-content p {
  color: #e2e2e2;
}

/* RIGHT SIDE */

.right_br .contact-card {
  background: #163832;
  border-radius: 35px;
  padding: 40px;
  position: sticky;
  top: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
}

.right_br .contact-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -120px;
  right: -120px;
}

.right_br .contact-top {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  text-align: center;
}

.right_br .contact-top span {
  color: #ffb84d;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.right_br .contact-top h2 {
  color: #fff;
  font-size: 25px;
}

/* FORM */

.right_br .contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.right_br .input-box {
  position: relative;
}

.right_br .input-box input,
.right_br .input-box textarea {
  width: 100%;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  height: 65px;
  border-radius: 18px;
  padding: 0 22px 0 22px;
  color: #fff;
  font-size: 16px;
  transition: .4s;
}

.right_br .input-box textarea {
  height: 140px;
  padding-top: 20px;
  resize: none;
}

.right_br .input-box input:focus,
.right_br .input-box textarea:focus {
  border-color: #ffb84d;
  background: rgba(255, 255, 255, .12);
}

.right_br .input-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffb84d;
  font-size: 18px;
}

.right_br .textarea i {
  top: 28px;
  transform: none;
}

.right_br .input-box input::placeholder,
.right_br .input-box textarea::placeholder {
  color: #d5d5d5;
}

.right_br .submit-btn {
  height: 68px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffb84d, #ff8c00);
  color: #163832;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: .4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.right_br .submit-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 140, 0, .35);
}

.right_br .submit-btn i {
  transition: .4s;
}

.right_br .submit-btn:hover i {
  transform: translateX(6px);
}

/* INFO */

.right_br .info-strip {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.right_br .info-item {
  flex: 1;
  min-width: 180px;
  background: rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.right_br .info-item i {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #ffb84d;
  color: #163832;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .contact-wild-section .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .right_br .contact-card {
    position: relative;
    top: 0;
  }

}

@media(max-width:768px) {

  .contact-wild-section {
    padding: 80px 0;
  }

  .contact-wild-section .section-title h2 {
    font-size: 25px;
  }

  .contact-wild-section .wild-gallery {
    grid-template-columns: 1fr;
  }

  .contact-wild-section .gallery-item.big {
    min-height: 350px;
  }

  .contact-wild-section .gallery-item {
    height: 280px;
  }

  .contact-wild-section .contact-card {
    padding: 30px 22px;
  }

  .contact-wild-section .contact-top h2 {
    font-size: 32px;
  }
}

.list_s {
  display: flex;
  justify-content: space-between;
}

.list_ls h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.list_ls ul li {
  list-style-type: disc;
  color: #666;
  margin-bottom: 7px;
}

.list_ls ul {
  padding-left: 16px;
}


.sariska-sidebar {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  border: 1px solid #ececec;
  position: relative;
  margin-top: 56px;
}

/* TOP */

.sidebar-top {
  background:
    linear-gradient(135deg, #163832, #1f5248);
  padding: 18px 30px;
  position: relative;
  overflow: hidden;
}

.sidebar-top h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.leaf-shape {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  right: -60px;
  top: -60px;
}

/* LINKS */

.sidebar-links {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-links li {
  list-style: none;
}

.sidebar-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 22px;
  border-radius: 9px;
  text-decoration: none;
  color: #163832;
  background: #f7f9f8;
  border: 1px solid #edf0ef;
  transition: .4s;
  position: relative;
  overflow: hidden;
  font-size: 1px;
}

/* HOVER EFFECT */

.sidebar-links li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #163832, #214d45);
  transition: .5s;
  z-index: 0;
  color: #fff;
}

.sidebar-links li a:hover::before {
  width: 100%;
}

.sidebar-links li a span,
.sidebar-links li a i {
  position: relative;
  z-index: 2;
  transition: .4s;
}

.sidebar-links li a span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.sidebar-links li a i {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #163832;
  font-size: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

/* HOVER */

.sidebar-links li a:hover {
  transform: translateX(8px);
  border-color: #163832;
}

.sidebar-links li a:hover span {
  color: #fff;
}

.sidebar-links li a:hover i {
  background: #ffb84d;
  color: #163832;
  transform: rotate(-45deg);
}

/* ACTIVE ITEM */

.sidebar-links li:first-child a {
  background: linear-gradient(135deg, #ffb84d, #ff9800);
  border: none;
}

.sidebar-links li:first-child a span {
  /* color:#163832; */
}

.sidebar-links li:first-child a i {
  background: #fff;
}

/* MOBILE */

@media(max-width:768px) {

  .sidebar-top {
    padding: 24px 22px;
  }

  .sidebar-top h3 {
    font-size: 28px;
  }

  .sidebar-links {
    padding: 14px;
  }

  .sidebar-links li a {
    padding: 18px;
  }

  .sidebar-links li a span {
    font-size: 15px;
  }

}


.pck_wrp {
  padding: 42px 43px;
  border: 1px dashed #ff9b1a;
  margin: 55px 0px;
  background: #fff;
  border-radius: 19px;
}

section.bread_crumb:before {
  position: absolute;
  content: '';
  background: #00000099;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
}

section.bread_crumb .col-md-12 {
  position: relative;
  z-index: 3;
}





/* WRAPPER */

.tour-package-wrapper {
  padding: 40px 0;
}

/* CARD */

.modern-tour-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
  transition: .5s;
}

.modern-tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .15);
}

/* IMAGE */

.modern-tour-image {
  position: relative;
  overflow: hidden;
}

.modern-tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .8s;
}

.modern-tour-card:hover img {
  transform: scale(1.12);
}

.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
}

/* BADGE */

.tour-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 2;
  background: linear-gradient(135deg, #ffcc4d, #ff9900);
  color: #222;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.tour-badge.blue {
  background: linear-gradient(135deg, #2d7fff, #0047cc);
  color: #fff;
}

/* IMAGE CONTENT */

.tour-image-content {
  position: absolute;
  left: 35px;
  bottom: 100px;
  z-index: 2;
  color: #fff;
}

.tour-image-content span {
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffcc4d;
}

.tour-image-content h2 {
  font-size: 25px;
  line-height: 1;
  margin: 10px 0;
  font-weight: 800;
}

.tour-image-content p {
  font-size: 14px;
  font-weight: 600;
}

/* FEATURES */

.tour-image-features {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  gap: 10px;

  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 18px;
}

.tour-image-features div {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-image-features i {
  color: #ffcc4d;
}

/* CONTENT */

.modern-tour-content {
  padding: 20px 28px;
  position: relative;
}

.tour-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #1f4d1f;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  margin-bottom: 25px;
}

.modern-tour-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #222;
  font-weight: 600;
}

.modern-tour-content h5 {
  font-size: 18px;
  color: #2b7a2b;
  margin-bottom: 12px;
}

.modern-tour-content ul {
  padding: 0;
  margin: 0 0 10px;
  list-style: none;
}

.modern-tour-content ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 7px;
  color: #333;
  font-size: 14px;
  align-items: center;
}

.modern-tour-content ul li i {
  color: #2b7a2b;
}

.modern-tour-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 12px;
  font-size: 14px;
}

/* TAGS */

.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.tour-tags span {
  background: #eef5ea;
  color: #234923;
  padding: 12px 13px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 11px;
}

/* BOTTOM */

.tour-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.tour-rating {
  color: #ffb400;
  font-size: 14px;
}

.tour-rating span {
  color: #666;
  margin-left: 10px;
}

.tour-btn {
  min-width: 222px;
  height: 51px;
  font-size: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #234923, #122812);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 700;
  transition: .4s;
}

.tour-btn:hover {
  transform: translateY(-5px);
  color: #fff;
}

.tour-btn i {
  transition: .4s;
}

.tour-btn:hover i {
  transform: translateX(6px);
}

/* SIDE GALLERY */

.tour-side-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  height: 320px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .8s;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent);
}

.gallery-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;

  display: flex;
  gap: 15px;
  align-items: center;

  color: #fff;
}

.gallery-content i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #ffcc4d;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffcc4d;
}

.gallery-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.gallery-content p {
  margin: 0;
  color: #ddd;
  font-size: 14px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

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

}

@media(max-width:768px) {

  .tour-image-content h2 {
    font-size: 48px;
  }

  .modern-tour-content {
    padding: 30px 22px;
  }

  .modern-tour-content h3 {
    font-size: 32px;
  }

  .tour-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .tour-btn {
    width: 100%;
  }

  .tour-image-features {
    flex-wrap: wrap;
  }

}

.modern-tour-card.mt-4 {
  margin-top: 30px;
}


/* HOTEL CARD */

.luxury-hotel-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  background: #eeeeee40;
  border-radius: 30px;
  padding: 20px;
  border: 1px solid #e9ecef;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
  transition: .5s;
  position: relative;
  overflow: hidden;
  margin-top: 15px;
}

.luxury-hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

/* IMAGE */

.luxury-hotel-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
}

.luxury-hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.luxury-hotel-card:hover img {
  transform: scale(1.12);
}

/* OVERLAY */

.hotel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
}

/* BADGE */

.hotel-badge {
  position: absolute;
  top: 18px;
  left: 18px;

  background: linear-gradient(135deg, #ffcc4d, #ff9900);

  color: #222;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 700;

  z-index: 2;
}

/* CONTENT */

.luxury-hotel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TOP */

.hotel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.hotel-top h3 {
  font-size: 16px;
  color: #122812;
  margin-bottom: 14px;
  line-height: 1.2;
}

/* LOCATION */

.hotel-location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 14px;
}

.hotel-location i {
  color: #ff7a00;
}

/* PRICE */

.hotel-price {
  text-align: right;
  min-width: 130px;
}

.hotel-price span {
  color: #888;
  font-size: 12px;
  font-weight: 600;
}

.hotel-price h2 {
  font-size: 18px;
  color: #163832;
  margin-top: 5px;
}

/* TEXT */

.luxury-hotel-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 15px;
  font-size: 13px;
}

/* FEATURES */

.hotel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-bottom: 28px;
}

.hotel-features span {
  background: #eef5ea;
  color: #234923;
  padding: 5px 11px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: .4s;
  font-size: 11px;
}

.hotel-features span:hover {
  background: #163832;
  color: #fff;

  transform: translateY(-4px);
}

.hotel-features i {
  color: #ff9900;
}

/* BOTTOM */

.hotel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  flex-wrap: wrap;
}

/* RATING */

.hotel-rating {
  color: #ffb400;
  font-size: 13px;
}

.hotel-rating span {
  color: #666;
  margin-left: 10px;
  font-size: 15px;
}

/* BTN */

.hotel-btn {
  min-width: 176px;
  height: 41px;
  border-radius: 9px;
  background: linear-gradient(135deg, #163832, #0d221d);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  transition: .4s;
  font-size: 14px;
}

.hotel-btn:hover {
  transform: translateY(-4px);

  color: #fff;

  box-shadow: 0 20px 40px rgba(22, 56, 50, .25);
}

.hotel-btn i {
  transition: .4s;
}

.hotel-btn:hover i {
  transform: translateX(5px);
}

/* RESPONSIVE */

@media(max-width:991px) {

  .luxury-hotel-card {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

  .luxury-hotel-card {
    padding: 18px;
  }

  .hotel-top {
    flex-direction: column;
  }

  .hotel-price {
    text-align: left;
  }

  .hotel-top h3 {
    font-size: 28px;
  }

  .hotel-price h2 {
    font-size: 34px;
  }

  .hotel-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hotel-btn {
    width: 100%;
  }

}

section.hotel_pacakes {
  padding: 60px 0px;
  background: #ffff;
}


/* COMMON IMAGE SLIDER */

.common-image-slider {
  position: relative;
  width: 100%;
  height: 399px;
  overflow: hidden;
  border-radius: 30px;
  background: #f5f5f5;
}

/* SLIDES */

.common-slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition: .7s ease;
}

.common-slide.active {
  opacity: 1;
  visibility: visible;
}

.common-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BUTTON */

.common-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 55px;
  height: 55px;

  border: none;

  border-radius: 50%;

  background: rgba(255, 255, 255, .15);

  backdrop-filter: blur(10px);

  color: #fff;

  cursor: pointer;

  z-index: 10;

  transition: .4s;
}

.common-slider-btn:hover {
  background: #fff;
  color: #111;
}

.common-prev {
  left: 20px;
}

.common-next {
  right: 20px;
}

/* THUMBS */

.common-thumbs {
  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  bottom: 20px;

  display: flex;
  gap: 12px;

  z-index: 10;
}

.common-thumb {
  width: 90px;
  height: 65px;

  object-fit: cover;

  border-radius: 12px;

  cursor: pointer;

  border: 3px solid transparent;

  opacity: .7;

  transition: .4s;
}

.common-thumb.active {
  border-color: #fff;

  opacity: 1;

  transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:991px) {

  .common-image-slider {
    height: 500px;
  }

}

@media(max-width:768px) {

  .common-image-slider {
    height: 380px;
    border-radius: 18px;
  }

  .common-slider-btn {
    width: 42px;
    height: 42px;
  }

  .common-thumb {
    width: 55px;
    height: 45px;
  }

}


/* =========================
HOTEL DETAIL BOX
========================= */

.hotel-detail-box {
  padding: 80px 0;
  background: #f6f8fb;
}

.hotel-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

/* LEFT */

.hotel-detail-content {
  background: #fff;
  border-radius: 25px;
  padding: 21px;
  /* box-shadow:0 10px 40px rgba(0,0,0,.06); */
}

/* TAG */

.hotel-tag {
  display: inline-block;
  padding: 10px 22px;
  background: #0f766e;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 15px;
}

/* TITLE */

.hotel-detail-content h1 {
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #111827;
}

/* SHORT DESC */

.hotel-short-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
}

/* HIGHLIGHTS */

.hotel-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 18px;
  border-radius: 18px;
  background: #f8fafc;
  transition: .4s;
  font-size: 14px;
}

.highlight-item:hover {
  transform: translateY(-5px);
  background: #0f766e;
  color: #fff;
}

.highlight-item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0f766e;
  font-size: 20px;
}

/* DETAIL TEXT */

.hotel-detail-text h2 {
  font-size: 24px;
  margin-bottom: 4px;
  color: #111827;
}

.hotel-detail-text p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
}

/* FEATURES */

.hotel-detail-box .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-box {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  background: #f8fafc;
  transition: .4s;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.feature-box i {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 18px;
  background: #0f766e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-box h3 {
  font-size: 16px;
  margin-bottom: 0px;
  color: #111827;
}

.feature-box p {
  margin: 0;
  line-height: 1.7;
}

/* RIGHT CARD */

.hotel-booking-card {
  position: sticky;
  top: 120px;
  height: fit-content;
  background: #111827;
  /* padding:35px; */
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.hotel-price {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.hotel-price span {
  font-size: 16px;
  color: #ccc;
}

.hotel-booking-card ul {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.hotel-booking-card ul li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #ddd;
}

.hotel-booking-card ul li i {
  color: #14b8a6;
}

.hotel-book-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  background: #14b8a6;
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: .4s;
}

.hotel-book-btn:hover {
  background: #0f766e;
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:991px) {

  .hotel-detail-wrapper {
    grid-template-columns: 1fr;
  }

  .hotel-booking-card {
    position: relative;
    top: 0;
  }

}

@media(max-width:768px) {

  .hotel-detail-content {
    padding: 25px;
  }

  .hotel-detail-content h1 {
    font-size: 30px;
  }

  .hotel-detail-text h2 {
    font-size: 26px;
  }

  .hotel-highlights {
    grid-template-columns: 1fr;
  }

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

}


.h_llisdt p {
  margin-bottom: 10px;
}

ul.h_ils_wp li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #777;
  list-style: disc;
}

ul.h_ils_wp li b {
  color: #0f766e;
}

ul.h_ils_wp {
  padding-left: 18px;
}

.h_llisdt {
  margin-top: 10px;
  margin-bottom: 25px;
}

/* =========================
PACKAGE DETAIL PAGE
========================= */

.package-detail-area {
  /* padding:80px 0; */
  /* background:#f5f7fb; */
}

/* BOX */

.package-info-box,
.package-itinerary,
.package-amenities {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  margin-top: 15px;
}

/* TAG */

.package-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background: #0f766e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* TITLE */

.package-info-box h1 {
  font-size: 25px;
  margin-bottom: 20px;
  color: #111827;
}

.package-info-box p {
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
}

/* QUICK INFO */

.package-short-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 8px 4px;
  border-radius: 20px;
  background: #f8fafc;
  transition: .4s;
}

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

  color: #fff;
}

.info-card i {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: #fff;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ITINERARY */

.itinerary-title h2,
.package-amenities h2 {
  font-size: 25px;
  margin-bottom: 30px;
}

.itinerary-item {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.itinerary-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  cursor: pointer;
  background: #fff;
}

.itinerary-day {
  min-width: 90px;
  height: 45px;
  border-radius: 50px;
  background: #0f766e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.itinerary-head h3 {
  flex: 1;
  font-size: 20px;
  margin: 0;
}

.itinerary-icon {
  font-size: 20px;
  transition: .4s;
}

.itinerary-item.active .itinerary-icon {
  transform: rotate(180deg);
}

.itinerary-body {
  padding: 0 24px 24px;
  display: none;
}

.itinerary-item.active .itinerary-body {
  display: block;
}

.itinerary-body p {
  line-height: 1.9;
  color: #555;
}

.itinerary-body ul {
  padding-left: 18px;
}

.itinerary-body ul li {
  margin-bottom: 12px;
  color: #111827;
}

/* AMENITIES */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.amenity-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: #f8fafc;
  transition: .4s;
}

.amenity-box:hover {
  transform: translateY(-6px);
  background: #0f766e;
  color: #fff;
}

.amenity-box i {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: #fff;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* SIDEBAR */


/* RESPONSIVE */

@media(max-width:991px) {

  .package-sidebar {
    position: relative;
    top: 0;
  }

  .package-short-info {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px) {

  .package-info-box,
  .package-itinerary,
  .package-amenities {
    padding: 25px;
  }

  .package-info-box h1 {
    font-size: 30px;
  }

  .itinerary-head {
    flex-wrap: wrap;
  }

  .itinerary-head h3 {
    font-size: 20px;
  }

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

}

/* =========================
CONTACT ADDRESS SECTION
========================= */

.contact-address-section {
  padding: 90px 0;
  background: #f4f7fb;
}

/* WRAPPER */

.contact-address-form-box {
  background: #fff;
  padding: 70px;
  border-radius: 30px 0 0 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}

/* TAG */

.contact-address-tag {
  display: inline-block;
  padding: 10px 22px;
  background: #0f766e;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TITLE */

.contact-address-form-box h1 {
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #111827;
}

/* DESC */

.contact-address-form-box p {
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 45px;
  font-size: 16px;
}

/* INPUT */

.contact-address-input {
  margin-bottom: 28px;
}

.contact-address-input label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #111827;
}

.contact-address-input input,
.contact-address-input textarea {
  width: 100%;
  border: none;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  height: 62px;
  border-radius: 18px;
  padding: 0 22px;
  font-size: 15px;
  transition: .4s;
}

.contact-address-input textarea {
  height: 180px;
  resize: none;
  padding-top: 20px;
}

.contact-address-input input:focus,
.contact-address-input textarea:focus {
  border-color: #0f766e;
  outline: none;
  background: #fff;
}

/* BUTTON */

.contact-address-btn {
  width: 220px;
  height: 60px;
  border: none;
  border-radius: 16px;
  background: #0f766e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .4s;
}

.contact-address-btn:hover {
  background: #111827;
  transform: translateY(-4px);
}

/* RIGHT SIDE */

.contact-address-info {
  background: linear-gradient(135deg, #0f766e, #111827);
  padding: 70px 60px;
  border-radius: 0 30px 30px 0;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* MINI TITLE */

.contact-address-mini-title {
  color: #99f6e4;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* TITLE */

.contact-address-info h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}

/* DESC */

.contact-address-info p {
  color: #d1d5db;
  line-height: 1.9;
  margin-bottom: 50px;
}

/* ITEM */

.contact-address-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 35px;
}

/* ICON */

.contact-address-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  transition: .4s;
}

.contact-address-item:hover .contact-address-icon {
  background: #fff;
  color: #0f766e;
  transform: translateY(-5px);
}

/* TEXT */

.contact-address-text span {
  display: block;
  color: #99f6e4;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-address-text a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  word-break: break-word;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .contact-address-form-box {
    border-radius: 30px 30px 0 0;
    padding: 45px;
  }

  .contact-address-info {
    border-radius: 0 0 30px 30px;
    padding: 45px;
  }

}

@media(max-width:768px) {

  .contact-address-form-box h1 {
    font-size: 34px;
  }

  .contact-address-info h2 {
    font-size: 30px;
  }

  .contact-address-form-box,
  .contact-address-info {
    padding: 30px;
  }

  .contact-address-btn {
    width: 100%;
  }

}

.cancellation-policy {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 20px;
}

.cancellation-policy h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

.cancellation-policy ul {
  padding-left: 22px;
  margin: 20px 0;
}

.cancellation-policy ul li {
  margin-bottom: 15px;
}

.policy-content {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

.policy-content b {
  color: #000;
  font-weight: 700;
}

.policy-content a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.about-area.nws ul li p {
  margin: 0;
}

.about-area.nws ul li {
  margin-bottom: 6px;
  list-style: disc;
}

.about-area.nws ul {
  padding-left: 23px;
  margin-top: 10px;
}

.right_br.mt_n .sariska-sidebar {
  margin-top: 0px;
}

.package_ban {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
}

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

/* =========================
SARISKA MARQUEE
========================= */

.sariska-marquee-area {
  padding: 11px 0;
  background: #0f172a;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 90px;
  width: 100%;
}

/* FADE EFFECT */

.sariska-marquee-area::before,
.sariska-marquee-area::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.sariska-marquee-area::before {
  left: 0;
  background: linear-gradient(to right, #0f172a, transparent);
}

.sariska-marquee-area::after {
  right: 0;
  background: linear-gradient(to left, #0f172a, transparent);
}

/* WRAPPER */

.sariska-marquee {
  width: 100%;
  overflow: hidden;
}

/* TRACK */

.sariska-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: sariskaMarquee 35s linear infinite;
}

/* ITEM */

.sariska-marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 70px;
  white-space: nowrap;
}

.sariska-marquee-item i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #14b8a6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.sariska-marquee-item span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .3px;
}

/* ANIMATION */

@keyframes sariskaMarquee {

  0% {
    transform: translateX(0);
  }

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

}

/* HOVER STOP */

.sariska-marquee-area:hover .sariska-marquee-track {
  animation-play-state: paused;
}

/* MOBILE */

@media(max-width:768px) {

  .sariska-marquee-item {
    margin-right: 40px;
  }

  .sariska-marquee-item span {
    font-size: 14px;
  }

  .sariska-marquee-item i {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

}

a.logo img {
  width: 200px;
}

.footer-logo img {
  width: 263px;
}

.contact-wild-section .section-title h1 {
  font-size: 35px;
  color: #163832;
  line-height: 1.2;
  text-align: left;
}


/* =========================
SIDEBAR NEWS DESIGN
========================= */

.sidebar-news-box {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
  border: 1px solid #edf2f7;
  margin-top: 22px;
}

/* TITLE */

.sidebar-news-title {
  margin-bottom: 25px;
  position: relative;
}

.sidebar-news-title h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  padding-bottom: 14px;
  position: relative;
}

.sidebar-news-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  border-radius: 30px;
  background: #0f766e;
}

/* ITEM */

.sidebar-news-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  text-decoration: none;
  transition: .4s;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px dashed #d1d5db;
}

.sidebar-news-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

/* HOVER */

.sidebar-news-item:hover {
  transform: translateX(6px);
}

/* IMAGE */

.sidebar-news-image {
  width: 110px;
  min-width: 110px;
  height: 82px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.sidebar-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.sidebar-news-item:hover .sidebar-news-image img {
  transform: scale(1.1);
}

/* CONTENT */

.sidebar-news-content h4 {
  font-size: 17px;
  line-height: 1.5;
  color: #111827;
  margin-bottom: 10px;
  transition: .4s;
  font-weight: 600;
}

.sidebar-news-item:hover .sidebar-news-content h4 {
  color: #0f766e;
}

/* READ MORE */

.sidebar-news-content span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #0f766e;
  font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .sidebar-news-box {
    padding: 20px;
  }

  .sidebar-news-image {
    width: 90px;
    min-width: 90px;
    height: 72px;
  }

  .sidebar-news-content h4 {
    font-size: 15px;
  }

}

.error-message {
  display: block;
  color: #dc2626;
  font-size: 12px;
  margin-top: 5px;
}

.form-control.error {
  border: 1px solid #dc2626 !important;
}

.form-control.success {
  border: 1px solid #16a34a !important;
}

.day.error {
  border: 1px solid #dc2626;
}

.submit-btn {
  position: relative;
}

.submit-btn:disabled {
  opacity: .8;
  cursor: not-allowed;
}

.btn-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-loader i {
  font-size: 14px;
}

.loader-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
    margin-right: 6px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.blog-content p {
    margin-bottom: 12px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

.blog-content ul,
.blog-content ol {
    padding-left: 22px;
    margin-bottom: 12px;
}

.blog-content li {
    margin-bottom: 6px;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.blog-content table td,
.blog-content table th {
    border: 1px solid #ddd;
    padding: 8px;
}

.blog-content table th {
    background: #f5f5f5;
}

.blog-content figure {
    max-width: 100%;
}

.blog-content iframe {
    max-width: 100%;
}

.package-info-box {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* =========================
   IMAGES
========================= */
.package-info-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
    border-radius: 8px;
}

/* =========================
   HEADINGS
========================= */
.package-info-box h1,
.package-info-box h2,
.package-info-box h3,
.package-info-box h4 {
    margin: 20px 0 10px;
    font-weight: 600;
    color: #222;
}

/* =========================
   PARAGRAPH
========================= */
.package-info-box p {
    margin-bottom: 15px;
}

/* =========================
   LINKS
========================= */
.package-info-box a {
    color: #007bff;
    text-decoration: underline;
    word-break: break-word;
}

/* =========================
   LISTS
========================= */
.package-info-box ul,
.package-info-box ol {
    padding-left: 25px;
    margin: 15px 0;
}

.package-info-box ul li,
.package-info-box ol li {
    margin-bottom: 8px;
}

/* =========================
   TABLES (MOST IMPORTANT)
========================= */
.package-info-box table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 20px 0;
}

/* cells */
.package-info-box table th,
.package-info-box table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

/* header style */
.package-info-box table th {
    background: #f5f5f5;
    font-weight: 600;
}

/* IMPORTANT: remove block scroll behavior */
.package-info-box table {
    display: table !important;
}

/* =========================
   BLOCKQUOTE (if copied blogs)
========================= */
.package-info-box blockquote {
    border-left: 4px solid #007bff;
    padding: 10px 15px;
    margin: 20px 0;
    background: #f9f9f9;
    font-style: italic;
}
