/* ============================================================
   DESKTOP STYLES (base + desktop-only enhancements)
   ============================================================ */

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

@font-face {
    font-family:"Playfair Display" ;
    src: url(font/PlayfairDisplay-Bold.ttf);
}

img{
    max-width: 100%;
}

a{
    text-decoration: none;
}

.flx-wrp{
    flex-wrap: wrap;
}

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

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

.ft-12{
    font-size: 12px;
}

.ft-14{
    font-size: 14px;
}

.ft-15{
    font-size: 15px;
}

.ft-16{
    font-size: 16px;
}

.ft-18{
    font-size: 18px;
}

.ft-22{
    font-size: 22px;
}

.fw-500{
    font-weight: 500;
}

.fw-600{
    font-weight: 600;
}

.flx{
    display: flex;
}

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

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

.gp-10{
    gap: 10px;
}

.gp-20{
    gap: 20px;
}

.mt-10{
    margin-top: 10px;
}

.mt-20{
    margin-top: 20px;
}

.mt-30{
    margin-top: 30px;
}

.mt-50{
    margin-top: 50px;
}

.mt-8{
    margin-top: 8px;
}

.padt-23{
    padding-top: 23px;
}

.w-50{
    width: 50%;
}

/* nav-bar ka style hai */
.header {
    /* background-color: #e5faff; */
        padding: 8px 0px;
}

.mt-66{
    margin-top: 66px;
}

.rel{
    position: relative;
}

/* navbar */
.header { background: #fff; border-bottom: 2px solid #ddd; position: sticky; top: 0; z-index: 999; }

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 24px; */
  /* height: 66px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-group { display: flex; align-items: center; gap: 16px; }

.menu-list { display: flex; align-items: center; gap: 2px; list-style: none; }

.menu-item { position: relative; }

/* All nav links including anchor-dropdowns */
.menu-link,
.menu-drop-anchor {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: poppins;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

/* .menu-link:hover,
.menu-drop-anchor:hover { background: #eef2ff; color: #1a56db; } */
.menu-item-active > .menu-link {
  color: #1a56db;
  border-bottom: 2px solid #1a56db;
  border-radius: 0;
  padding-bottom: 8px;
}

/* Chevron icon */
.drop-icon {
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.2s;
}

.menu-item-open .drop-icon { transform: rotate(-135deg); margin-top: 3px; }

/* Dropdown panel */
.drop-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 195px;
  padding: 6px 0;
  z-index: 1000;
}

.drop-link {
  display: block;
  padding: 5px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.13s, color 0.13s;
}

.drop-link:hover {background: #eef2ff; color: #1A7141;
}

.menu-item-open > .drop-panel { display: block; }

/* Hamburger */
.toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.toggle-btn .bar {
  display: block;
  width: 22px; height: 2px;
  background: #222;
  border-radius: 2px;
  transition: all 0.25s;
}

.toggle-btn.toggle-open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.toggle-btn.toggle-open .bar:nth-child(2) { opacity: 0; }

.toggle-btn.toggle-open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile panel */
.mobile-panel {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 6px 0 14px;
}

.mobile-panel.mobile-open { display: flex; }

.mob-link,
.mob-drop-anchor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: background 0.13s;
}

.mob-link:hover,
.mob-drop-anchor:hover { background: #f0f4ff; color: #1a56db; }

.sub-panel {
  display: none;
  flex-direction: column;
  background: #f8f8f8;
  border-left: 3px solid #1a56db;
  margin: 0 24px;
  border-radius: 0 6px 6px 0;
}

.sub-panel.sub-open { display: flex; }

.sub-link {
  padding: 10px 18px;
  font-size: 13.5px;
  color: #444;
  text-decoration: none;
  transition: background 0.13s, color 0.13s;
}

.sub-link:hover { background: #eef2ff; color: #1a56db; }

.menu-item-active > .menu-link,
.menu-item-active > .menu-drop-anchor {
  border-bottom: 2px solid #1A7141;;
  color: #1A7141;
}

.sub-icon {
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.sub-icon.sub-icon-up { transform: rotate(-135deg); }

@media (min-width: 801px) {
.mobile-panel {
    display: none !important;
  }
}

.read-more::after {
  content: "→";
  font-size: 16px;
  transition: 0.3s;
}

/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 0.8s;
}

.slide.active {
  opacity: 1;
}

/* .overlay1 {
     position: absolute;
    width: 100%;
    height: 100%;
background: linear-gradient(262deg, rgb(255 255 255 / 23%) 56%, rgba(79, 118, 7, 1) 100%)
} */
.bg1{
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/hero-23apr.png);
}

.bg2{
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/hero-23apr2.png);
}

.bg3{
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/hero-23apr3.png);
}

/* Content */
.content {
    position: absolute;
    top: 43%;
    left: 11%;
    transform: translateY(-50%);
    color: white;
    width: 568px;
    max-width: 570px;
    z-index: 100;
    /* display: none; */
}

.content h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-family: playfair-display;
}

.content p {
  font-size: 16px;
  line-height: 1.6;
  font-family: poppins;
}

.best_plc {
    background: #EFFEE9;
    padding: 54px 0 46px 0;
    border-radius: 72px 72px 0 0;
    overflow: hidden;
    margin-top: -65px;
    position: relative;
}

.hdr{
     font-family: "Playfair Display";
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.hdr span{
     font-family: "Playfair Display";
}

.sup{
    color: #1A7141;
}

/* crousal */
.rcnt-card-sec1.owl-carousel{
    display: block;
    margin-top: 30px !important;
  }

.rcnt-card-sec1.owl-carousel .owl-nav{
   display: block;
    position: absolute;
    top: -89px;
    right: 0px;
    width: 60px;
    width: 162px;
    border-radius: 40px;
    padding: 25px 20px;
  }

.rcnt-card-sec1 .owl-nav .owl-prev {
    position: absolute;
    right: 78px;
    top: 40%;
    transform: translateY(-50%);
}

.rcnt-card-sec1 .owl-nav .owl-next {
       position: absolute;
    right: 7px;
    top: 40%;
    transform: translateY(-50%);
}

.rcnt-card-sec1 .owl-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    /* border: 8px solid #F5F5F5 !important; */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* background: #fff !important; */
}

.rcnt-card-sec1.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #ffffff !important;
    color: #fff !important;
    border: none !important;
}

.img-div {
    position: relative;
}

.dest-img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cntst {
    padding: 10px 15px 15px 15px;
    background-color: #ffff;
    border-radius: 0 0 14px 14px;
}

/* .mn-sd {
    margin-top: 60px;
} */
.read-more {
    color: #1A7141;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0px;
    cursor: pointer;
}

.best-timesd.owl-carousel{
    display: block;
    margin-top: 30px !important;
  }

.best-timesd.owl-carousel .owl-nav{
   display: block;
    position: absolute;
    top: -89px;
    right: 0px;
    width: 60px;
    width: 162px;
    border-radius: 40px;
    padding: 25px 20px;
  }

.best-timesd .owl-nav .owl-prev {
    position: absolute;
    right: 78px;
    top: 40%;
    transform: translateY(-50%);
}

.best-timesd .owl-nav .owl-next {
       position: absolute;
    right: 7px;
    top: 40%;
    transform: translateY(-50%);
}

.best-timesd .owl-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    /* border: 8px solid #F5F5F5 !important; */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* background: #fff !important; */
}

.best-timesd.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #ffffff !important;
    color: #fff !important;
    border: none !important;
}

.best-timesd.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.pkg-sdr.owl-carousel{
    display: block;
    margin-top: 30px !important;
  }

.pkg-sdr.owl-carousel .owl-nav{
   display: block;
    position: absolute;
    top: -89px;
    right: 0px;
    width: 60px;
    width: 162px;
    border-radius: 40px;
    padding: 25px 20px;
  }

.pkg-sdr .owl-nav .owl-prev {
    position: absolute;
    right: 90px;
    top: 40%;
    transform: translateY(-50%);
}

.best-timesd .owl-nav .owl-next {
       position: absolute;
    right: -2px;
    top: 40%;
    transform: translateY(-50%);
}

.best-timesd .owl-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    /* border: 8px solid #F5F5F5 !important; */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* background: #fff !important; */
}

.best-timesd.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #ffffff !important;
    color: #fff !important;
    border: none !important;
}

.attr {
    position: relative;
}

/* .attr::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 202px;

    width: 84%;
    height: 21px;
    height: 121%;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(img/spin.png);

    background-repeat: no-repeat;
} */
.attr::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);

    width: 84%;
    height: 121%;
    border-radius: 12px;

    background-image: url('https://images.emtcontent.com/tourism/jharkhand-img/spin.png');
    background-repeat: no-repeat;
    /* background-position: center; */
    background-size: cover;
}

/* .fest-sd div:nth-child(even) {
    background-color: #E0FFBE;
} */
.attr-sd.owl-carousel{
    display: block;
    margin-top: 30px !important;
  }

.attr-sd.owl-carousel .owl-nav{
   display: block !important;
    position: absolute;
    top: -89px;
    right: 0px;
    width: 60px;
    width: 162px;
    border-radius: 40px;
    padding: 25px 20px;
  }

.attr-sd .owl-nav .owl-prev {
    position: absolute;
    right: 93px;
    top: 43%;
    transform: translateY(-50%);
}

.attr-sd .owl-nav .owl-next {
       position: absolute;
    right: 19px;
    top: 40%;
    transform: translateY(-50%);
}

.attr-sd.owl-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    /* border: 8px solid #F5F5F5 !important; */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* background: #fff !important; */
}

.attr-sd.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #ffffff !important;
    color: #fff !important;
    border: none !important;
}

.pkg-sdr.owl-carousel{
    display: block;
    margin-top: 30px !important;
  }

.pkg-sdr.owl-carousel .owl-nav{
   display:block !important;
    position: absolute;
    top: -89px;
    right: 0px;
    width: 60px;
    width: 162px;
    border-radius: 40px;
    padding: 25px 20px;
  }

.pkg-sdr .owl-nav .owl-prev {
    position: absolute;
    right: 90px;
    top: 43%;
    transform: translateY(-50%);
}

.pkg-sdr .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 42%;
    transform: translateY(-50%);
}

.pkg-sdr.owl-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    /* border: 8px solid #F5F5F5 !important; */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* background: #fff !important; */
}

.pkg-sdr.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #ffffff !important;
    color: #fff !important;
    border: none !important;
}

.flt-sd.owl-carousel .owl-nav{
   display: none !important;
    /* position: absolute;
    top: -89px;
    right: 0px;
    width: 60px;
    width: 162px;
    border-radius: 40px;
    padding: 25px 20px;
    background-color: #ffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08); */
  }

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
}

.author-label {
    font-size: 12px;
    color: #777777;
}

.testi-sd.owl-carousel{
    display: block;
    margin-top: 30px !important;
    width: 84%;
  }

.testi-sd.owl-carousel .owl-nav{
   display: none;
    position: absolute;
    top: -89px;
    right: 0px;
    width: 60px;
    width: 162px;
    border-radius: 40px;
    padding: 25px 20px;
    background-color: #ffff;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  }

.testi-sd .owl-nav .owl-prev {
    position: absolute;
    right: 90px;
    top: 40%;
    transform: translateY(-50%);
}

.testi-sd .owl-nav .owl-next {
       position: absolute;
    right: -2px;
    top: 40%;
    transform: translateY(-50%);
}

.testi-sd .owl-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    /* border: 8px solid #F5F5F5 !important; */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* background: #fff !important; */
}

.hotel-sd.owl-carousel .owl-item img{
    height: 315px;
    object-fit: cover;
}

.pkg-sdr.owl-carousel .owl-item img{
    /* height: 315px; */
    border-radius: 13px;
}

.testi-sd.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #ffffff !important;
    color: #fff !important;
    border: none !important;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    /* border-radius: 20px; */
    overflow: hidden;
    justify-content: center;
    margin:0 0 0px 0;
}

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

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    justify-content: center;
    display: none;
}

.hero-title-pill {
    background: rgba(20, 30, 30, 0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    padding: 20px 50px;
    border-radius: 50px;
}

.logo-wrap {
    width: 85%;
    display: flex;
    align-items: center;
}

/* Card */
.info-card {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 320px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Heading */
.info-card h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.info-card h2 span {
  color: #1b7f4c;
}

/* Subheading */
.info-card h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

/* Text */
.info-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* LEFT STRIP */
.side-stp::before {
  content: "";
 position: absolute;
    top: 88px;
    left: 105px;
    width: 16px;
    height: 90%;
background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);

}

/* RIGHT STRIP */
.side-stp::after {
  content: "";
  position: absolute;
  top: 88px;
    right: 105px;
    width: 20px;
    height: 100%;
  height: 90%;
  border-radius: 12px;
  background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/hathi-right.png);

}

.strip-1{
    position: relative;
      margin-top: 66px;
    padding: 30px 0 0 0;

}

.strip-1::before {
    content: "";
    position: absolute;
    top: -32px;
    right: -31px;
    width: 107%;
    height: 21px;
    /* height: 100%; */
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/top-hathi.png);
}

.best-timesd::after {
    content: "";
    position: absolute;
    bottom: -51px;
    right: -44px;
    width: 108%;
    height: 21px;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
}

.cntst-1{
    padding: 10px 15px 15px 15px;
    background-color: #EFFEE9;
    border-radius: 0 0 14px 14px;
}

.bg-spin{
    position: relative;
    padding: 2rem 0 0.5rem;
}

/* .bg-spin::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(img/ckkar.png);
    background-repeat: no-repeat;
    background-size: cover;} */
.flt-sec{
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/idel-flight-jharkhand.png);
    padding-bottom: 40px;
}

.flt-cta{
   color: #1A7141;
   font-size: 15px;
   text-decoration: none;
   font-weight: 500;
}

.flt-card{
    /* background-image: url(img/bg-img-flight-crd.png); */
    /* border-radius: 16px;
    background-color: #F1F5EB;
        height: 245px; */
}

.flt-dtl {
    padding: 15px;
    margin-top: 20px;
    width: 100%;
    margin: 10px auto 0;
    border-radius: 12px;
    background-color: #fff;
    position: relative;
}

.fltw{
    border-radius: 16px 16px 0 0;
    display: none !important;
}

.flt-icn{
position: relative;
width: 30%;

}

.flt-icn::after {
    content: "";
    width: 100%;
height: 1px;
    border-bottom: 1px dotted #b0aeae;
    position: absolute;
    right: 0;
    top: 34px;
}

.flt-icn{
    width: 45px !important;
    height: 50px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
}

.line {
    position: absolute;
    top: 39px;
    left: 30%;
    border-bottom: 3px dotted #BFCABA66;
    width: 43%;
    z-index: 0;
}

.book-btn {
    background: #2e7d32;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 44%;
    margin-top: 15px;
    letter-spacing: 0.2px;
}

.btn-div{
    display: flex;
    justify-content: flex-start;
}

.book_slide .cnt {
    font-size: 13px;
    padding: 8px 11px;
    border-radius: 13px;
    background: #FFF;
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 89%;
    transform: translateX(-50%);
}

.book_slide .btm_str {
    margin-top: 10px;
}

.book_slide {
    display: block;
    border-radius: 13px;
    overflow: hidden;
    position: relative;
    max-height: 324px;
    color: #000;
}

.hotel-sec{
    padding: 30px 0;
}

.hotliday-sec {
    background-color: #EFFEE9;
    padding: 45px 0px;
}

.card {
    /* width: 260px; */
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
    border-radius: 13px !important;
    display: block;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 13px !important;
}

.card-title {
    font-size: 20px;
    font-weight: 700;

    letter-spacing: -0.2px;
    color: #003B05;
    font-family: "Poppins";
    margin-top: 15px;
}

.clmtsd{
    position: relative;
    padding: 30px 0 0 0;
}

.clmtsd::before {
    content: "";
    position: absolute;
    top: -23px;
    left: -56px;
    width: 16px;
    height: 119%;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
}

.clmtsd::after {
    content: "";
    position: absolute;
    top: -25px;
    right: -40px;
    width: 16px;
    height: 100%;
    height: 120%;
    border-radius: 12px;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
}

.side-b{
    position: relative;
}

.side-b::before {
    content: "";
    position: absolute;
    top: -155px;
    right: -56px;
    width: 20px;
    height: 155%;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/hathi-right.png);
}
.strip-1::before {
    content: "";
    position: absolute;
    top: -32px;
    right: -42px;
    width: 108%;
    height: 21px;
    /* height: 100%; */
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/top-hathi.png);
}
.card-title1 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
    color: #fff;
}

.card-price {
    font-size: 13.5px;
    font-weight: 400;
    color: #e0e0e0;
    letter-spacing: 0.1px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 16px 18px;
    background: linear-gradient(to top, rgb(0 0 0 / 65%) 0%, rgb(0 0 0 / 32%) 55%, transparent 100%);
    color: #ffffff;
    border-radius: 0 0 13px 13px;
}
.mn-sd1{
    background-color: #EFFEE9;
}

/* .strips{
     background-color: #EFFEE9;
} */
.why-bk {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.wy-card{
    width: 33%;
    background-color: #F7FAF4;
    border-radius: 18px;
    padding: 36px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-book-sys{
    padding: 40px 0;
}

.traverlls{
       background-color: #EFFEE9;
     padding: 40px 0;
}

.para {
    font-size: 30px;
    color: #003B05;
    font-weight: 700;
}

.testi{
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    background-color: #ffffff;
    border-radius: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #d6eedd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #2e6b45;
    flex-shrink: 0;
    border: 2px solid #b2d9c0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ratingsc{
    width: 20%;
}

.hotel-sd{
    width: 80%;
    /* padding-left: 40px; */
}

.testi-sd.owl-carousel{
    display: block;
    margin-top: 30px !important;
    width: 84%;
  }

.testi-sd.owl-carousel .owl-nav{
   display: none;
    position: absolute;
    top: -89px;
    right: 0px;
    width: 60px;
    width: 162px;
    border-radius: 40px;
    padding: 25px 20px;
    background-color: #ffff;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  }

.testi-sd .owl-nav .owl-prev {
    position: absolute;
    right: 90px;
    top: 40%;
    transform: translateY(-50%);
}

.testi-sd .owl-nav .owl-next {
       position: absolute;
    right: -2px;
    top: 40%;
    transform: translateY(-50%);
}

.testi-sd .owl-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    /* border: 8px solid #F5F5F5 !important; */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* background: #fff !important; */
}

.testi-sd.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #ffffff !important;
    color: #fff !important;
    border: none !important;
}

.actht{

    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/idel-flight-jharkhand.png);
    /* padding-bottom: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; */

}

.season-card {
    background-color: #ffffff;
    border: 2px solid #c8e6d0;
    border-radius: 16px;
    padding: 16px 28px 16px 28px;
   width: 32%;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* .side-stpab{
    border: 10px solid;
border-image: url("img/Hathi1.png") 30 stretch;
} */
.icon-emoji img{
    width: 55px;
    height: 55px;
}

.blogs {
    padding: 40px 0;
    position: relative;
    padding-bottom: 25rem;
    margin-bottom: 30px;
}

/* .blogs::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 202px;

    width: 84%;
    height: 21px;
    height: 100%;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(img/spin.png);

    background-repeat: no-repeat;
} */
.blogs::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg); /* dono axis center */
  width: 84%;
  height: 100%;
  border-radius: 12px;
  background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/spin.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center; /* ✅ yahi missing tha */
  z-index: 0;
  pointer-events: none;
}

.blog-card {
    position: relative;
    cursor: pointer;
    margin-bottom: 30px;
}

.blog-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    height: 260px;
}

.blog-body {
    position: relative;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 18px 20px 22px;
    margin: -60px 10px 25px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.blogs-sd.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .jharkhand-logo { */
    /* margin: 0 auto; */
    /* z-index: 10; */
    /* position: absolute; */
    /* position: absolute; */
    /* top: 77%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
/* } */
.jharkhand-logo {
    width: 40%;
    height: 50px;
    margin: 0;
    z-index: 10;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
}

.blog-link{
    color: #1A7141;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
}

.commute {
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/idel-flight-jharkhand.png);
    padding-bottom: 40px;
    padding-top: 29px;
}

.travel-crd{
        background-color: #e8f5ef;
    border-radius: 16px;
    padding: 28px 24px;
    width: 32%;
}

.travel-crd-sec{
    justify-content: flex-start;
}

footer {
    background-color: #edf7e6;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.content1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    max-width: 444px;
    min-width: max-content;
}





.content1 h1 {
    /* font-size: 42px;
    margin-bottom: 15px;
    font-family: "playfair-display"; */
        font-family: "Playfair Display";
    font-size: 46px;
    line-height: 1.12;
    margin-bottom: 14px;
}

.nei::after {
    content: "";
    position: absolute;
    bottom: -51px;
    right: -44px;
    width: 108%;
    height: 21px;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
}

.nei-sec{

    background: #EFFEE9;
    padding: 54px 0 112px 0;
    border-radius: 72px 72px 0 0;
    overflow: hidden;
    margin-top: -65px;
    position: relative;

}

.nei-stp::before {
    content: "";
    position: absolute;
    top: 88px;
    left: 105px;
    width: 16px;
    height: 56%;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
}

.nei-stp::after {
    content: "";
    position: absolute;
    top: 88px;
    right: 105px;
    width: 16px;
    height: 55%;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
}

.nei::before {
    content: "";
    position: absolute;
    top: -35px;
    right: -44px;
    width: 108%;
    height: 21px;
    /* height: 100%; */
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
}

.strip-nei {
    position: relative;
    margin-top: 66px;
    padding: 30px 0 30px 0;
}

.cities-crd{
    width: 35%;

}

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

.cities-cnt {
    width: 62%;
    background-color: #EFFEE9;
    padding: 8px 8px 8px 20px;
    border-radius: 12px;
}

.cites-section{
    background-color: #F1F5EF;
    padding: 40px 0;
}

/* ── Top two-column grid ── */
.jh-top {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      align-items: start;
      margin-bottom: 32px;
    }

.jh-col {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

/* ── Body text ── */
.jh-text {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.85;
      color: #1a2e1c;
    }

/* ── Images ── */
.jh-img {
      width: 100%;
      border-radius: 14px;
      overflow: hidden;
      display: block;
      background: #8aab8e;
    }

.jh-img-waterfall { height: 260px; }

.jh-img-palace    { height: 245px; }

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

/* ── Bottom three-image row ── */
.jh-bottom {
      display: grid;
      grid-template-columns: 1fr 1.6fr 1fr;
      gap: 20px;
    }

.jh-img-bottom {
      height: 220px;
      border-radius: 14px;
      overflow: hidden;
      background: #8aab8e;
    }

.best_plcaab {
    background: #EFFEE9;
    padding: 54px 0 126px 0;
    border-radius: 72px 72px 0 0;
    overflow: hidden;
    margin-top: -65px;
    position: relative;
}

.abt::after {
    content: "";
    position: absolute;
    bottom: -73px;
    right: -26px;
    width: 107%;
    height: 21px;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/top-hathi.png);
}

.abtc::after {
    content: "";
    position: absolute;
    bottom: -73px;
    right: -42px;
    width: 108%;
    height: 21px;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/bottom-hathi.png);
}

.abtc::before {
    content: "";
    position: absolute;
    top: -32px;
    right: -40px;
    width: 107%;
    height: 21px;
    /* height: 100%; */
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/top-hathi.png);
}

.travehathi{
    position: relative;
    margin-top: 66px;
    padding: 30px 0 0 0;
}

.side-b::after {
    content: "";
    position: absolute;
    bottom: -88px;
    right: -56px;
    width: 109%;
    height: 21px;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/bottom-hathi.png);
}

.icon-emoji1 img {
    width: 44px;
    height: 44px;
}

.side-stpab{
    position: relative;
}

.side-stpab::before {
    content: "";
    position: absolute;
    top: -23px;
    left: -56px;
    width: 16px;
    height: 111%;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
}

.side-stpab::after {
    content: "";
    position: absolute;
    top: -25px;
    right: -56px;
    width: 20px;
    height: 100%;
    height: 111%;
    border-radius: 12px;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/hathi-right.png);
}

.travehathi::before {
    content: "";
    position: absolute;
    top: -23px;
    left: -56px;
    width: 16px;
    height: 118%;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
}

.btm_str p{
    font-weight: 600;
    font-size: 14px;
}

.cities-cnt p{
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
}

.travehathi::after {
    content: "";
    position: absolute;
    top: -23px;
    right: -56px;
    width: 20px;
    height: 118%;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/hathi-right.png);
}

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

.footer-copy {
    font-size: 13.5px;
    color: #3a3a3a;
}

.blogs{
    background-color: #fff;
}

.blogs-sd.owl-carousel{
    display: block;
    margin-top: 30px !important;
  }

.blogs-sd.owl-carousel .owl-nav{
   display: block !important;
    position: absolute;
    top: -89px;
    right: 0px;
    width: 60px;
    width: 162px;
    border-radius: 40px;
    padding: 25px 20px;
    background-color: #ffff;
    /* box-shadow: 0 6px 18px rgba(0, 0, 0, .08); */
  }

.blogs-sd .owl-nav .owl-prev {
    position: absolute;
    right: 90px;
    top: 43%;
    transform: translateY(-50%);
}

.blogs-sd .owl-nav .owl-next {
       position: absolute;
    right: 13px;
    top: 40%;
    transform: translateY(-50%);
}

.blogs-sd.owl-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    /* border: 8px solid #F5F5F5 !important; */
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* background: #fff !important; */
}

.blogs-sd.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #ffffff !important;
    color: #fff !important;
    border: none !important;
}

.big-sld {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.about {
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/aabout-us-page.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 743px;
}

.abt-cnt {
    width: 35%;
    padding: 64px 0 0px 0;
}

.abt-cnt p {
    color: #000;
    font-size: 15px;
    margin-top: 25px;
    font-weight: 500;
}

.w-30{
    width: 30%;
}

.flt{
    padding: 40px 0;
}

.flt{
    padding: 40px 0 0 0;
}
.fe-curve{padding:56px 0 133px 0;margin-bottom:0;position:relative;}

/* ===== Enhanced footer ===== */
footer{
    background-color:#edf7e6;
    padding:0;
    display:block;
    flex-wrap:initial;
    gap:0;
}

.footer-top{
    max-width:1200px;
    width:90%;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:40px;
    padding:48px 0 36px;
}

.footer-brand-col .footer-logo{
    height:52px;
    width:auto;
    margin-bottom:16px;
}

.footer-about{
    font-size:14px;
    line-height:1.7;
    color:#41493E;
    max-width:320px;
    margin-bottom:18px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex !important;
    align-items:center;
    justify-content:center ;
    background:#1a4d2e;
    color:#fff;
    transition:background .2s ease,transform .2s ease;
}

.footer-social a:hover{
    background:#2e7d32;
    transform:translateY(-2px);
}

.footer-social a svg{fill:#ffffff;}

.footer-head{
    font-size:16px;
    font-weight:600;
    color:#1a4d2e;
    margin-bottom:16px;
}

.footer-col a{
    display:block;
    font-size:14px;
    color:#41493E;
    padding:6px 0;
    transition:color .2s ease;
}

.footer-col a:hover{
    color:#2e7d32;
}

.footer-bottom{
    border-top:1px solid #cfe3c2;
    padding:22px 0;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    /* max-width:1200px; */
    /* width:90%;
    margin:0 auto; */
}

.footer-copy{
    font-size:13.5px;
    color:#3a3a3a;
}

.footer-legal{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
    display: none;
}

.footer-legal a{
    font-size:13.5px;
    color:#3a3a3a;
    transition:color .2s ease;
}

.footer-legal a:hover{
    color:#2e7d32;
}

/* reveal on scroll */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s cubic-bezier(.2,.7,.3,1),transform .7s cubic-bezier(.2,.7,.3,1);}

.reveal.in-view{opacity:1;transform:none;}

/* neutral loading bg so cards never flash dark before images load */
.card,.blog-card,.blog-img-wrap,.rcnt-card .img-div{background-color:#eef3ea;}

/* ensure transparent sections render on white, not the dark backdrop */
html,body{background-color:#ffffff;overflow-x:hidden;}

/* blog title (card is a link – override default link colour) */
.blog-card{color:inherit;}

.blog-title{color:#14361f;font-size:18px;font-weight:600;line-height:1.4;text-wrap:pretty;}

.blog-card:hover .blog-title{color:#1A7141;}

/* card hover polish */
.img-div{overflow:hidden;border-radius:10px 10px 0 0;}

.rcnt-card,.item.book_slide{transition:transform .3s ease,box-shadow .3s ease;}

/* .rcnt-card:hover,.item.book_slide:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(0,0,0,.12);} */
.dest-img,.item.book_slide img{transition:transform .45s ease;}

.rcnt-card:hover .dest-img,.item.book_slide:hover img{transform:scale(1.06);}

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

.card:hover img{transform:scale(1.06);}

.blog-card{transition:transform .3s ease;}

.blog-card:hover{transform:translateY(-4px);}

.blog-img-wrap img{transition:transform .45s ease;}

.blog-card:hover .blog-img-wrap img{transform:scale(1.06);}

/* hero slide indicators */
.slider-dots{position:absolute;bottom:26px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:5; display: none;}

.slider-dots .s-dot{width:11px;height:11px;border-radius:50%;background:rgba(255,255,255,.5);border:1px solid rgba(255,255,255,.85);cursor:pointer;transition:all .3s ease;}

.slider-dots .s-dot.active{background:#fff;width:28px;border-radius:6px;}

/* ============ FESTIVALS & EVENTS PAGE ============ */
.fe-page{background:#ffffff;}

.mb-50{margin-bottom:50px;}

.mt-40{margin-top:40px;}

/* hero */
.fe-hero{position:relative;}

.fe-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,40,22,.72) 0%,rgba(10,40,22,.35) 55%,rgba(10,40,22,.15) 100%);}

.fe-hero .content1{z-index:2;max-width:640px;min-width:0;width:82%;left:8%;transform:translateY(-50%);text-align:left;}

.fe-hero-kicker{display:inline-block;font-size:13px;letter-spacing:2px;text-transform:uppercase;color:#f4c86a;font-weight:600;margin-bottom:12px;}

.fe-hero .content1 h1{font-family:"Playfair Display";font-size:46px;line-height:1.12;margin-bottom:14px;}

.fe-hero-sub{font-size:17px;line-height:1.6;color:#eef3ea;max-width:520px;}

/* intro */
.fe-intro{max-width:840px;margin-left:auto;margin-right:auto;text-align:center;}

.fe-intro p{font-size:16px;line-height:1.85;color:#41493E;text-wrap:pretty;}

/* timeline */
.fe-timeline{display:flex;gap:0;justify-content:space-between;position:relative;flex-wrap:wrap;}

.fe-timeline::before{content:"";position:absolute;top:14px;left:6%;right:6%;height:2px;background:repeating-linear-gradient(90deg,#cfe0c4 0 8px,transparent 8px 16px);z-index:0;}

.fe-tl-item{position:relative;z-index:1;flex:1;min-width:120px;text-align:center;padding:0 6px;}

.fe-tl-item::before{content:"";display:block;width:14px;height:14px;border-radius:50%;background:#1A7141;margin:8px auto 14px;border:3px solid #fff;box-shadow:0 0 0 2px #1A7141;}

.fe-tl-hot::before{background:#e0902a;box-shadow:0 0 0 2px #e0902a;width:18px;height:18px;margin-top:6px;}

.fe-tl-month{display:block;font-size:12px;font-weight:600;color:#8a9183;letter-spacing:.5px;}

.fe-tl-name{display:block;font-family:"Playfair Display";font-size:16px;color:#14361f;margin-top:2px;}

.fe-tl-hot .fe-tl-name{color:#c9781b;}

/* feature - Shravani Mela */
.fe-feature{display:grid;grid-template-columns:1.05fr 1fr;background:#0e3b22;border-radius:24px;overflow:hidden;box-shadow:0 24px 60px rgba(14,59,34,.28);}

.fe-feat-img{position:relative;min-height:440px;background:#0e3b22;}

.fe-feat-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}

.fe-feat-text{padding:48px 46px;color:#fff;display:flex;flex-direction:column;justify-content:center;}

.fe-ribbon{display:inline-block;align-self:flex-start;white-space:nowrap;background:#e0902a;color:#fff;font-size:12.5px;font-weight:600;letter-spacing:.6px;padding:7px 15px;border-radius:30px;margin-bottom:18px;}

.fe-feat-text h2{font-family:"Playfair Display";font-size:40px;line-height:1.1;margin-bottom:16px;}

.fe-feat-meta{display:flex;flex-direction:column;gap:6px;margin-bottom:18px;}

.fe-feat-meta span{font-size:14px;color:#cfe0c4;}

.fe-feat-text p{font-size:15px;line-height:1.75;color:#eaf1e4;margin-bottom:14px;}

.fe-feat-text em{color:#f4c86a;font-style:italic;}

/* buttons */
.fe-btn{    justify-content: center;
    align-items: center;font-size:15px;font-weight:600;padding:13px 26px;border-radius:12px;transition:transform .2s ease,box-shadow .2s ease,background .2s ease;}

.fe-btn:hover{transform:translateY(-2px);}

.fe-btn-gold{background:#2e7d32;color:#fff;align-self:flex-start;box-shadow:0 8px 20px rgba(46,125,50,.32);}

.fe-btn-gold:hover{background:#256628;}

.fe-btn-light{background:#ffffff;color:#14361f;border:1px solid #dfe8d8;justify-content: center;
    align-items: center; display: flex; }

.fe-btn-light:hover{box-shadow:0 8px 20px rgba(0,0,0,.12);}

/* festival grid */
.fe-grid-sub{color:#5a5f55;}

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

.fe-card{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 8px 26px rgba(0,0,0,.09);transition:transform .3s ease,box-shadow .3s ease;}

.fe-card:hover{transform:translateY(-5px);box-shadow:0 18px 38px rgba(0,0,0,.14);}

.fe-card-img{height:210px;position:relative;overflow:hidden;background:#eef3ea;}

.fe-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}

.fe-card:hover .fe-card-img img{transform:scale(1.07);}

.fe-badge{position:absolute;top:14px;left:14px;background:rgba(224,144,42,.96);color:#fff;padding:6px 13px;border-radius:30px;font-size:12px;font-weight:600;letter-spacing:.4px;}

.fe-card-body{padding:20px 22px 24px;}

.fe-card-body h3{font-family:"Playfair Display";font-size:23px;color:#14361f;margin-bottom:9px;}

.fe-card-body p{font-size:14px;line-height:1.7;color:#5a5f55;text-wrap:pretty;}

.fe-card-body em{color:#c9781b;font-style:italic;}

.fe-when{display:inline-block;margin-top:14px;font-size:13px;font-weight:600;color:#1A7141;padding-top:12px;border-top:1px solid #eef1ea;width:100%;}

/* cta */
.fe-cta{background:linear-gradient(120deg,#0e3b22 0%,#1A7141 100%);border-radius:24px;padding:52px 40px;text-align:center;color:#fff;}

.fe-cta-title{color:#fff;}

.fe-cta .fe-cta-hl{color:#f4c86a;font-family:"Playfair Display";}

.fe-cta p{font-size:16px;color:#dce8d5;max-width:620px;margin:12px auto 0;line-height:1.7;}

.fe-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:26px;}

/* festivals page: trim the curved intro panel + spacing */
.fe-curve .fe-intro{margin-top:8px;}

.fe-curve .fe-timeline{margin-top:40px;}

/* use only clean horizontal elephant strips (hide the vertical side columns to avoid corner overlap) */
.fe-curve .side-stpab::before,.fe-curve .side-stpab::after{display:none;}

.fe-curve::before {

    content: "";
    position: absolute;
    top: 61px;
    right: 89px;
    width: 87%;
    height: 21px;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/top-hathi.png);
    background-size: auto 19px;
    pointer-events: none;
}

.fe-curve::after {
    content: "";
    position: absolute;
    content: "";
    position: absolute;
    bottom: 57px;
    right: 89px;
    width: 87%;
    height: 21px;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/top-hathi.png);
    background-size: auto 19px;
    pointer-events: none;

}

.side-stps{
    position: relative;
}

.side-stps::before {
    content: "";
    position: absolute;
    top: 66px;
    left: 96px;
    width: 16px;
    height: 76%;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
    z-index: 10;
}

.side-stps::after {
    content: "";
    position: absolute;
    top: 81px;
    right: 91px;
    width: 20px;
    height: 100%;
    height: 72%;
    border-radius: 12px;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/hathi-right.png);
}

/* festivals page: upcoming events */
.fe-events{display:grid;grid-template-columns:1fr 1fr;gap:20px;}

.fe-event{display:flex;gap:18px;background:#fff;border:1px solid #eaf0e4;border-left:5px solid #e0902a;border-radius:14px;padding:20px 22px;box-shadow:0 6px 18px rgba(0,0,0,.06);transition:transform .3s ease,box-shadow .3s ease;}

.fe-event:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(0,0,0,.11);}

.fe-event-date{flex:0 0 62px;height:62px;border-radius:12px;background:#0e3b22;color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;line-height:1;}

.fe-ev-day{font-family:"Playfair Display";font-size:22px;font-weight:700;}

.fe-ev-mon{font-size:12px;color:#f4c86a;margin-top:3px;text-transform:uppercase;letter-spacing:.5px;}

.fe-event-body h4{font-family:"Playfair Display";font-size:20px;color:#14361f;margin-bottom:6px;}

.fe-event-body p{font-size:14px;line-height:1.6;color:#5a5f55;margin-bottom:8px;text-wrap:pretty;}

.fe-event-loc{font-size:13px;font-weight:600;color:#1A7141;}

/* ===== Homepage: Ways to Explore ===== */
.wte-sec{padding:50px 0 10px;}

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

.wte-card{position:relative;display:block;height:300px;border-radius:18px;overflow:hidden;box-shadow:0 8px 26px rgba(0,0,0,.1);}

.wte-card img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease;}

.wte-card:hover img{transform:scale(1.08);}

.wte-card::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(10,40,22,.9) 0%,rgba(10,40,22,.35) 45%,transparent 75%);}

.wte-ov{position:absolute;left:0;right:0;bottom:0;padding:22px 20px;z-index:2;color:#fff;}

.wte-ov h3{font-family:"Playfair Display";font-size:23px;margin-bottom:5px;}

.wte-ov p{font-size:13.5px;color:#e6efe0;line-height:1.4;}

/* ===== Homepage: Taste of Jharkhand ===== */
.taste-sec{padding:40px 0 10px;}

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

.taste-card{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.08);transition:transform .3s ease,box-shadow .3s ease;}

.taste-card:hover{transform:translateY(-5px);box-shadow:0 16px 34px rgba(0,0,0,.13);}

.taste-img {
    height: 180px;
    overflow: hidden;
    background: #eef3ea;
    padding: 10px;
}
.hdrmtt{
    margin-top: 66px;
}
.taste-img img{width:100%;height:100%;object-fit:contain;transition:transform .5s ease;}

.taste-card:hover .taste-img img{transform:scale(1.07);}

.taste-body{padding:16px 18px 20px;}

.taste-body h3{font-family:"Playfair Display";font-size:21px;color:#14361f;margin-bottom:7px;}

.taste-body p{font-size:13.5px;line-height:1.6;color:#5a5f55;text-wrap:pretty;}

/* verified stays badge */
.hotel-sec .item.book_slide{position:relative;}

.hotel-badge{position:absolute;top:12px;left:12px;z-index:3;display:inline-flex;align-items:center;gap:4px;background:rgba(255,255,255,.95);color:#1a4d2e;font-size:12px;font-weight:600;letter-spacing:.2px;padding:5px 11px;border-radius:30px;box-shadow:0 3px 10px rgba(0,0,0,.18);}

/* ===== Refined hover states (site-wide) ===== */
.rcnt-card,.item.book_slide,.card,.blog-card,.wte-card,.taste-card,.fe-card,.fe-event,.flt-card{
  transition:transform .45s cubic-bezier(.22,.8,.24,1), box-shadow .45s cubic-bezier(.22,.8,.24,1);
  will-change:transform;
}

/* .rcnt-card:hover,.item.book_slide:hover,.taste-card:hover,.fe-card:hover,.blog-card:hover,.fe-event:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 44px -14px rgba(14,59,34,.34);
} */
.card:hover,.wte-card:hover{
  transform:translateY(-8px) scale(1.012);
  box-shadow:0 26px 50px -16px rgba(14,59,34,.4);
}

.rcnt-card-sec1.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    border-radius: 16px 16px 0 0;
}

.rcnt-card:hover .img-div img {
    border-radius: 16px 16px 0 0 !important; /* image ke liye custom */
}

.rcnt-card:hover .cntst {
    border-radius: 0 0 16px 16px !important; /* content box ke liye custom */
}

/* smoother, softer image zoom */
.rcnt-card .dest-img,.item.book_slide img,.card img,.blog-img-wrap img,.taste-img img,.fe-card-img img,.wte-card img{
  transition:transform .7s cubic-bezier(.22,.8,.24,1), filter .45s ease;
}

.rcnt-card:hover .dest-img,.item.book_slide:hover img,.card:hover img,.blog-card:hover .blog-img-wrap img,.taste-card:hover .taste-img img,.fe-card:hover .fe-card-img img,.wte-card:hover img{
  transform:scale(1.09);
}

/* .item.book_slide:hover .hotel-badge {
    top: 20px !important;
} */
.book_slide:hover img {
    border-radius: 15px !important;
}

.rcnt-card{
    background-color: #fff;
    border-radius: 16px;
}

.wte-card:hover img,.item.book_slide:hover img{filter:brightness(1.05);}

/* verified badge lifts with its card */
.item.book_slide .hotel-badge{transition:transform .45s cubic-bezier(.22,.8,.24,1);}

.item.book_slide:hover .hotel-badge{transform:translateY(-2px);}

/* buttons: springy lift + deeper shadow */
.book-btn,.fe-btn,.read-more,.flt-cta{transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background .3s ease;}

.book-btn:hover,.fe-btn-gold:hover{transform:translateY(-3px);box-shadow:0 14px 26px -8px rgba(46,125,50,.5);}

.fe-btn-light:hover{transform:translateY(-3px);box-shadow:0 12px 24px -8px rgba(0,0,0,.2);}

/* hero timeline / event date subtle pop */
.fe-tl-item:hover::before{transform:scale(1.18);transition:transform .3s cubic-bezier(.34,1.56,.64,1);}

/* packages cards live inside an overflow:hidden carousel – keep hover contained (no clipped lift) */
.card:hover{transform:none !important;box-shadow:0 16px 32px -10px rgba(0,0,0,.32);}

.card:hover img{transform:scale(1.08);}

.card .card-overlay{transition:background .4s ease;}

.card:hover .card-overlay{background:linear-gradient(to top, rgba(10,40,22,.92) 0%, rgba(10,40,22,.55) 50%, rgba(10,40,22,.08) 100%);}

/* desktop: open dropdowns on hover (click still works; mobile unaffected) */
@media (min-width:1000px) {
#mainMenu .menu-item[id]{position:relative;}

#mainMenu .menu-item[id]:hover > .drop-panel{display:block;}

#mainMenu .menu-item[id]:hover .drop-icon{transform:rotate(-135deg);margin-top:3px;}

/* invisible bridge across the 4px gap to prevent hover flicker */

#mainMenu .menu-item[id] > .drop-panel::before{content:"";position:absolute;top:-8px;left:0;right:0;height:8px;}

.drop-panel{animation:dropIn .18s ease;}
}

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

/* carousel nav: self-contained chevron buttons (don't depend on external arrow images) */
.owl-nav button.owl-prev img,.owl-nav button.owl-next img{display:none !important;}

.owl-nav button.owl-prev,.owl-nav button.owl-next{
  width:48px !important;height:48px !important;border-radius:50% !important;
  background:#ffffff !important;box-shadow:0 6px 18px rgba(0,0,0,.14) !important;
  display:inline-flex !important;align-items:center;justify-content:center;
  transition:background .25s ease,transform .25s ease,box-shadow .25s ease !important;
  font-size:0;padding:0 !important;border:1px solid #e7efe1 !important;
}

.owl-nav button.owl-prev::before,.owl-nav button.owl-next::before{
  font-size:24px;line-height:1;font-weight:700;color:#1A7141;font-family:Arial,sans-serif;
  transition:color .25s ease;
}

.owl-nav button.owl-prev::before{content:"\2039";margin-right:2px;}

.owl-nav button.owl-next::before{content:"\203A";margin-left:2px;}

.owl-nav button.owl-prev:hover,.owl-nav button.owl-next:hover{
  background:#1A7141 !important;transform:translateY(-2px);box-shadow:0 10px 24px rgba(26,113,65,.35) !important;
}

.owl-nav button.owl-prev:hover::before,.owl-nav button.owl-next:hover::before{color:#ffffff;}

/* carousel nav fix v2 – tag-agnostic (owl uses div/button) */
.owl-nav .owl-prev img,.owl-nav .owl-next img,.owl-nav .owl-prev svg,.owl-nav .owl-next svg{display:none !important;}

.owl-carousel .owl-nav .owl-prev,.owl-carousel .owl-nav .owl-next{
  width:48px !important;height:48px !important;border-radius:50% !important;
  background:#ffffff !important;box-shadow:0 6px 18px rgba(0,0,0,.14) !important;
  display:inline-flex !important;align-items:center !important;justify-content:center !important;
  padding:0 !important;border:1px solid #e7efe1 !important;font-size:0 !important;overflow:hidden;
  transition:background .25s ease,transform .25s ease,box-shadow .25s ease !important;
}

.owl-carousel .owl-nav .owl-prev::after,.owl-carousel .owl-nav .owl-next::after{
  font-size:24px !important;line-height:1;font-weight:700;color:#1A7141;font-family:Arial,Helvetica,sans-serif;
  transition:color .25s ease;
}

.owl-carousel .owl-nav .owl-prev::after{content:"\2039";}

.owl-carousel .owl-nav .owl-next::after{content:"\203A";}

.owl-carousel .owl-nav .owl-prev:hover,.owl-carousel .owl-nav .owl-next:hover{
  background:#1A7141 !important;transform:translateY(-2px);box-shadow:0 10px 24px rgba(26,113,65,.35) !important;
}

.owl-carousel .owl-nav .owl-prev:hover::after,.owl-carousel .owl-nav .owl-next:hover::after{color:#ffffff !important;}

/* inline chevron glyph inside carousel nav buttons */
.owl-nav .nav-arw{display:inline-block;font-size:24px;font-weight:700;line-height:1;color:#1A7141;font-family:Arial,Helvetica,sans-serif;transition:color .25s ease;}

.owl-carousel .owl-nav .owl-prev:hover .nav-arw,.owl-carousel .owl-nav .owl-next:hover .nav-arw{color:#ffffff !important;}

/* remove duplicate pseudo-element chevrons (keep only the .nav-arw span) */
.owl-carousel .owl-nav .owl-prev::before,.owl-carousel .owl-nav .owl-next::before,
.owl-carousel .owl-nav .owl-prev::after,.owl-carousel .owl-nav .owl-next::after,
.owl-nav button.owl-prev::before,.owl-nav button.owl-next::before,
.owl-nav button.owl-prev::after,.owl-nav button.owl-next::after{content:none !important;display:none !important;}

.owl-carousel .owl-nav .owl-prev *,.owl-carousel .owl-nav .owl-next *{background:transparent !important;box-shadow:none !important;border:none !important;}

/* carousel chevron glyph (renamed to avoid owl [class*=owl-] default styling) */
.owl-nav .nav-arw{background:transparent !important;border:none !important;box-shadow:none !important;padding:0 !important;margin:0 !important;color:#1A7141;font-size:24px;font-weight:700;line-height:1;font-family:Arial,Helvetica,sans-serif;}

.owl-carousel .owl-nav .owl-prev:hover .nav-arw,.owl-carousel .owl-nav .owl-next:hover .nav-arw{color:#fff !important;}

/* correct carousel nav hover: keep vertical centering, green fill, white chevron */
.owl-carousel.owl-theme .owl-nav .owl-prev:hover,
.owl-carousel.owl-theme .owl-nav .owl-next:hover{
  transform:translateY(-50%) scale(1.08) !important;
  background:#1A7141 !important;
  box-shadow:0 8px 20px rgba(26,113,65,.35) !important;
}

.owl-carousel.owl-theme .owl-nav .owl-prev:hover .nav-arw,
.owl-carousel.owl-theme .owl-nav .owl-next:hover .nav-arw{color:#ffffff !important;}

.abt::after {
    content: "";
    position: absolute;
    bottom: -73px;
    right: -53px;
    width: 109%;
    height: 21px;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/top-hathi.png);
}





/* ============================================================
   TABLET STYLES
   ============================================================ */


@media (max-width: 900px) {

.footer-top{
        grid-template-columns:1fr 1fr;
        gap:28px;
        padding:36px 0 24px;
    }

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

.fe-feat-img{min-height:300px;}

.fe-feat-text{padding:34px 28px;}

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

.fe-hero .content1 h1{font-size:34px;}

.fe-timeline{gap:16px;}

.fe-timeline::before{display:none;}

.fe-tl-item{flex:1 1 40%;text-align:left;}

.fe-tl-item::before{margin-left:0;}

.wte-grid,.taste-grid{grid-template-columns:1fr 1fr;}

.why-book-sys {
    padding: 0px 0 14px 0;
}

.pkg-sdr.owl-carousel {
    margin-bottom: 10px !important;
}

.flt-sd.owl-carousel {
    margin-bottom: 0px !important;
}

.flt-sec{
    padding-bottom: 0px;
}

.best_plc {
        padding: 20px 0 20px 0;
        margin-top: -53px;
    }

.slider-dots{
        display: none;
    }

.flt-card{
    height: 160px;
}

.wte-sec {
    padding: 30px 0 10px;
}

}



/* ============================================================
   MOBILE STYLES
   ============================================================ */


@media (max-width: 800px) {

.menu-list  { display: none; }

.toggle-btn { display: flex; }

}

@media (max-width: 768px) {

.abtc::after{display: none;}

.logo-wrap {
        width: 80%;
    }

.cont{
        width: 85%;
        margin: 0 auto;
    }

.why-bk{
    flex-direction: column;
   }

.strip-1::before {
        width: 110%;
        left: -16px;
        top: -11px;
    }

.wy-card{
    width: 100%;
        padding: 25px 25px 25px;
}

.card-title{
    font-size: 16px;
}

.para{
    font-size: 22px;
}

.ratingsss{
    display: flex;
    flex-direction: column;
}

.ratingsc{
    width: 100%;
}

.testi-sd.owl-carousel{
    width: 100%;
    margin-bottom: 0 !important;
}

.taste-sec {
    padding: 12px 0 0px;
}

.blog-body{
    margin: -81px 10px 12px 10px;
}

.blogs-sd.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.jharkhand-logo {
        width: 89%;
        top: 77%;
    }

.blogs{
        padding-bottom: 10rem;
        padding-top: 0px;
    }

.hotliday-sec {
        padding: 36px 0 2px;
    }

.attr::before {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-position: center;
    height: 94%;
  }

.best-timesd .big-sld {
    position: relative;
    height: 400px;
}

.info-card {


        margin: 0 auto;
        right: 0;
        box-shadow: none;

        bottom: 17px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: none;
    }

.book-btn{
        width: 100%;
    }

.slider{
        height: 335px;
    }

.content h1{
        font-size: 29px;
    }

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

.content{
        width: 90%;
        margin: 0 auto;
    }

.side-stp::after {
        right: 0px;
        display: none;
    }

.side-stp::before{
        left: 0px;
        display: none;
    }

.ft-18{
        font-size: 16px;
    }

.hdr {
    font-family: "Playfair Display";
    font-size: 22px;
    font-weight: 700;
}

.best_plc{
    margin-top: -85px;
}
.hdrmtt{
    margin-top: 20px;
}
.abt{
    margin-top: 20px;
}
.nei-stp{
    margin-top: 6px;
}
.strip-1{
    margin-top: 20px;
    padding-top: 0px;
}

.best-timesd::after{
    width: 120%;
    right: -25px;
    display: none;
}

.flt-card{
    height: 160px;
}

.flt-cta{
    display: none;
}

.blogs::before {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-position: center;
     height: 69%;
     top: 36%;
  }

footer{
  padding: 33px 10px 18px;
}

.hero_banner{
    height: 230px !important;
}

.jh-top {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

.jh-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

.about{
    height: 1017px;
  }

.abt-cnt{
    width: 100%;
  }

.w-30{
    width: 100%;
  }

.content1 h1{
    font-size: 29px;
  }

.content1{
    width: 90%;
    text-align: center;
     min-width: unset;
  }

.shp-div{
    flex-direction: column;
  }

.blogs-sd.owl-carousel .owl-nav{
    display:  none !important;
  }

.side-stpab::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -21px;
    width: 20px;
    height: 100%;
    height: 102%;
    border-radius: 12px;
    display: none;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/hathi-right.png);
}

.side-stpab::before {
    content: "";
    position: absolute;
    top: 13px;
    left: -21px;
    width: 16px;
    height: 102%;
    display: none;
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/Hathi1.png);
}

.mt-30 {
    margin-top: 11px;
}

.abt::after {
    content: "";
    position: absolute;
    bottom: -73px;
    right: -8px;
    width: 109%;
    height: 21px;
    border-radius: 12px;
    transform: rotate(0deg);
    background-image: url(https://images.emtcontent.com/tourism/jharkhand-img/bottom-hathi.png);
}

.abt-cnt p {
    font-size: 14px;
}

.header-container{
    width: 90%;
}

.strip-1::before{
    display: none;
}

.best_plcaab{
            margin-top: -53px;
        padding: 20px 0 45px 0;
}

.mt-66 {
    margin-top: 20px;
}

.nei::before{
    display: none;
}

.nei-stp::after{
    display: none;
}

.nei-stp::before{
    display: none;
}

.strip-nei{
    margin-top: 0px;
    padding: 0 0;
}

.nei::after{
    display: none;
}

.nei-sec{
    padding-bottom: 30px;
    padding-top: 30px;
}

.cities-crd {
    width: 100%;
}

.cities-cnt{
    width: 100%;
}
.cites-section {
    padding: 20px 0 30px 0;
}
.clm-rvse{
    flex-direction: column-reverse;
}
.fe-btn{
    font-size: 12px;
}
.footer-head {
    margin-bottom: 0;
}    .footer-top {
        grid-template-columns: 1fr;
        gap: 10px;
    }
.w-50{
    width: 100%;
}

.season-card{
    width: 100%;
}

.abt::after{
    display: none;
}

.side-b::after {
    display: none;
}

.side-b::before{
    display: none;
}

.travel-crd{
    width: 100%;
}

.clmtsd{
    padding-top: 0px;
}

.abtc::before{
    display: none;
}

.travehathi{
    margin-top:20px;
    padding-top: 0px;
}

.attr-sd.owl-carousel .owl-nav{
    display: none !important;}

.hotel-sd.owl-carousel .owl-nav{
    display: none !important;}

.pkg-sdr.owl-carousel .owl-nav{
    display: none !important;}

.side-stps::after{display: none;}

.fe-curve::before{display: none;}

.side-stps::before{display: none;}

.fe-curve::after {
 display: none;}

.fe-curve{
        padding: 20px 0 133px 0;
}

.fe-hero{
    height: 320px !important;
}
.footer-bottom{
    padding-bottom: 5px
}
}

@media (max-width: 760px) {

.fe-events{grid-template-columns:1fr;}

}

@media (max-width: 560px) {

.footer-top{
        grid-template-columns:1fr;
    }

.footer-bottom{
        flex-direction:column;
        text-align:center;
    }

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

.fe-hero .content1 h1{font-size:28px;}

.fe-feat-text h2{font-size:30px;}

}

@media (max-width: 540px) {

.wte-grid,.taste-grid{grid-template-columns:1fr;}

}
@media (max-width: 480px) {
    .hero-banner {
        height: 260px;
    }


    .hero-content {
        padding: 0 16px;
        text-align: center;
    }

    .hero-title-pill {
        font-size: 16px;
        padding: 10px 20px;
        border-radius: 30px;
        line-height: 1.3;
    }
    .hotel-sec {
    padding: 7px 0;
}
    .hotliday-sec {
        padding: 30px 0 2px;
    }
        .why-book-sys {
        padding: 10px 0 14px 0;
    }
    .traverlls{
        padding: 20px 0 20px 0;
    }
    .blogs {
        padding-bottom: 10rem;
        padding-top: 0px;
        margin-bottom: 0px;
    }
        footer {
        padding: 0px 10px 18px;
    }
    .attr{
        margin-top: 0px;
    }
    .bg-spin {
    position: relative;
    padding: 1rem 0 0rem;
}
.attr-sd.owl-carousel{
    margin-bottom: 0px !important;
}
.hotel-sd.owl-carousel{
    margin-bottom: 0px !important;
}
    .wte-sec {
        padding: 10px 0 10px;
    }
    .abt-cnt{
        padding-top: 10px;
    }
        .about {
        height: 837px;
    }
.flt{
    padding: 20px 0 ;
}
.shj{
  padding: 10px 0 ;
}
.nei-blg{
    margin-top: 26px !important;
}
.rcnt-card-sec1.owl-carousel{
    margin-bottom: 10px !important;
}
    .best_plc {
        padding: 0px 0 2px 0;
        margin-top: -53px;
    }
    .card-title{
        margin-top: 0px;
    }
        .fe-curve {
        padding: 20px 0 35px 0;
    }
    .stpab-fd{
        margin-top: 10px !important;
    }
    .footer-head{
        margin-bottom: 0;
    }
        .footer-top {
            gap: 10px;
        }

}