/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* import files */
@import url("../css/fonts.css");
@import url("../css/header_footer.css");
:root{
  --outfit: "Outfit", sans-serif;
  --blue: #001F3F;
  --blue-8: rgba(0, 31, 63, 0.8);
  --red: #EA4335;
  --black:#121212;
  --black-5:rgba(18, 18, 18, 0.5);
  --black-6: rgba(18, 18, 18, 0.6);
  --black-7: rgba(18, 18, 18, 0.7);
  --black-8: rgba(18, 18, 18, 0.8);
  --gray-6: #E0E0E099;
  --white: #FFFFFF;
  --white-5:rgba(255, 255, 255, 0.5);
  --white-7:rgba(255, 255, 255, 0.7);
  --white-05:#FFFFFF0D;
}
html {
  scroll-behavior: smooth;
}
body{
  font-family: var(--outfit);
  font-weight: 400;
  line-height: 1.5;
  color: var(--black-6);
  background: #FFF;
  overflow-x: hidden;
}
a, a:hover{
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
a:hover{
  color: var(--red);
}
button, input, textarea, select {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
main{
  padding: 80px 0 0;
}
section{scroll-margin-top: 80px;}
/* ---------------- Home [ START ] ------------------ */
.home-banner-blog{
  position: relative;
}
.home-banner-blog video, .home-banner-blog iframe{
  min-width: 100%;
  width: 100%;
  min-height: 100%;
  height: 750px;
  object-fit: cover;
  background: #000;
}
.main-title{
  font-weight: 600;
  font-size: 46px;
  color: var(--blue);
  margin-bottom: 60px;
  text-align: center;
  display: block;
}
.tour-area{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
/* Tour blog */
.tour-blog{
  padding: 100px 0;
  position: relative;
}
.tour-tabs{
  width: 100%;
}
.tour-tabs .nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 75px;
  margin: 0 auto 40px;
}
.tour-tabs .nav-link{
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 400;
  font-size: 24px;
  color: var(--black);
  opacity: 0.5;
  padding: 0 15px 20px;
  border-bottom: 1px solid transparent;
  border-radius: 0;
}
.tour-tabs .nav-link svg{
  width: 22px;
  height: 22px;
}
.tour-tabs .nav-link.active{
  opacity: 1;
  color: var(--black);
  border-color: #C7A17A;
  background: transparent;
}
.tour-tabs .nav-link.active span svg{
  transform: rotate(180deg);
  transition: 0.3s ease-in-out;
}
.tour-listing{
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column;
  gap: 25px;
}
.tour-listing li a{
  font-weight: 500;
  font-size: 28px;
  color: var(--black);
  display: block;
}
.tour-listing li a:hover, .tour-listing li a.active{color: var(--red);}
/* .map-area img{
  display: none;
}
.map-area img.active{
  display: block;
} */
.vertical-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: var(--blue);
  writing-mode: vertical-rl;
  transform: rotate(180deg); 
  margin: 0;
}
/* ----------------- SERVICE  [ START ] ----------------- */
.service-blog{
  padding: 60px 0;
  position: relative;
  background: #E0E0E04D;
}
.services-listing{width: 100%;}
.top-title-data{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.service-bx{
  background: #FFFFFF;
  border: 1px solid #12121233;
  border-radius: 20px;
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;     
  height: 100%;
}
.service-img{
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 20px;
}
.service-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
.service-bx h4{
  font-weight: 600;
  font-size: 24px;
  color: #121212;
  margin-bottom: 8px;
}
.service-bx p{
  font-weight: 400;
  font-size: 18px;
  color: #12121299;
  margin-bottom: 10px;
}
.service-bx p:last-child{
  margin-bottom: 14px;
}
.service-bx p strong{
  color: var(--red);
  font-weight: 400;
}
.common-btn{
  position: relative;
  display: block;
  padding: 10px 18px;
  text-align: center;
  background: var(--blue);
  color: #fff !important;
  border-radius: 14px;
  overflow: hidden;                 
  z-index: 1;
  font-weight: 500;
  font-size: 18px;
}
.common-btn::before {
  content: "";
  position: absolute;
  top: -100%;                         
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  transition: all 0.35s ease;
  z-index: -1;
}
.common-btn:hover::before {
  top: 0;                             
}
.service-bx .common-btn, .week-bx .common-btn {
  margin-top: auto;
}
/* ----------------- SERVICE  [ END ] ----------------- */
/* -------------- iamge of the week ------------- */
.image-week-blog{
  padding: 100px 0;
  position: relative;
}
.week-bx{
  background: #FFFFFF;
  border: 1px solid #12121233;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-bx:hover, .week-bx:hover{
  border: 1px solid var(--blue);
}

.week-of-img{
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.week-of-img img{
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  width: 100%;
}
.week-dtls-txt{
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1; 
  position: relative;
}
.week-txt{
  font-size: 18px;
  color: #12121299;
  margin-bottom: 12px;
  position: relative;
  /* display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden; */
}
.week-txt.expanded {
  -webkit-line-clamp: unset; 
}
.read-more-btn {
  font-size: 18px;
  color: #121212;
  cursor: pointer;
  /* background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;         */
}
.published-date{
  font-weight: 400;
  font-size: 18px;
  color: #121212;
  margin-bottom: 14px;
  display: block;
}
.tour-btn{
  margin: 40px 0 0;
}
.tour-btn .common-btn{
  width: fit-content;
  padding: 14px 74px;
}
/* ---------------- Home [ END ] ------------------ */
/* ------------ Tour Details [ START ] -------------------- */
.tout-dtls-blog{
  padding: 40px 0 100px;
  position: relative;
}
.tour-dtls-top{
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 54px;
}
.tour-dtls-top a{
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FAFAFA;
  border: 1px solid #1212121A;
  border-radius: 14px;
  padding: 10px 20px;
  width: fit-content;
  font-weight: 500;
  font-size: 18px;
  color: #121212;
}
.tour-dtls-top a:hover{
  color: var(--red);
  border-color: var(--red);
}
.tour-dtls-top a:hover svg path{
  stroke: var(--red);
}
.tour-dtls-top h1{
  font-weight: 600;
  font-size: 28px;
  color: #121212;
  margin-bottom: 0;
}
.tour-img{
  text-align: center;
  margin-bottom: 40px;
}
.note-txt{
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--black-7);
  margin-bottom: 20px;
}
.note-txt span{
  color: #EA4335;
}
.tour-dtls-area h2{
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--blue);
}
.tour-dtls-area p{
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--black-6);
}
.tour-dtls-list{
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 20px;
}
.tour-dtls-list ul{
  padding: 0 0 0 20px;
  margin: 0;
}
.tour-dtls-list ul li{
  font-weight: 500;
  font-size: 22px;
  list-style: disc;
  color: var(--black);
  margin-bottom: 5px;
}
.tour-dtls-list ul li p{
  display: block;
  font-weight: 400;
  font-size: 20px;
  color: #121212;
  margin-bottom: 0;
}
.red-txt{
  color: var(--red) !important;
}
.gallery-list{
  display: flex;
  align-items: center;
  gap: 19px;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-list img{
  border-radius: 20px;
  width: 200px;
  height: 200px;
}
.book-btn{
  width: 100%;
}
.book-btn .common-btn{
  width: fit-content;
  margin: 0 0 0 auto;
  padding: 15px 36px;
}
/* ------------ Tour Details [ END ] -------------------- */
/* --------------- Contact us ------------ */
.contact-blog{
  padding: 0 0;
  position: relative;
  background: url(../images/contact-us.png) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
.contact-dtls{
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 50px;
}
.contact-dtls h1{
  font-weight: 600;
  font-size: 50px;
  color: var(--white);
  margin-bottom: 0;
}
.contact-grp-btn{
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact-grp-btn a{
  position: relative;
  display: block;
  width: fit-content;
  color: #fff !important;
  border-radius: 14px;
  overflow: hidden;                 
  z-index: 1;
  font-weight: 500;
  font-size: 28px;
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0);
   /* backdrop-filter: blur(164px);
  -webkit-backdrop-filter: blur(164px); */
  text-align: center;
  padding: 12px 24px;
  white-space: nowrap;
}
.contact-grp-btn a::before {
  content: "";
  position: absolute;
  top: -100%;                         
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transition: all 0.35s ease;
  z-index: -1;
}
.contact-grp-btn a:hover::before {
  top: 0;                             
}
.contact-media{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.contact-media a:hover{
  transform: translateY(-8px)
}
.contact-media a:hover svg path{
  stroke: var(--blue);
}
.contact-media a:last-child:hover svg path{
  fill: var(--blue);
}
/* -------------- our team -------------- */
.page-title{
  position: relative;
  background: url(../images/page-bg.png)no-repeat;
  background-size: cover;
  background-position: center;
  height: 440px;
}
.team-blog, .gallery-blog, .faq-blog{
  padding: 60px 0 100px;
  position: relative;
}
.team-card{
  background: #FFFFFF;
  border: 1px solid #12121233;
  border-radius: 20px;
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;     
  height: 100%;
}
.team-card:hover{
  border: 1px solid var(--blue);
}
.team-img {
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 16px;
  aspect-ratio: 282 / 233;
}
.team-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease-in-out;
}
.team-info{
  text-align: center;
}
.team-info h3{
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: var(--blue);
  margin-bottom: 4px;
}
.team-info p{
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin-bottom: 4px;
}
.team-info a{
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-decoration: underline;
  color: var(--black-8);
}
.team-info a:hover{
  color:  var(--red);
}
.service-bx .service-img img,
.week-bx .week-of-img img,
.team-card .team-img img {
  transition: transform 0.5s ease-in-out;
}
.service-bx:hover .service-img img,
.week-bx:hover .week-of-img img,
.team-card:hover .team-img img {
  transform: scale(1.1) rotate(2deg);
}
.wd-mb-24{
  margin-bottom: 24px;
}
/* ------------------ gallery ------------------- */
.masonry {
  column-count: 4;        
  column-gap: 21px;
}
.masonry img{
  width: 100%;
  margin-bottom: 21px;
  border-radius: 12px;
  display: block;
  break-inside: avoid;    
}
@media (max-width: 992px) {
  .masonry {column-count: 3;}
}

@media (max-width: 768px) {
  .masonry {column-count: 2; column-gap: 15px;}
  .masonry img{margin-bottom: 15px;}
}
@media (max-width: 375px) {
  .masonry { column-count: 1;}
}

/* ----------------- faq ------------- */
.custom-accordion .accordion-item {
  background: #FFFFFF;
  border: 1px solid #12121233;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px;
}
.custom-accordion .accordion-item:has(.accordion-collapse.show) {
  border: 1px solid var(--blue);
  box-shadow: none;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.accordion-item:first-of-type{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.custom-accordion .accordion-button {
  font-weight: 500;
  font-size: 22px;
  color: #121212;
  background-color: #FFFFFF;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
}
.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.custom-accordion .accordion-button::after {
  display: none;
}
.custom-accordion .icon-wrap {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}
.custom-accordion .accordion-button:not(.collapsed) .icon-wrap {
  transform: rotate(180deg);
}
.custom-accordion .accordion-button:not(.collapsed) .icon-wrap svg g{
  opacity: 1;
}
.custom-accordion .accordion-body{
  padding: 8px 0 0 0;
}
.custom-accordion .accordion-body p {
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  color: var(--black-8);
}
/* Smooth accordion animation */
.custom-accordion .accordion-collapse {
  transition: height 0.35s ease, opacity 0.35s ease;
  overflow: hidden;
}
.custom-accordion .accordion-collapse.collapsing {
  opacity: 0;
}
.custom-accordion .accordion-collapse.collapse.show {
  opacity: 1;
}
/* ------------------Karuna Our Fleet [ START ]------------------ */
.fleet_blog{
  padding: 60px 0;
}
.fleet_listing{
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 50px;
  margin-bottom: 50px;
}
.fleet_listing li a{
  padding: 0 16px 20px;
  border-bottom: 1px solid transparent;
  color: rgb(18 18 18 / 50%);
  font-weight: 400;
  font-size: 20px;
}
.fleet_listing li a.active{
  color: rgb(18 18 18 / 100%);
  font-weight: 500;
  border-bottom: 1px solid #C7A17A;
}
.fleet_blog h1{
  font-weight: 400;
  font-size: 30px;
  color: #121212;
  text-align: center;
  margin-bottom: 50px;
}
.fleet_flx{
  max-width: 100%;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 50px;
}
.fleet_item h4{
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 5px;
  color: #121212;
  text-align: center;
}
.fleet_item span{
  font-weight: 300;
  font-size: 20px;
  color: rgb(18 18 18 / 70%);
  display: block;
  text-align: center;
}
.imgs_grp{
  display: flex;
  align-items: center;
  flex-direction: column;
  grid-gap:18px;
}
.imgs_grp img{
  border-radius: 30px;
  height: auto;
  object-fit: cover;
}
.fleet_txt h2{
  color: #19204C;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
}
.fleet_txt{
  margin-bottom: 20px;
}
.fleet_txt p{
  font-weight: 400;
  font-size: 18px;
  color: rgb(18 18 18 / 60%);
  margin-bottom: 12px;
}
.fleet_txt p:last-child{
  margin-bottom: 0;
}
.note-txt{
  font-weight: 600;
  font-size: 24px;
  color: var(--black);
  margin: 22px 0 0;
}
.fleet-banner{
  background: url(../images/our-fleet/fleet-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  height: 440px;
  width: 100%;
}
/* ------------------Our Fleet [ END ]--------------------- */
.map-area {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.map-area img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: 100%;
  height: auto;
  opacity: 0;
  z-index: 0; /* default */
  transition: opacity 0.3s ease;
}

/* The visible image */
.map-area img.visible {
  opacity: 1;
  z-index: 1;
}
