@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Serif+JP:wght@200..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Water+Brush&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Barlow", Arial, Helvetica, sans-serif !important;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

.section {
  scroll-margin-top: 280px;
  /* gap from top */
}

::-webkit-scrollbar {
  display: none;
}

.container {
  position: relative;
}


.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.pointer-cursor {
  cursor: pointer !important;
}

.container {
  position: relative;
  z-index: 2;
}

a {
  position: relative;
  text-decoration: none !important;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
}

input[type='number']::-webkit-inner-spin-button {
  display: none;
}

.sticky-top {
  position: fixed !important;
  animation: fadeInDown 0.6s linear;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

/* ----------------------------------s------------------------------------------------------------------------------------------------- */


.hero-slider-section {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}


.hero-slider-section .img-box {
  width: 100%;
  height: 760px;
  position: relative;
}

.hero-slider-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 35s;


}

.hero-slider-section .carousel-item.active img {
  animation: zoomImg 30s linear;
}

@keyframes zoomImg {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}

.hero-slider-section .content-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
}

.hero-slider-section .content-box p {

  font-size: 46px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  animation: fadeIn 1s linear forwards;
  animation-delay: .6s;
  opacity: 0;
}

.hero-slider-section .content-box h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 86px;
  font-weight: 900;
  animation: fadeIn 1s linear forwards;
  animation-delay: 1s;
  opacity: 0;

}

.hero-slider-section .content-box a {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;

  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s;
  animation: fadeInUp 1s linear forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.hero-slider-section .content-box a:hover {
  background-color: #fff;
  color: #09422D;
}

.animate__delay-1_6s {
  animation-delay: 1.6s !important;
}

.hero-slider-section .carousel-indicators button {
  background-color: #f9d600;
  width: 40px;
  height: 4px;
  border-radius: 10px;
}

@media (max-width:1200px) {
  .hero-slider-section .img-box {
    width: 100%;
    height: 580px;
    position: relative;
  }

  .hero-slider-section .content-box p {

    font-size: 34px;
  }

  .hero-slider-section .content-box h1 {
    font-size: 68px;

  }
}

@media (max-width:768px) {
  .hero-slider-section .img-box {
    width: 100%;
    height: 400px;
    position: relative;
  }

  .hero-slider-section .content-box p {

    font-size: 28px;
  }

  .hero-slider-section .content-box h1 {
    font-size: 56px;

  }
}

@media (max-width:568px) {
  .hero-slider-section .img-box {
    width: 100%;
    height: 350px;
    position: relative;
  }

  .hero-slider-section .content-box p {
    font-size: 22px;
  }

  .hero-slider-section .content-box h1 {
    font-size: 46px;

  }
}

/* --------------------------------------------------------------------------------------------------------------------------- */
/* QUICK LINK BOX STYLING */
.quick-link-box ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
  padding: 20px 0;
  margin: 0;
  background-color: #09422D;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/* Each box equal width */
.quick-link-box .link-box {
  flex: 1;
}

.quick-link-box .link-box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;

  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.quick-link-box .link-box a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 100%;
  background: radial-gradient(circle, #f9d600, #09422D);
}

.quick-link-box .link-box:last-child a::before {
  display: none;
}

/* Icon styling */
.quick-link-box .link-box .icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 8px;
  transition: all 0.4s;
}


.quick-link-box .link-box a:hover img {
  transform: scale(1.1);
}

/* TEXT */
.quick-link-box .text span {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.4s;
}

.quick-link-box .link-box a:hover span {
  color: #f9d600;
}

/* ----------------------------------
   RESPONSIVE (Mobile Under 768px)
------------------------------------ */
@media (max-width: 992px) {
  .quick-link-box ul {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .quick-link-box .link-box {
    flex: 0 0 auto;
    width: 160px;
    /* fixed width for smooth scrolling */
  }
}

@media (max-width: 768px) {
  .quick-link-box ul {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .quick-link-box .link-box {
    flex: 0 0 auto;
    width: 120px;
    /* fixed width for smooth scrolling */
  }

  .quick-link-box .link-box a {
    padding: 15px;
  }

  .quick-link-box .text span {
    font-size: 15px;
  }
}

@media (max-width:568px) {
  /* TEXT */

}

/* ---------------------------------------------------------------------------------------------------------------------------- */


.about-section {
  padding: 80px 0 120px;
  position: relative;
}

.about-section .main-content {
  padding-right: 60px;
}

.about-section span.tagline {
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
}


.about-section h2 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 56px;
  color: #000;
}

.about-section p.sub-title {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  color: #002203;
  position: relative;

}

.about-section p.sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #002203;
}

.about-section p.sub-title span {
  background-color: #fff;
  display: inline-block;
  position: relative;
  padding-right: 10px;
}

.about-section p.text {
  font-size: 22px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);

}

.about-section p.text strong {
  color: #000;
  font-weight: 600;

}

.about-section p.text span {
  color: #002203;
  font-style: italic;
  font-weight: 500;
}

.about-section .main-content a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: 20px;
  background-color: #09422D;
  border: 2px solid #09422D;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.4s;
  color: #fff;
}

.about-section .main-content a svg {
  transition: all 0.4s;
}

.about-section .main-content a:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  background-color: #f9d600;
  color: #000;
  border-color: #f9d600;
}

.about-section .main-content a:hover svg {
  transform: translateX(5px) scale(1.1);
}

.about-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:992px) {
  .about-section .main-content {
    padding-right: 0;
  }

}




/* ------------------------------------------------------------------------------------------------------------------------ */
.whyus-section {
  padding: 80px 0;
  background: url(../img/background/whyus-bg.webp) no-repeat;
  position: relative;
  background-size: cover;
}

.whyus-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.whyus-section .heading {
  text-align: center;
  margin-bottom: 30px;
}

.whyus-section .heading h2 {
  color: #f9d600;
  text-transform: uppercase;
  font-size: 46px;
  font-weight: 600;
}

.whyus-section .heading p {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 40px;
}

.whyus-section .count-box {
  padding: 30px;
  backdrop-filter: blur(1px);
  text-align: center;
  background-color: rgba(9, 66, 45, 0.4);
  border-radius: 10px;
  border-top: 3px solid #f9d600;
  position: relative;
}

.whyus-section .count-box .icon {
  margin-bottom: 20px;
}

.whyus-section .count-box h4 {
  color: #f9d600;
  font-size: 48px;
}

.whyus-section .count-box p {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
}


@media (max-width:1200px) {
  .whyus-section .count-box {
    padding: 30px 20px;
  }
}

@media (max-width:768px) {

  .whyus-section .count-box .icon {
    margin-bottom: 0;
  }

  .whyus-section .count-box {
    padding: 10px;
    margin-bottom: 20px;
  }
}


/* -------------------------------------------------------------------------------------------------------------------------------- */


.section-title h2 {
  text-transform: uppercase;
  font-size: 46px;
  font-weight: 800;
}

.section-title.dark-bg h2 {
  color: #f9d600;
}

.section-title p.tagline {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;

}

.section-title.dark-bg p.tagline {
  color: #fff;
}



/* ------------------------------------------------------------------------------------------------------------ */



.safari-location {
  padding: 100px 0;
  position: relative;
}

.safari-location .main-content-wrapper {
  margin-top: 30px;
  position: relative;
}

.safari-location .main-content-wrapper .item-box {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.safari-location .main-content-wrapper .item-box a {
  display: block;
  width: 100%;

  height: 100%;
  position: relative;
}

.safari-location .main-content-wrapper .item-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 35%);
  z-index: 1;

}

.safari-location .main-content-wrapper .item-box .img-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.safari-location .main-content-wrapper .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safari-location .main-content-wrapper .item-box .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 1;
  transition: all 0.4s;
  opacity: 1;
  visibility: visible;
}

.safari-location .main-content-wrapper .item-box:hover .title {
  opacity: 0;
  visibility: hidden;
}

.safari-location .main-content-wrapper .item-box .title h4 {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;


}

.safari-location .main-content-wrapper .item-box .main-content {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 1;
  padding: 30px 60px 30px 30px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}

.safari-location .main-content-wrapper .item-box:hover .main-content {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.safari-location .main-content-wrapper .item-box .main-content h4 {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.safari-location .main-content-wrapper .item-box .main-content p {
  color: #fff;
  padding-right: 20px;
  font-size: 20px;
  font-weight: 500;
}

.safari-location .main-content-wrapper .item-box .main-content svg {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  padding: 10px;
  border-radius: 50%;
  border: 2px solid #f9d600;
  color: #f9d600;
  transition: all 0.4s;
}

.safari-location .main-content-wrapper .item-box .main-content svg:hover {
  background-color: #f9d600;
  color: #000;
  border-color: #f9d600;
}






/* --------------------------------------------------------------------------------------------------------------------- */

.packages-section {
  padding: 80px 0;
  position: relative;
}

.packages-section .owl-stage {
  padding: 30px 0;
}

.packages-section .package-box {
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 10px;
  transition: all 0.4s;
  margin-bottom: 30px;
}

.packages-section .package-box:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.packages-section .package-box .img-box {
  width: 100%;
  height: 320px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .2);
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.packages-section .package-box .img-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.packages-section .package-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.packages-section .package-box:hover .img-box img {
  transform: scale(1.1);
}

.packages-section .package-box .img-box .rating {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  background-color: #f9d600;
  border-radius: 50px;
}

.packages-section .package-box .img-box .rating svg {
  color: #fff;
  width: 14px;
  height: 14px;
}

.packages-section .package-box .content h4 a {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  line-height: 26px;
}

.packages-section .package-box:hover .content h4 a {
  color: #000;
}

.packages-section .package-box .content span.info {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #09422D;
  margin-bottom: 10px;
}

.packages-section .package-box .btn-group {
  display: flex;
  gap: 10px;

}

.packages-section .package-box .btn-group a {
  display: inline-block;
  padding: 6px 20px;
  background-color: #09422D;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border-radius: 5px;
  transition: all 0.4s;
  text-transform: uppercase;
}

.packages-section .package-box .btn-group a:last-child {
  background-color: #f9d600;
  color: #000;
}

.packages-section .package-box .btn-group a:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-5px);
}

.packages-section .owl-dots {
  text-align: center;
}

.packages-section .owl-dot span {
  display: inline-block;
  border: 2px solid #000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 4px;
  transition: all 0.5s;
}

.packages-section .owl-dot.active span {
  width: 30px;
  height: 10px;
  border-radius: 50px;
  background-color: #000;
}




/* ---------------------------------------------------------------------------------------------------------------------------- */


.attraction-section {
  padding: 100px 0;
  position: relative;
  background: url(../img/background/whyus-bg.webp) no-repeat;
  background-size: cover;
}

.attraction-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.attraction-section .section-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.attraction-section .section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #fff;
}


.animate__delay-6s {
  animation-delay: 6s !important;
}

.animate__delay-7s {
  animation-delay: 7s !important;
}

.attraction-section .img-box {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  border-left: 2px solid #f9d600;
  border-bottom: 2px solid #f9d600;
  border-top: 5px solid #f9d600;
  border-right: 5px solid #f9d600;
}

.attraction-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attraction-section .content {
  padding: 30px 40px;

}

.attraction-section .content h3 {
  color: #f9d600;
  font-weight: 700;
  font-size: 28px;
}

.attraction-section .content p {
  color: #fff;
  font-size: 22px;
}

.attraction-section .content ul li {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 22px;
  margin-bottom: 5px;
}

.attraction-section .content ul li svg {
  width: 15px;
  height: 15px;
  padding: 6px;
  border-radius: 50%;
  background-color: #f9d600;
  color: #000;
}

.attraction-section .cta-box {
  margin-top: 40px;
  padding: 30px;
  text-align: center;
  border: 1px dashed #f9d600;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6);
}

.attraction-section .cta-box h4 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
}

.attraction-section .cta-box p {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}

.attraction-section .cta-box a {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #f9d600;
  color: #f9d600;
  transition: all 0.4s;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  border-radius: 50px;
}

@media (max-width:992px) {
  .attraction-section .content {
    padding: 30px 0;

  }
}



/* ------------------------------------------------------------------------------------------------ */


.gallery-section {
  padding: 80px 0;
  position: relative;
}

.gallery-section .img-box {
  width: 100%;
  height: 360px;
  margin-bottom: 20px;
  position: relative;


}

.gallery-section .img-box a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}



.gallery-section .img-box a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 60%;
  opacity: 0;
  border-left: 1px solid #f9d600;
  border-right: 1px solid #f9d600;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.gallery-section .img-box a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  width: 60%;
  height: 80%;
  border-top: 1px solid #f9d600;
  border-bottom: 1px solid #f9d600;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.gallery-section .img-box:hover a::before {
  height: 90%;
  opacity: 1;
}

.gallery-section .img-box:hover a::after {
  width: 90%;
  opacity: 1;
}

.gallery-section .img-box:hover a {
  cursor: zoom-in;

}

.gallery-section .img-box:hover img {
  transform: scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}




/* ------------------------------------------------------------------------------------------------------------------------------------------- */




.innerpage-title {
  padding: 100px 0;
  position: relative;
  background: url(../img/background/innertitle-bg.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}

.innerpage-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.innerpage-title h1 {
  text-transform: uppercase;
  font-size: 46px;
  color: #fff;
  font-weight: 700;
}

.innerpage-title .breadcrumb-box {
  margin-top: 20px;
}

.innerpage-title .breadcrumb-box ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;

}

.innerpage-title .breadcrumb-box ul li {
  color: #bdbdbd;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 500;
}

.innerpage-title .breadcrumb-box ul li a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width:1200px) {
  .innerpage-title h1 {
    font-size: 76px;
  }

}

@media (max-width:992px) {
  .innerpage-title h1 {
    font-size: 68px;
  }

}

@media (max-width:568px) {
  .innerpage-title h1 {
    font-size: 46px;
  }

}



/* ----------------------------------------------------------------------------------------------------------------------------------------------- */



.innercontact-page {
  padding: 80px 0;
  position: relative;
}

.innercontact-page .left-content {
  padding-right: 30px;
}

.innercontact-page h2 {
  font-size: 46px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.innercontact-page h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #f9d600;
}

.innercontact-page p.text {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}

.innercontact-page .call-box {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.innercontact-page .call-box span {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  font-size: 22px;
  margin-bottom: 10px;
}

.innercontact-page .call-box a {
  color: #09422D;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.innercontact-page .right-content {
  padding-left: 60px;
}

.innercontact-page .right-content h3 {
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.innercontact-page .right-content h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #f9d600;
}

.innercontact-page .right-content .form-group {
  margin-bottom: 14px;
}

.innercontact-page .right-content .form-group label {
  font-size: 18px;
  font-weight: 500;
  color: #09422D;
}

.innercontact-page .right-content .form-control {
  padding: 10px 20px;
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
  font-weight: 500;
}

.innercontact-page .right-content .form-control[type='date'] {
  text-transform: uppercase;

}

.innercontact-page .right-content .form-control:focus {
  border-color: #f9d600;
}

.innercontact-page .right-content button {
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.4s;
}

.innercontact-page .right-content button:hover {
  background-color: #f9d600;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}


@media (max-width:992px) {
  .innercontact-page .left-content {
    padding-right: 0;
  }

  .innercontact-page .right-content {
    padding-left: 0;
    margin-top: 30px;
  }
}



/* ------------------------------------------------------------------------------------------------------------------------------ */


.innerlocation-title {
  padding: 60px 0;
  background: url(../img/background/innerpage.webp) no-repeat;
  background-size: cover;
  text-align: center;

}

.innerlocation-title h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  text-transform: uppercase;
}



/* -------------------------------------------------------------------------------------------------------------------------------- */


.innerlocation-content {
  position: relative;
  padding: 0 0 80px;
}

.top-location-info {
  padding: 30px 0;
  position: relative;
  border-bottom: 2px solid rgba(0, 0, 0, .1);
}

.top-location-info .img-box {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  border: 8px solid #fff;
  margin-top: -60px;
  overflow: hidden;
}

.top-location-info .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-location-info .main-content {
  padding-left: 40px;
}

.top-location-info .main-content .item-box {
  display: flex;
  gap: 10px;
  position: relative;
  margin-bottom: 20px;

}

.top-location-info .main-content .item-box svg {
  width: 26px;
  height: 26px;
  color: #fd5634;
}

.top-location-info .main-content .item-box p {
  display: flex;
  flex-direction: column;
}

.top-location-info .main-content .item-box p span {
  color: #09422D;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
}

.top-location-info .main-content .item-box p {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.top-location-info .enquiry-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #09422D;
  color: #f9d600;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 10px;
  transition: all 0.4s;
}

.top-location-info .enquiry-btn:hover {
  transform: translateY(-5px);
  background-color: #000;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}




@media (max-width:992px) {
  .top-location-info .main-content {
    padding-left: 0;
    margin-top: 30px;
  }
}



.innerlocation-content .main-content-wrapper {
  padding: 20px 0;
}

.innerlocation-content .main-content-wrapper .nav-pills {
  margin-bottom: 50px;
  gap: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .25);
  padding-bottom: 30px;
}

.innerlocation-content .main-content-wrapper .nav-link {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  background-color: transparent;
  color: #000;
  position: relative;
  transition: all 0.4s;
}

.innerlocation-content .main-content-wrapper .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #09422D;
  transition: all 0.4s;
}

.innerlocation-content .main-content-wrapper .nav-link.active {
  color: #09422D;
}

.innerlocation-content .main-content-wrapper .nav-link.active::before {
  width: 100%;
}

.innerlocation-content .main-content-wrapper .nav-link:hover {
  color: #09422D;
}

.innerlocation-content .main-content-wrapper .sidebar-wrapper {
  width: 100%;
  position: relative;
  height: 100%;
}

.innerlocation-content .sidebar-wrapper {
  padding-right: 40px;
}

.innerlocation-content .sidebar-wrapper .offer-box {
  text-align: center;
  position: sticky;
  top: 100px;
  padding: 60px 20px;
  border-radius: 10px;
  background-color: #09422D;
  background: url(../img/background/cta-bg.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}

.innerlocation-content .sidebar-wrapper .offer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.innerlocation-content .sidebar-wrapper .offer-box h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 700;
}

.innerlocation-content .sidebar-wrapper .offer-box h4 span {
  color: #f9d600;
}

.innerlocation-content .sidebar-wrapper .offer-box p {
  color: #fff;
  text-transform: capitalize;

}

.innerlocation-content .sidebar-wrapper .offer-box a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f9d600;
  color: #09422D;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
}

.innerlocation-content .sidebar-wrapper .topic-box {
  position: sticky;
  top: 120px;
  padding-right: 40px;
}

.innerlocation-content .sidebar-wrapper .topic-box a {
  display: block;
  padding: 10px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

.innerlocation-content .sidebar-wrapper .topic-box a.active {
  background-color: #09422D;
  color: #f9d600;

}

.innerlocation-content .seo-content-wrapper p.text {
  font-size: 22px;
  color: #000;
  margin-bottom: 30px;
}

.innerlocation-content .seo-content-wrapper p.text span {
  text-transform: capitalize;
  font-weight: 500;
  font-style: italic;
  color: #09422D;
}

.innerlocation-content .seo-content-wrapper p.text strong {
  font-weight: 600;
  text-transform: capitalize;
  color: #09422D;
}

.innerlocation-content .seo-content-wrapper p.text a {
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
}

.innerlocation-content .seo-content-wrapper p.text a:hover {
  color: #09422D;
}

.innerlocation-content .seo-content-wrapper .seo-box {
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.innerlocation-content .seo-content-wrapper h3.sub-title {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 800;
  color: #09422D;
}

.innerlocation-content .seo-content-wrapper h5.point-heading {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
  position: relative;
  padding-bottom: 16px;
}

.innerlocation-content .seo-content-wrapper h5.point-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #09422D;
}

.innerlocation-content .seo-content-wrapper h5.point-heading svg {
  margin-right: 10px;
}

.innerlocation-content .seo-content-wrapper ul.list-item {
  margin-bottom: 30px;
}

.innerlocation-content .seo-content-wrapper ul.list-item li {
  margin-bottom: 18px;
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

.innerlocation-content .seo-content-wrapper ul.list-item li strong {
  font-weight: 600;
  text-transform: capitalize;
  color: #09422D;
}

.innerlocation-content .seo-content-wrapper ul.list-item li a {
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}

.innerlocation-content .seo-content-wrapper ul.list-item li a:hover {
  color: #09422D;
}

.innerlocation-content .seo-content-wrapper ul.list-item li:hover {
  color: #09422D;
}

.innerlocation-content .seo-content-wrapper .table {
  margin-bottom: 40px;
}


.innerlocation-content .seo-content-wrapper .table-green thead {
  background-color: #09422D;
  color: #fff;
}

.innerlocation-content .seo-content-wrapper .table-red thead {
  background-color: #6b3000;
  color: #fff;
}

.innerlocation-content .seo-content-wrapper .table tr {
  position: relative;
  transition: all 0.4s;
}

.innerlocation-content .seo-content-wrapper .dark-table thead tr::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.innerlocation-content .seo-content-wrapper .table thead th {
  padding: 16px 20px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;

}

.innerlocation-content .seo-content-wrapper .table tbody {
  font-size: 20px;

}

.innerlocation-content .seo-content-wrapper .table-green tbody,
.innerlocation-content .seo-content-wrapper .table-red tbody {
  background-color: #00ac6d;
  color: #fff;
}

.innerlocation-content .seo-content-wrapper .table-red tbody {
  background-color: #a54a00;
}

.innerlocation-content .seo-content-wrapper .table tbody tr::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, .4);
}

.innerlocation-content .seo-content-wrapper .table-green tbody tr:hover {
  background-color: #00774b;

}

.innerlocation-content .seo-content-wrapper .table-red tbody tr:hover {
  background-color: #803900;
}

.innerlocation-content .booking-note {
  padding: 50px 30px 20px;
  margin-bottom: 30px;
  position: relative;
  border-radius: 10px;
  border: 2px solid #09422D;
}

.innerlocation-content .booking-note h4 {
  position: absolute;
  display: inline-block;
  top: -20px;
  left: 20px;
  background-color: #09422D;
  border-radius: 6px;
  padding: 10px 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.innerlocation-content .booking-note ul.list-item li {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-bottom: 16px;
}

.innerlocation-content .booking-note ul.list-item li span {
  font-weight: 600;
  color: #09422D;
}

.innerlocation-content .location-tab-content iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  filter: grayscale(100%);
  border-bottom: 4px solid #09422D;
  border-right: 4px solid #09422D;
  transition: all 0.4s;


}

.innerlocation-content .location-tab-content iframe:hover {
  filter: grayscale(0);
}



@media (max-width:1200px) {
  .innerlocation-content .sidebar-wrapper {
    padding-right: 0;
  }

  .innerlocation-content .sidebar-wrapper .offer-box a {
    display: inline-block;
    padding: 6px 10px;
  }

}

@media (max-width:992px) {
  .innerlocation-content .sidebar-wrapper {
    padding-right: 0;
    margin-bottom: 30px;

  }
}


/* ---------------------------------------------------------------------------------------------------------------------- */


.innerpackage-content {

  position: relative;
}

.innerpackage-content .pack-info-wrapper {
  position: relative;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.innerpackage-content .pack-info-wrapper .img-box {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 10px;
  border-bottom: 3px solid #f9d600;
  border-right: 3px solid #f9d600;
}

.innerpackage-content .pack-info-wrapper .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.innerpackage-content .pack-info-wrapper .title-box {
  position: relative;
  height: 100%;
}

.innerpackage-content .pack-info-wrapper .title-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.6);
}

.innerpackage-content .pack-info-wrapper .title-box h2 {
  text-transform: uppercase;
  font-weight: 800;
  color: #09422D;
  font-size: 32px;
  margin-bottom: 20px;
}

.innerpackage-content .pack-info-wrapper .title-box span.location {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  display: flex;
  gap: 4px;
  text-transform: capitalize;
}

.innerpackage-content .pack-info-wrapper .title-box span.location svg {
  color: #09422D;
  margin-top: 4px;
}

.innerpackage-content .pack-info-wrapper .title-box p {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.innerpackage-content .pack-info-wrapper .title-box p span {
  text-transform: uppercase;
  font-weight: 600;
  color: #09422D;
}

.innerpackage-content .pack-info-wrapper .title-box a.price {
  padding: 10px 30px;
  background-color: #09422D;
  display: inline-block;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  color: #f9d600;
  transition: all 0.4s;
}

.innerpackage-content .pack-info-wrapper .title-box a.price:hover {
  background-color: #000;
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.innerpackage-content .pack-info-wrapper .title-box .price-box {
  padding: 10px 80px;
  border-radius: 10px;
  margin-top: 10px;
  background-color: #09422D;
  width: fit-content;
  text-align: center;
}

.innerpackage-content .pack-info-wrapper .title-box .price-box p {
  margin-bottom: 0;
  color: #f9d600;
  text-transform: capitalize;

}

.innerpackage-content .pack-info-wrapper .title-box .price-box h4 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 26px;
}

.innerpackage-content .pack-info-wrapper .detail-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-left: 30px;
  gap: 10px;
}

.innerpackage-content .pack-info-wrapper .detail-box .item-box {
  display: flex;
  gap: 10px;
}

.innerpackage-content .pack-info-wrapper .detail-box .item-box svg {
  width: 24px;
  height: 24px;
  color: #fd5634;
}

.innerpackage-content .pack-info-wrapper .detail-box .item-box p {
  display: flex;
  flex-direction: column;
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.innerpackage-content .pack-info-wrapper .detail-box .item-box p span {
  text-transform: capitalize;
  color: #09422D;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;

}

@media (max-width:1200px) {
  .innerpackage-content .pack-info-wrapper .title-box .price-box {
    padding: 10px 40px;
  }
}

@media (max-width:992px) {
  .innerpackage-content .pack-info-wrapper .title-box::before {
    display: none;
  }

  .innerpackage-content .pack-info-wrapper .detail-box {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0;
    margin-top: 30px;
  }


}

@media (max-width:768px) {
  .innerpackage-content .pack-info-wrapper .title-box {
    margin-top: 30px;
  }

  .innerpackage-content .pack-info-wrapper .price-box {
    display: none;
  }

  .innerpackage-content .pack-info-wrapper .detail-box {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0;
    border-top: 1px solid rgba(0, 0, 0, .25);
    padding-top: 20px;
    margin-top: 10px;
  }


}

@media (max-width:568px) {

  .innerpackage-content .pack-info-wrapper .detail-box {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0;
    border-top: 1px solid rgba(0, 0, 0, .25);
    padding-top: 20px;
    margin-top: 10px;
  }


}


/* ------------------------------------------------------------------------------------------------------------------- */


.innerlocation-content .travel-plan-box {
  padding: 0 30px;
  padding-right: 50px;
}

.innerlocation-content .travel-plan-box .plan-box {
  padding: 50px 0;
  border-bottom: 1px solid #09422D;
}

.innerlocation-content .travel-plan-box .plan-box h3 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: capitalize;
  color: #09422D;
  display: inline-block;
  padding: 10px 20px;
  background-color: #f9d600;

}

.innerlocation-content .travel-plan-box p {
  font-size: 22px;
  color: #000;
}

.innerlocation-content .travel-plan-box p span {
  color: #09422D;
  text-transform: capitalize;
  font-weight: 500;
  font-style: italic;
}

.innerlocation-content .travel-plan-box p a {
  color: #09422D;
  text-transform: uppercase;
  font-weight: 700;
}

.innerlocation-content .travel-plan-box p strong {
  color: #000;
  font-weight: 600;
  text-transform: capitalize;
}

.innerlocation-content .faq-section .accordion {
  padding-right: 40px;
}

.innerlocation-content .faq-section .accordion-item {
  margin-bottom: 20px;
}

.innerlocation-content .faq-section .accordion-button {
  background-color: #09422D;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  box-shadow: none;

}

.innerlocation-content .faq-section .accordion-button::after {
  background-image: url(../img/icons/down-arrow.png);
}

.innerlocation-content .faq-section p.text {
  font-size: 20px;
  font-weight: 500;

}

.innerlocation-content .faq-section p.text span {
  color: #09422D;
  text-transform: capitalize;
  font-style: italic;

}

.innerlocation-content .faq-section p.text strong {
  text-transform: capitalize;
  font-weight: 600;
}

.innerlocation-content .faq-section p.text a {
  color: #09422D;
  text-transform: uppercase;
  font-weight: 700;
}

.sidebar-wrapper .cta-box {
  position: sticky;
  top: 120px;
  padding: 40px 20px;
  text-align: center;
  background-color: #09422D;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background: url(https://media.istockphoto.com/id/1178782776/photo/forest-ferns.jpg?s=612x612&w=0&k=20&c=fx7dIoaJtZU0uCBkYIQcTECrrjs9Cu5T9jhFrW5Fb_s=) no-repeat;
  background-size: cover;
  overflow: hidden;
}

.sidebar-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.sidebar-wrapper .cta-box h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

.sidebar-wrapper .cta-box h4 span {
  color: #f9d600;
}

.sidebar-wrapper .cta-box p.info {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.sidebar-wrapper .cta-box p.strong {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 30px;
}

.sidebar-wrapper .cta-box a {
  display: inline-block;
  padding: 5px 10px;
  background-color: #f9d600;
  color: #09422D;
  font-weight: 600;

  border-radius: 4px;
  font-size: 18px;
  text-transform: capitalize;
  transition: all 0.4s;
}

.sidebar-wrapper .cta-box a:last-child {
  background-color: #fff;
}

@media (max-width:1200px) {
  .sidebar-wrapper .cta-box {
    padding: 40px 10px;

  }
}

@media (max-width:992px) {
  .sidebar-wrapper .cta-box {
    position: relative !important;
    top: 0;

  }
}

/* ------------------------------------------------------------------------------------------------------------------ */


.safari-package-section {
  padding: 80px 0;
  position: relative;
  background: url(https://images.unsplash.com/photo-1590514526581-bf7feaee0217?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8anVuZ2xlJTIwc2FmYXJpfGVufDB8fDB8fHww) no-repeat fixed;
  background-size: cover;
}

.safari-package-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000, rgba(0, 0, 0, 0.5));
}

.safari-package-section .section-title p.text {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.safari-package-section .package-box {


  padding: 20px;
  border-radius: 14px;
  background-color: rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: all 0.4s;
}

.safari-package-section .package-box:hover {
  border-color: #f9d600;
}

.safari-package-section .package-box .img-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 300px;
  margin-top: -80px;
  border-top: 4px solid #f9d600;
  border-bottom: 1px solid #f9d600;
  border-left: 1px solid #f9d600;
  border-right: 1px solid #f9d600;
}

.safari-package-section .package-box .img-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.safari-package-section .package-box .img-box .carousel,
.safari-package-section .package-box .img-box .carousel-inner,
.safari-package-section .package-box .img-box .carousel-item {
  height: 100%;
  width: 100%;
}

.safari-package-section .package-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safari-package-section .package-box .carousel-item.active img {
  animation: zoomImg 30s linear;
}

.safari-package-section .package-box .img-box span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  background-color: #f9d600;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
  z-index: 1;
}

.safari-package-section .package-box .content-box {
  text-align: center;
  padding: 0 10px;
  margin-top: -30px;
  position: relative;
  z-index: 1;
}

.safari-package-section .package-box.style-two .content-box h4 a {
  background-color: #09422D;
  color: #f9d600;
}

.safari-package-section .package-box .content-box h4 a {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 26px;

  background-color: #09422D;
  padding: 10px 20px;
  border-radius: 5px;
  color: #f9d600;
}

.safari-package-section .package-box .content-box h6 {
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
}

.safari-package-section .package-box .content-box p.text {
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
}

.safari-package-section .package-box .content-box .actions {
  margin-bottom: 10px;
}

.safari-package-section .package-box .content-box .actions a {
  padding: 8px 16px;
  background-color: #09422D;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  border-radius: 4px;
  transition: all 0.4s;
}

.safari-package-section .package-box .content-box .actions a:nth-child(2n) {
  background-color: #f9d600;
  color: #09422D;
}

.safari-package-section .package-box .content-box .actions a:hover {
  background-color: #f9d600;
  color: #09422D;
  transform: translateY(-5px);
}

@media (max-width:568px) {

  .safari-package-section .package-box {


    padding: 20px 00;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: all 0.4s;
  }

  .safari-package-section .package-box .content-box {
    padding: 0 0;
  }

  .safari-package-section .package-box .content-box .actions a {
    padding: 8px 10px;
  }
}

/* 
.safari-package-section .package-box .img-box{
  position: relative;
  width: 100%;
  height: 100%;
  
}
.safari-package-section .package-box .img-box a{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.safari-package-section .package-box .img-box span{
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f9d600;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
  border-radius: 4px;
  padding: 4px 8px;
}
.safari-package-section .package-box .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.safari-package-section .package-box .content-box h4 a{
  display: block;
  padding: 10px 20px;
  background-color: #f9d600;
  border-radius: 10px;
  text-align: center;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}

.safari-package-section .package-box .content-box h6{
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 600;
}
.safari-package-section .package-box .content-box p{
  color: #fff;
}
.safari-package-section .package-box .content-box .feat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  margin-bottom: 10px;
  border-radius: 6px;
}
.safari-package-section .package-box .content-box .feat svg{
  height: 20px;
}

.safari-package-section .package-box .content-box .actions{
  margin-top: 20px;
}
.safari-package-section .package-box .content-box .actions a{
  padding: 6px 10px ;
  background-color: #f9d600;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 18px;
  border-radius: 5px;
} */
/* ---------------------------------------------------------------------------------------------------------------------- */



.main-btn {
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid #f9d600;
  background-color: #fff;
  color: #09422D;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  transition: all 0.4s;
}

.main-btn:hover {
  transform: translateY(-5px);
  background-color: #f9d600;
  color: #09422D;
}

.main-btn svg {
  animation: slideIcon .7s infinite linear;
}

@keyframes slideIcon {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(10px) scale(1.1);

  }
}



/* ----------------------------------------------------------------------------------------------------------------------- */



.innerservice-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}


.innerservice-slider .img-box {
  width: 100%;
  height: 600px;
  position: relative;
}

.innerservice-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 35s;


}




.innerservice-slider .carousel-item.active img {
  animation: zoomImg 30s linear;
}

@keyframes zoomImg {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}

.innerservice-slider .content-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
}

.innerservice-slider .content-box p {

  font-size: 46px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  animation: fadeIn 1s linear forwards;
  animation-delay: .6s;
  opacity: 0;
}

.innerservice-slider .content-box h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 86px;
  font-weight: 900;
  animation: fadeIn 1s linear forwards;
  animation-delay: 1s;
  opacity: 0;

}

.innerservice-slider .content-box a {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;

  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s;
  animation: fadeInUp 1s linear forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.innerservice-slider .content-box a:hover {
  background-color: #fff;
  color: #09422D;
}

.animate__delay-1_6s {
  animation-delay: 1.6s !important;
}

.innerservice-slider .carousel-indicators button {
  background-color: #f9d600;
  width: 40px;
  height: 4px;
  border-radius: 10px;
}

@media (max-width:1200px) {
  .innerservice-slider .img-box {
    width: 100%;
    height: 580px;
    position: relative;
  }
}

@media (max-width:768px) {
  .innerservice-slider .img-box {
    width: 100%;
    height: 400px;
    position: relative;
  }
}

@media (max-width:568px) {
  .innerservice-slider .img-box {
    width: 100%;
    height: 350px;
    position: relative;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------- */


.innerservice-content {
  padding: 80px 0;
  position: relative;
}

.innerservice-content .about-service-box {
  position: relative;
  text-align: center;
}

.innerservice-content .about-service-box h2 {
  font-size: 46px;
  text-transform: uppercase;
  font-weight: 700;
  color: #09422D;
  margin-bottom: 20px;
}

.innerservice-content .about-service-box p.text {
  color: #000;
  font-size: 22px;
  font-weight: 500;
}

.innerservice-content .about-service-box p.text strong {
  text-transform: capitalize;
  font-weight: 600;
  color: #09422D;
}

.innerservice-content .about-service-box p.text span {
  color: #09422D;
  font-style: italic;
  text-transform: capitalize;
}


.innerservice-content .time-schedule-box {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid #f9d600;
  border-radius: 10px;
  background: url(../img/background/bg_decore.png);
}

.innerservice-content .time-schedule-box h3.sub-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 42px;
  color: #000;
  position: relative;
  display: inline-block;
}

.innerservice-content .time-schedule-box p.text {
  color: #000;
  font-size: 22px;
  margin-bottom: 20px;
}

.innerservice-content .time-schedule-box p.tagline {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.innerservice-content .time-schedule-box p span {
  color: #09422D;
  font-style: italic;
  text-transform: capitalize;
  font-weight: 600;
}

.innerservice-content .time-schedule-box p.note {
  padding: 10px 20px;
  background-color: #f9d600;
  border-left: 3px solid #09422D;
  font-size: 22px;
  font-weight: 600;
  color: #09422D;
  margin-top: 30px;
}

.innerservice-content .time-schedule-box p.cta-text {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 500;
  color: #09422D;

}

.innerservice-content .time-schedule-box p.cta-text a {
  color: #09422D;
  font-weight: 700;
  text-transform: uppercase;
}

.innerservice-content .time-schedule-box p.cta-text a:hover {
  color: #000;
}

.innerservice-content .time-schedule-box .right-content {
  padding-left: 50px;
}

.innerservice-content .time-schedule-box .item-box {

  text-align: center;
  background-color: #09422D;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.4s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.innerservice-content .time-schedule-box .item-box.margin-box {
  margin-top: 30px;
}

.innerservice-content .time-schedule-box .item-box.active,
.innerservice-content .time-schedule-box .item-box:hover {
  background-color: #000;
}

.innerservice-content .time-schedule-box .item-box h4 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

.innerservice-content .time-schedule-box .item-box p {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;

}






/* --------------------------------------------------------------------------------------------------------------------------------- */


.todo-section {
  padding: 80px 0;
  position: relative;
}

.todo-section .section-title p.text {
  font-size: 22px;
}

.todo-section .main-content-wrapper {
  margin-top: 40px;
}

.todo-section .item-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.todo-section .item-box .img-box {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
}

.todo-section .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.todo-section .item-box:hover .img-box img {
  transform: scale(1.1);
  filter: brightness(70%);
}

.todo-section .item-box .content-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 14px;
  background-color: rgba(9, 66, 45, 0.7);
  transition: all 0.4s;

}

.todo-section .item-box:hover .content-box {
  opacity: 0;
  visibility: hidden;
}

.todo-section .item-box h4 {
  color: #f9d600;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.todo-section .item-box p.text {
  color: #fff;
  font-size: 20px;
  transition: all 0.4s;
}

.todo-section .item-box .hide-content {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  padding: 30px 14px 10px;
  background-color: rgba(9, 66, 45, 0.9);
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;

}

.todo-section .item-box .hide-content h4 {
  margin-bottom: 10px;
}

.todo-section .item-box:hover .hide-content {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

@media (max-width:1200px) {
  .todo-section .item-box .img-box {
    width: 100%;
    height: 460px;
    position: relative;
    overflow: hidden;
  }
}




/* --------------------------------------------------------------------------------------------------------------------------- */


.innerpackage-grid {
  position: relative;
  padding: 80px 0;
}

.innerpackage-grid .section-title p.text {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 40px;
  color: #000;
}

.innerpackage-grid .section-title p.text strong {
  font-weight: 600;
  color: #09422D;
  text-transform: capitalize;
}

.innerpackage-grid .section-title p.text span {
  font-weight: 500;
  color: #09422D;
  font-style: italic;
  text-transform: capitalize;
}


.innerpackage-grid .booking-note {
  padding: 50px 30px 20px;
  margin-bottom: 30px;
  position: relative;
  border-radius: 10px;
  border: 2px solid #09422D;
}

.innerpackage-grid .booking-note h4 {
  position: absolute;
  display: inline-block;
  top: -20px;
  left: 20px;
  background-color: #09422D;
  border-radius: 6px;
  padding: 10px 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.innerpackage-grid .booking-note ul.list-item li {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-bottom: 16px;
}

.innerpackage-grid .booking-note ul.list-item li span {
  font-weight: 600;
  color: #09422D;
}



/* -------------------------------------------------------------------------------------------------------------------------------- */


.innerseopage-content {
  position: relative;
  padding: 80px 0;
}



.innerseopage-content .left-content h2.title {
  text-transform: uppercase;
  font-size: 56px;
  font-weight: 800;

}

.innerseopage-content .left-content h6.tagline {
  text-transform: capitalize;
  font-size: 24px;
  color: #09422D;
  font-weight: 600;
  margin-bottom: 25px;
}

.innerseopage-content .left-content p.text {
  font-size: 22px;
  margin-bottom: 25px;
  color: #000;
}

.innerseopage-content .left-content p.text span {
  color: #09422D;
  font-style: italic;
  text-transform: capitalize;
  font-weight: 500;
}

.innerseopage-content .left-content p.text strong {
  color: #09422D;
  font-weight: 600;
  text-transform: capitalize;
}

.innerseopage-content .left-content p.text a {
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
}

.innerseopage-content .left-content p.text a:hover {
  color: #09422D;
}

.innerseopage-content .left-content h3.sub-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 34px;
  color: #09422D;
}

.innerseopage-content .left-content .table {
  margin-bottom: 25px;
}

.innerseopage-content .left-content .table thead {
  background-color: #09422D;
  color: #fff;
}

.innerseopage-content .left-content .table thead th {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.innerseopage-content .left-content .table tbody td {
  font-size: 20px;
  color: #000;
  font-weight: 500;

}

.innerseopage-content .left-content h5.point-heading {
  font-size: 26px;
  margin: 20px 0;
  font-weight: 600;
  display: inline-block;
  position: relative;
  border-bottom: 2px solid #f9d600;
  padding-bottom: 10px;
}

.innerseopage-content .left-content h5.point-heading svg {
  color: #09422D;
  margin-right: 10px;
}

.innerseopage-content .left-content .seo-box {
  padding: 30px 20px;
  margin: 40px 0;
  border: 1px solid #09422D;
  border-width: 3px 1px 1px 1px;
  border-radius: 10px;
}

.innerseopage-content .booking-note {
  padding:30px 30px;
  background-color: #09422D;
  border-radius: 10px;
  
  text-align: start;
  
}
.innerseopage-content .booking-note h4{
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 10px;


}
.innerseopage-content .booking-note li{
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
.innerseopage-content .booking-note li::marker{
  color: #f9d600;
}

.innerseopage-content .related-link-box {
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: start;
  position: relative;
  background-color: #09422D;
  height: 100%;
}

.innerseopage-content .related-link-box h4 {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  background-color: #f9d600;
  padding: 10px 20px;
  text-align: center;
  border-radius: 4px;
  color: #09422D;
  margin-bottom: 20px;
}

.innerseopage-content .related-link-box a {
  display: block;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, .1);
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.4s;

}

.innerseopage-content .related-link-box a svg {
  margin-right: 10px;
}

.innerseopage-content .related-link-box a:hover {
  background-color: #002203;
  color: #f9d600;
}

.innerseopage-content .main-enquiry-form {
  position: relative;
  background: url(../img/slider/ranthambore-tiger-reserve-2.jpg) no-repeat fixed;
  background-size: cover;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 2px solid #f9d600;
  overflow: hidden;
}

.innerseopage-content .main-enquiry-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);

}

.innerseopage-content .main-enquiry-form h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
}

.innerseopage-content .main-enquiry-form h4 span {
  color: #f9d600;
  font-weight: 800;
}

.innerseopage-content .main-enquiry-form p.text {
  color: #fff;
  font-size: 18px;
}

.innerseopage-content .main-enquiry-form form {
  position: relative;
  text-align: start;
}

.innerseopage-content .main-enquiry-form .form-group {
  margin-bottom: 10px;
}

.innerseopage-content .main-enquiry-form label {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.innerseopage-content .main-enquiry-form .form-control {
  border-radius: 0;
  padding: 6px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  box-shadow: none;

}

.innerseopage-content .main-enquiry-form .form-control:focus {
  border-color: #f9d600;
}

.innerseopage-content .main-enquiry-form .form-control[type='date'] {
  text-transform: uppercase;
}

.innerseopage-content .main-enquiry-form button {
  padding: 6px 20px;
  margin-top: 10px;
  background-color: #f9d600;
  color: #09422D;
  font-size: 18px;
  font-weight: 700;
  border: none;
  text-transform: uppercase;
}


@media (max-width:992px){
  .innerseopage-content .main-enquiry-form {
margin-top: 30px;
}
}




/* ---------------------------------------------------------------------------------- */

.booking-btn{
  padding: 10px 20px;
  background-color: #09422D;
  border-radius: 5px;
  color: #f9d600;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s;
  display: inline-block;
  margin-top: 20px;
}
.booking-btn:hover{
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #000;
  color: #fff;
}
.contact-float-right {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp */
.float-circle.whatsapp {
  background: #25D366;
}

/* Call */
.float-circle.call {
    background: #dda600;
}
/* Hover */
.float-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

/* Mobile */
@media (max-width: 575px) {
  .float-circle {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
.cta-notice {
    margin-top: 15px;
    padding: 12px 14px;
  
    border-left: 4px solid #e09b2d;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
}

.strong span {
    color: #f9d600;
}
.safari-marquee-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #1b1b1b, #2b2b2b);
    border-radius: 10px;
    overflow: hidden;
}

/* IMPORTANT TAG */
.notice-tag {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    box-shadow: 4px 0 12px rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
}

/* Marquee base */
.safari-marquee {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 10px 180px; /* space for notice tag */
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-size: 14px;
    font-weight: 600;
}

.marquee-content span {
    margin: 0 18px;
}

.highlight-open {
    color: #4cff4c;
}

.highlight-closed {
    color: #ff4c4c;
}

.divider {
    color: #ffc107;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 14px;
}

.checkbox-group.inline {
    grid-template-columns: repeat(2, auto);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.package-card {
    background: #09422d;
    color: #fff;
    padding: 25px;
    border-radius: 6px;
    height: 100%;
}
.package-card ul {
    padding-left: 18px;
}

.package-card ul li {
    margin-bottom: 8px;
    font-size: 16px;
    text-align: justify;
}
.price-note {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 10px;
}

.enquiry-btn {
    display: block;
    margin-top: 15px;
    background: #f9d600;
    color: #000;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
}

.enquiry-btn:hover {
    background: #f8f9fa;
    color: #09422d;
}
button.accordion-button.collapsed {
    font-size: 22px;
    font-weight: 600;
    color: #198754;
}
button.accordion-button {
    font-size: 22px;
    font-weight: 600;
    /* color: #ffc107; */
}
.notice-box {
    background: #fff7e6;
    border-left: 4px solid #f4a100;
    padding: 10px;
}
p.text {
    font-size: 22px;
    color: #000;
    margin-bottom: 30px;
}
.cert{
 display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}