* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  font-family: "Poppins", serif;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
  color: inherit;
}

.active {
  color: var(--active-link);
}

.header-caption {
  color: gray;
  text-transform: capitalize;
}

.header-top-title {
  color: var(--active-link);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.title {
  text-transform: capitalize;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.203);
}

:root {
  --top-header: #106c70;
  --footer-bg: #191e22;
  --pri-btn-bg: orange;
  --scl-link: #FFFF;


  --icon: orange;

  --gray: rgba(128, 128, 128, 0.258);

  --active-link: orange;

  --nav-link: #191e22;


  --card-title: #191e22;

  /* BUTTON */
  --button-book-now-bg: green;
  --button-learn-more: #191e22;


}


/* BUTTONS */

.butn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.438rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 15px);
  transition: all 0.5s ease;

}


.butn:hover {
  transform: scale(1.03);
}

.butn_book-now {
  background: var(--button-book-now-bg);
  color: #FFF;
  font-weight: 500;
  text-transform: uppercase;
}

.butn_book-now:hover {
  background-color: var(--active-link);
}

.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}



.bttn {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.bttn.learn-more {
  width: 11rem;
  height: auto;
}

.bttn.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: var(--button-learn-more);
  border-radius: 1.625rem;
}

.bttn.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #FFF;
}

.bttn.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.bttn.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: '';
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.bttn.learn-more .bttn-text {
  transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: var(--pri-button);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;

}

.bttn:hover .circle {
  width: 100%;
}

.bttn:hover .circle .icon.arrow {
  background: #FFF;
  transform: translate(1rem, 0);
}

.bttn:hover .bttn-text {
  color: #FFF;
}

/* -------------------------------------------------------------------- */
/* breadcrump */
.breadcrump {
  position: relative;
  top: 0;
  min-height: 350px;
  background-image: url(../asset/anju-cabs-customized-tour-package-booking-service.png);
  background-position: 100% 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  overflow: hidden;
}

.breadcrump h2 {
  text-transform: capitalize;
}

.breadcrump-inner>.row {
  height: 100%;
  user-select: none;
}

.breadcrump-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.breadcrump-inner {
  /* display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; */
  height: 100%;
  text-align: center;
  color: white;
}

.breadcrump h1 {
  margin: 0 auto;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Gilda Display", serif;
  padding: 0 15px;
}



.breadcrump-inner {
  position: relative;
  z-index: 15;
}




.bd-nav-inner {
  transform: skew(22deg);
}

.bd-nav-list li {
  margin: 0 10px;
  color: #FFf;
}

.bd-nav-list li a {
  color: #FFF;
  font-size: 14px;
}


.bd-nav-list li .active {
  color: var(--active-link);
  white-space: nowrap;
}

@media screen and (max-width:999px) {
  .breadcrump::before {
    width: 100%;
  }

  .breadcrump .ptr-1 {
    width: 100%;
  }

}



/* TOP HEADER ------------------------------------------------*/
.top-header {
  background-color: var(--top-header);
}

.top_header-wrapper {
  display: flex;
  align-items: center;

}


.top_header-social .tp_scl a {
  color: var(--scl-link);
  font-size: 1.188rem;
  margin: 0 0.75rem;
}

.top_header-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
}


.top-header_adrs {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  align-items: center;
  column-gap: 10px;
  justify-content: end;
}

.top-header_adrs .tp_icon {
  color: #FFF
}

.top-header_adrs .tp_adrs {
  white-space: nowrap;
}

.top-header_adrs .tp_adrs a {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem 0.75rem 0.75rem;
  color: #FFF;
}

.top-header_adrs .tp_adrs a:hover {
  color: var(--active-link);
}

.top-header_adrs .tp_adrs a i {
  margin: 0 0.313rem;
}

.top-header_adrs .tp_adrs:nth-last-child(1) a {
  background-color: var(--pri-btn-bg);
  color: #FFF;
  text-transform: uppercase;

}

.top-header_adrs .tp_adrs:nth-last-child(1) a:hover {
  background-color: var(--button-book-now-bg);
}

/* top header Responsive */

/* TOP HEADER END ------------------------------------------------*/



/* NAVBAR -----------------------------------------------------------*/
.navbar {
  background-color: #FFF;

}

.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 8px !important;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.navbar.sticky .navbar-brand {
  margin-top: 0;

}

.navbar .navbar-brand>img {
  transition: transform 0.5s linear, opacity 0.5s ease;
  transform: translateY(0);
  opacity: 1;
}

.navbar.sticky .navbar-brand>img {
  opacity: 1;
  width: 110px;
}

@keyframes slideFadeUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  50% {
    transform: translateY(200px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.navbar.sticky .navbar-brand>img {
  animation: slideFadeUp 0.6s ease forwards;
}


.navbar .dropdown-item {
  text-transform: capitalize;
}

@media screen and (max-width:1200px) {
  .navbar-collapse {
    padding: 20px 0;
  }
}

.navbar .nav-item .nav-link {
  position: relative;
  color: var(--nav-link);
  font-weight: 500;
  margin: 0 12px;
  /* padding: 5px 6px; */
  text-transform: capitalize;
  white-space: nowrap;
}

@media (min-width:1200px) and (max-width:1400px) {
  .navbar .nav-item .nav-link {

    margin: 0 4px;

  }

}

.navbar .nav-item .nav-link:hover {
  color: var(--active-link);
}



.navbar .nav-link.active {
  color: var(--active-link);
}

.navbar-brand {
  margin-top: -50px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #FFF;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;

}


.navbar .nav-item:nth-last-child(1) .tp_adrs a {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: var(--pri-btn-bg);
  color: #FFF;
  text-transform: uppercase;
}

.navbar-toggler {
  outline: none;
  border: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}


/* navbar responsive */

@media screen and (max-width:550px) {
  .top-header_adrs {
    flex-wrap: wrap !important;
  }
}

@media(min-width:999px) {
  .navbar .nav-item .nav-link.active::before {
    opacity: 1;
  }



}

@media (max-width:800px) {
  .navbar-brand {
    margin-top: 0;
  }

  .navbar-brand img {
    width: 130px;
  }
}


@media screen and (max-width:767px) {
  .top-header_adrs {
    justify-content: center;
    flex-wrap: nowrap;
  }
}

/* NAVBAR END -----------------------------------------------------------*/





/* FOOTER start */

.footer {
  position: relative;
  background-color: var(--footer-bg);
  margin-top: -6px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../assets/ptrn-2.png);
  background-position: center center;
  background-size: cover;
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1643%) hue-rotate(349deg) brightness(119%) contrast(88%) opacity(0.7);
  z-index: 1;
}

.footer-title {
  color: orange;
  font-weight: 500;
  padding-bottom: 5px;
  position: relative;
  width: fit-content;
}

.footer>.wrapper {
  position: relative;
  z-index: 2;
}

.underline {
  position: relative;
  height: 2px;
  width: 60px;
}

.underline .ud {
  position: absolute;
  height: 1px;
  width: 12px;
}


.links li {
  position: relative;
}

.links li::before {
  content: '>';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFF;
  opacity: 0.7;
  transition: all 0.3s linear;
}

.links>li>a {
  color: #FFF;
  /* opacity: 0.7; */
  transition: all 0.3s linear;

}

.links li a:hover {
  color: var(--active-link);
  opacity: 1;
}

.links li:hover::before {
  color: var(--active-link);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--gray);
}

.ftr-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width:999px) {
  .ftr-bottom {
    flex-direction: column;
  }
}

.ftr-bottom span {
  color: #b7bbbb87;
  font-size: 14px;
}

.ftr-bottom span a {
  color: var(--pri-color);
  filter: opacity(0.6);
}

.footer-widget.sec {
  display: flex;
  justify-content: center;
}


@media screen and (max-width:992px) {
  .footer-widget.sec {
    justify-content: start;
  }
}

.footer-widget .adrs {
  display: flex;
  gap: 16px;

}

.footer-widget .links {
  margin-top: 24px;
  list-style: none;
}

.footer-widget .adrs i {
  color: var(--icon);
}

.footer-widget .adrs-text {
  color: #FFF;
}

.footer-widget .adrs-text>a {
  color: #FFF;
}

.footer-widget .adrs-text>a:hover {
  color: var(--active-link);
}

.footer-widget p {
  color: var(--pri-title);
  font-size: 13px;
  opacity: 0.5;
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

}

.footer-socials .icon {
  margin: 0 4px;
  background-color: #106c70;
  border: 1px solid #fff;
  border-radius: 50%;
  border: 2px solid #FFF;
}

.footer-socials .icon a {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}



.footer-socials .icon:hover a {
  color: var(--active-link);

}

.footer-socials .icon:hover {
  border: 2px solid var(--active-link);
}



/* SERVICE CARD */
.sec_5-card {
  display: flex;
  flex-direction: column;
  height: 100% !important;
  border-radius: 10px;
  overflow: hidden;
}

.sec_5-thumbnail {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  /* max-height: 350px; */
}


.thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  /* background: linear-gradient(#00000000, #0000009b); */
}





.thumb-overlay.sec {
  position: absolute;
  display: flex;
  align-items: end;
  justify-content: center;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(#00000000, #000000ee);
}

.thumb-overlay.sec .sec_5-title {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.divider {
  height: 2px;
  background-color: gray;
  border-radius: 100px;
  opacity: 25%;
  width: 100%;
}

.destination .sec_5-thumbnail.sec {
  max-height: 430px;
}

.sec_5-thumbnail.sec {
  background-color: #dee2e6;
}

.sec_5-thumbnail>img {
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.sec_5-thumbnail:hover>img {
  transform: scale(1.1);
}

.sec_5-title {
  display: block;
  color: #FFFF;
  font-size: clamp(17px, 1.5vw, 20px);
  min-height: 60px;
  text-align: center;
  text-transform: capitalize;
}

.sec_5-title:hover {
  color: var(--active-link) !important;
}





.sec_5-desc {
  display: block;
  font-size: 15px;
  color: #5b5b5b;
}

.sec_5-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex: 1;
  height: 100%;
  padding: 20px;
  background-color: #191e22;
}

.btn-wrapper {
  flex-wrap: wrap;
  gap: 14px;
}

.thumbnail-butn {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.btn-wrapper .butn_know-more {
  background-color: #f9a620;
  color: #FFF;
}

.btn-wrapper .butn_know-more:hover {
  background-color: var(--button-book-now-bg);
}

/* SECTION SERVICE */
.sec_5-card.pri {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.sec_5-card.pri .sec_5-content {
  background-color: #FFF;
}

.sec_5-card.pri .sec_5-title {
  color: var(--card-title);
  font-weight: 600;
}

.sec_5-card.pri .sec_5-content .desc {
  font-size: 15px;
  color: #191e22;
}

/* WHY CHOOSE US */

.why-choose {
  position: relative;
  background-image: url(../asset/kochi-taxi-service.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.why-choose::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000000b3;
}

.why-choose-body {
  background-color: #106b70bc;
}

.wch-count {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 600;
  border-radius: 100%;
  border: 1px solid #FFF;
  width: fit-content;
  height: 40px;
  width: 40px;
  font-size: 1em;
  padding: 10px;
}

.wch-title {
  display: block;
  color: #FFF;
  margin-top: 20px;
  margin-bottom: 10px;
  text-transform: capitalize;
}


.wch-desc {
  color: #FFf;
  font-weight: 300;
  font-size: 15px;
}

.wch-content {
  padding: clamp(25px, 4vw, 35px);
  height: 100%;

}

.wch-content:hover {
  background-color: #106c70;
}



.wch-content.sec .wch-link,
.wch-content.sec .wch-title {
  color: #000;
}

.wch-content.sec .wch-link:hover {
  color: var(--link-hover) !important;
}

.wch-content.sec:hover .wch-link,
.wch-content.sec:hover .wch-title {
  color: #FFF;
}





.wch-icon {
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  flex-shrink: 0;
  padding: 10px;
  background-color: #106c70;
  margin-right: 10px;
}



/* TESTIMONIAL */
.testimonial-wrapper {
  height: auto;
  width: 100%;
  background: rgb(255, 255, 255);
  margin-top: -5px;
}

.testi-head {
  text-align: center;
}

.testi-head h5 {
  color: #25bba5;
  font-weight: 700;

}

.testi-head h1 {
  color: #ffffff;
  margin-bottom: 40px;
}

.testimonial-container {
  width: 100%;
  padding: 100px 0;
}

.swiper-wrapper {
  /* padding: 30px 0; */
  padding-bottom: 20px;
}


#testi-slide {
  background-color: #fbfbfb;
  padding: 20px 30px 25px 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 10px -10px #000000;
  -moz-box-shadow: 0 10px 10px -10px #000000;
  box-shadow: 0 10px 10px -10px #000000;
}

#testi-slide p {
  font-size: 16px;
}

#testi-slide span {
  font-size: 14px;
  color: var(--sub-head-color);
}


.swiper-pagination-bullet {
  background: #15141467;
}

.swiper-pagination-bullet-active {
  background: #083335;
  height: 10px;
  width: 10px;
}

.test-img-container {
  display: flex;
  justify-content: center;
}

.testi-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 17px;


}



/* ABOUT */
.about {
  position: relative;

}

.content-container {
  padding-top: 40px;
  background-color: #FFF;
}

.about .ptr {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 10%;

}

.about-top-title {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.topbar_text_slider .slider-title {
  font-weight: 700;
  color: orange !important;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.105);
  user-select: none;
}

.bxslider {
  text-align: center;
  padding: 0;
  margin: 0;
  border: 0px !important;
}

.topbar_text_slider {
  margin-top: 0;
}

.bxslider li {
  padding: 15px 0;
}

.bx-wrapper {
  box-shadow: none;
  border: 0px !important;
  margin-bottom: 0px;
}

.bxslider.text li {

  background: none;
  background-color: transparent;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container>div {
  max-width: 80%;
  border-radius: 14px;
  overflow: hidden;
}

.image-container.sec>div {
  width: 100%;
  max-width: 95%;
}

.image-container>div>img {
  transition: all 0.3s linear;
}

.image-container>div:hover img {
  transform: scale(1.1);
}

.bottom-about-section {
  margin-top: -30px;
}

@media (min-width:2000px) {
  .bottom-about-section {
    margin-top: 0;
  }
}

@media (max-width:1200px) {
  .bottom-about-section {
    margin-top: 40px;
  }
}

.msv {
  position: relative;
  background-image: url(../asset/banner_01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* -------------------------------------------- */
.top-container {
  background-color: #106c70;
}

.bottom-wrapper {
  background-color: #083335;
}


.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  text-align: center;
}

.link-list li a {
  position: relative;
  color: #FFF !important;
  padding: 0 12px;
  white-space: nowrap;
}


.link-list li a:hover {
  color: var(--active-link) !important;
}

.link-list li a::after {
  content: '|';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFF;
  opacity: 0.7;
  transition: all 0.3s linear;
}


.swiper-button-next,
.swiper-button-prev {
  background-color: #083335;
  color: #FFF;
  font-size: 20px;
  height: 35px;
  width: 35px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1em;
}


/* packages */
.packages {
  position: relative;
  background-image: url(../asset/anju-cabs-customized-tour-package-booking-service.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.sec_4-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #00000096;
}


.sec_5-head {
  text-align: center;
  margin-bottom: 16px;
}

.sec_5-head .sec_5-title {
  height: fit-content !important;
  min-height: auto;

}

.sec_5-head .header-captio {
  color: gray !important;
}



/* contact page */
.contact .map {
  overflow: hidden;
  border-radius: 20px;
}

.contact_list {
  background-color: var(--sec-bg);
}

.cnt {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border-radius: 14px;
  height: 100%;
  background-color: #083335;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cnt:hover {
  transform: scale(1.03);
}

.cnt_icon {
  width: 60px;
  height: 60px;
  background-color: #106c70;
  padding: 12px;
  border-radius: 50%;
}

.cnt_icon img {
  filter: brightness(0) saturate(100%) invert(66%) sepia(96%) saturate(555%) hue-rotate(354deg) brightness(96%) contrast(111%);
}

.cnt_body {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.cnt_title {
  position: relative;
  display: inline-flex;
  color: #FFF;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}


.cnt_title::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 50%;
  height: 1px;
  width: 30px;
  background-color: #dadada;
}

.cnt_title::after {
  content: '';
  position: absolute;
  right: -35px;
  top: 50%;
  height: 1px;
  width: 30px;
  background-color: #dadada;
}

.cnt_body .txt {
  color: #f8f9fa;
  font-weight: 300;
}

.cnt_body .txt:hover {
  color: var(--active-link);
}



/* FEATURE BOX */
.feature-box {
  background-color: #25747884;
  padding: 50px;
  /* border-top-left-radius: 30%;
  border-bottom-right-radius: 30%; */
  position: relative;
  height: 100%;
  overflow: hidden;
}



.feature-box :hover .feature-img {
  background-color: #106c70;
}

.feature-box .feature-img {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  padding: 12px;
  border-bottom-left-radius: 30%;
  transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
}

.feature-box .feature-inner {
  z-index: 2;
}

.feature-box .feature-inner img {
  height: 40px;
  width: 40px;
}

.feature-box .feature-title {
  display: block;
  padding-right: 12px;
  font-weight: bold;
  font-size: 19px;
  margin-bottom: 16px;
}



.abts-wrapper {
  background-color: #f2f2f2;
}

.abts-main-wrapper {

  padding: 40px 0;
}

.main-abts-image {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);

}

.main-abts-cont h5 {
  color: var(--icon-color);
}

.main-abts-image .main-img-back {
  grid-column: 1 / -2;
  grid-row: 1;
  width: 100%;
  height: 90%;
  max-width: 355px;
  z-index: 1;
  background-color: #abbdcd;
}


.main-abts-image .main-img-front {
  grid-row: 1;
  grid-column: 2 / span 11;
  margin-top: 5%;
  width: 100%;
  height: auto;
  max-width: 370px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}


.abts-note {
  padding: 20px;
  background-color: #253745;
}


.sub-body-wrapper {
  padding: 40px;
}

.abts-note>h4 {
  color: #ffff;
  font-weight: 700;
}

.abts-note>p {
  color: #b5babd;
}


@media(min-width:768px) {
  .abts-body:nth-child(even) .prim-wrapper-left {
    order: 2;
  }

  .abts-body:nth-child(odd) .abts-note {
    margin-top: 20%;
    height: fit-content;


  }

  .abts-body:nth-child(even) .abts-note {
    margin-top: -5%;
    height: fit-content;

  }

  .abts-body:nth-child(even) .abts-img {
    margin-top: 10%;

  }
}

@media (max-width:768px) {
  .abts-img {
    margin-bottom: 10px;
  }

  .abts-note {
    margin-bottom: 30px;
  }
}

.main-img-back.se {
  background-color: #106b702c;
}

.main-img-back.s1 {
  background-color: #cddfea;
}



.service_card {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.service_card.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}


/* INFINITE MOVING CAROUSEL */
.infinite-carousel .slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.infinite-carousel .slider::before,
.infinite-carousel .slider::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 10%;
  z-index: 2;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.infinite-carousel .slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.infinite-carousel .slider::before {
  left: 0;
  top: 0;
}

.infinite-carousel .slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 18);
}

.infinite-carousel .slider .slide {
  width: 250px;
  margin: 0 20px;
}

.infinite-carousel .slider .slide img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 9));
  }
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
}


.sb-sec {
  position: relative;
  background-image: url(../asset/affordable-sabarimala-cab-service-in-kochi.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;

}


.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.sb-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.sb-table tr {
  overflow: hidden;
  border-radius: 100px;
  border: 1px solid #dddddd6d;
  background-color: rgba(23, 23, 23, 0.27);
}

.sb-table tr:first-child {
  background-color: #ffffff18;
}


.sb-table tr:first-child th:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.sb-table tr:first-child th:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.sb-table tr td:first-child {

  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-radius: 100px;
}

.sb-table tr td:nth-child(2) {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.sb-table tr td:first-child {
  background-color: #ffffff18;
}

.sb-table .sb-table tr th:first-child,
.sb-table tr td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.sb-table th {
  color: var(--active-link) !important;
}

.sb-table th,
.sb-table td {
  text-align: left;
  padding: 6px 16px;
  /* border-top: 1px solid #dddddd6d;
  border-bottom: 1px solid #dddddd6d; */
  color: #ffffff;
  white-space: nowrap;
  /* background-color: #ffffff; */
  transition: background-color 0.3s ease;
}

.sb-table tr:hover td {
  background-color: #f1f9ff;
  color: #000;
}




@media (max-width: 600px) {

  .modern-table th,
  .modern-table td {
    padding: 10px;
    font-size: 15px;
  }
}

.sec_5-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000d7;
}

/* TARIFF DETAILS */
.tariff-table{
    width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}


.tariff-table tr {
  overflow: hidden;
  border-radius: 100px;
  border: 1px solid #f3f0f0;
  background-color: #08333521;
}

.tariff-table th{
  color: #008000 !important;
}

.tariff-table th,
.tariff-table td {
  text-align: left;
  padding: 6px 16px;
  /* border-top: 1px solid #dddddd6d;
  border-bottom: 1px solid #dddddd6d; */
  color: #000000;
  white-space: nowrap;
  /* background-color: #ffffff; */
  transition: background-color 0.3s ease;
}

.tariff-table tr td:first-child {

  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.tariff-table tr td:last-child {

  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.tariff-table  tr:first-child th:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.tariff-table  tr:first-child th:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.tariff-table tr:hover td {
  background-color: #106c70;
  color: #ffffff;
}


@media (max-width: 600px) {

  .tariff-table  th,
  .tariff-table  td {
    padding: 10px;
    font-size: 15px;
  }
}



.custom-details {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  margin: 5px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.custom-details[open] {
  background-color: #eef6ff;
  border-color: #b3d4fc;
}

.custom-details p{
  margin-top: 20px;
}

.custom-details summary {
  font-weight: 600;
  cursor: pointer;
  color: #333;
  outline: none;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.custom-details summary::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}

.custom-details[open] summary::before {
  transform: rotate(90deg);
}


.sticky-butn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 3vw, 24px);
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.7px);
    -webkit-backdrop-filter: blur(2.7px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 100px;
    visibility: hidden;
    z-index: 999;
}


.image-wrapper{
  display: flex;
  justify-content: center;
}

.image-inner{
  max-width: 70%;
}

.box{
  background-color: #083335;
  padding: 30px;
  color: #FFF;
}


/* Form section background */
.booking-section {
  background: #f0f4f8;
}

/* Card styling */
.booking-form {
  transition: all 0.3s ease-in-out;
}

/* Floating label fix for select */
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}


.form-control{
  padding: 10px;
}

.form-floating label{
  margin-left: 12px;
}

.form-control:focus,
.form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.25);
}


.btn-submit{
  background-color: #106c70;
  color: #FFF;
  border-radius: 100px;
}

.btn-submit:hover{
  background-color: #083335;
  color: #FFF;
}




.booking-form h3 {
  font-size: 1.5rem;
  color: #222;
}



.form-wrapper{
  position: relative;
  background-image: url(../asset/banner_01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}