@import url('https://fonts.googleapis.com/css2?family=Birthstone&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins: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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Nanum+Pen+Script&display=swap');
:root{
    --primary-text:#000;
    --secondery-text: #EE7E23;
    --skyblue-text: #01A8E1;
    --primary-bg: #EE7E23;
    --skyblue-bg:#01A8E1;
    --light-blue-bg: #EDFAFF;
    --light-orange-bg:#fff3ea;
}
html, body {
  overflow-x: hidden;
}
html{
    scroll-behavior: smooth;
}

body{
    color:var(--primary-text);
    font-size: 16px;
    font-weight: 400;
    line-height:25px;
    font-family: "Poppins", sans-serif;
}

/* ---- default ---- */
p, a, ul li{
    text-decoration: none;
    color:var(--primary-text);
    font-size: 16px;
    font-weight:400;
    font-family: "Poppins", sans-serif;
   line-height: 25px;
}
ul,ol,figure{
    margin: 0;
}

button:focus, .btn:focus, .navbar-toggler:focus, .form-control:focus{
    box-shadow: none;
}

/* ---- font ---- */

.fw-light {font-weight: 300 !important;}
.fw-normal {font-weight: 400 !important;}
.fw-semibold{font-weight: 500!important;}
.fw-bold{font-weight: 600!important;}
.primary-text {color: var(--primary-text)!important;}
.secondery-text{color: var(--secondery-text)!important;}
.dark-blue-text{color:#0986B1;}
.skyblue-text{color: var(--skyblue-text)!important;}
.primary-bg{background-color: var(--primary-bg)!important;}
.skyblue-bg{background-color: var(--skyblue-bg)!important;}
.light-blue-bg{background-color: var(--light-blue-bg)!important;}
.light-orange-bg {background-color: var(--light-orange-bg) !important;}
.justify-items-end {justify-items: end;}

/* Popup overlay */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* When active */
.popup.active {
  display: flex;
  opacity: 1;
}

/* Popup box - smaller height and width */
.popup-content.travel-popup {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 42%;             /* smaller width (half screen looked big) */
  max-width: 750px;
  min-width: 500px;
  position: relative;
  transition: all 0.5s ease;
  margin-top: 350px;      /* your jQuery animation base */
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

/* Adjust image side */
.popup-left {
  background: #f8f8f8;

}

.popup-left img {
  width: 100%;
       /* smaller image */
  height: auto;
  border-radius: 8px;
}

/* Adjust form side */
.popup-right {
  padding: 20px;
}

.send-form .form-control,
.send-form textarea {
  font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(181, 181, 181, 1),;

}

.send-form textarea {
  resize: none;
  height: 80px;           /* smaller textarea */
}

.theme-btn {
  font-size: 14px;
  padding: 8px 20px;
}

/* Close (X) button */
.fade-out {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

/* Responsive: stack on small screens */
@media (max-width: 992px) {
  .popup-content.travel-popup {
    width: 90%;
    min-width: auto;
  }
  .row.g-0 {
    flex-direction: column;
  }
  .popup-left img {
    max-width: 180px;
  }
}

/* ---- font ---- */
.theme-btn {
  width: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding:4px 20px;
  background-color: var(--primary-bg);
  border: none;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.theme-btn a{
  color: #fff;
  font-weight:400;
  font-size: 15px;
}
.theme-btn2 {
  width:max-content;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding:4px 18px;
  background-color: var(--skyblue-bg);
  border: none;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.button--webcoderskull::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:var(--skyblue-text);
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale3d(0.1, 1, 1);
	transform: scale3d(0.1, 1, 1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--webcoderskull:hover::before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.theme-btn2:hover {background-color: var(--primary-bg);}
.get-btn {background-color: var(--skyblue-bg);border-radius: 5px;border: none;padding:4px 10px;}
.get-btn a {font-size: 15px;}
.get-btn:hover {background-color: var(--primary-bg);}


/* Heading*/
.heading-style{
    font-size:42px;
    color: var(--primary-color);
    font-weight: 700;
    line-height:50px;
    margin-bottom:30px;
    font-family:  "Montserrat", sans-serif;
    text-transform: capitalize;
    position: relative;
}
.heading-style:after{content: '';position: absolute;width:60%;height:1px;background-color: var(--primary-bg);background-color: var(--primary-bg);right:0; bottom: 48%;}
.heading-style3:after {
    content: '';
    position: absolute;
    width:52%;
    height: 1px;
    background-color: var(--primary-bg);
    background-color: var(--primary-bg);
    right: 0;
    bottom: 21%;
}
.highlight{
    font-size:34px;
    color: var(--skyblue-text);
    font-weight:500;
    font-family: "Lobster Two", sans-serif;
}

.highlight2{
    font-size:34px;
    color: var(--secondery-text);
    font-weight:500;
    font-family: "Lobster Two", sans-serif;
}

.heading-style2, .heading-style3, .heading-style4, .heading-style5{
    font-size:42px;
    color: var(--primary-color);
    font-weight: 700;
    line-height:50px;
    margin-bottom:30px;
    font-family:  "Montserrat", sans-serif;
    text-transform: capitalize;
    position: relative;
}
.heading-style4:after{ content: '';
    position: absolute;
    width:43%;
    height: 1px;
    background-color: var(--primary-bg);
    background-color: var(--primary-bg);
    right: 0;
    bottom: 21%;}

    .heading-style5:after{ content: '';
    position: absolute;
    width:35%;
    height: 1px;
    background-color: var(--primary-bg);
    background-color: var(--primary-bg);
    right: 0;
    bottom: 21%;}

/* 
.heading-style3{
    font-size:40px;
    color: var(--primary-color);
    font-weight: 700;
    line-height:50px;
    margin-bottom:30px;
    font-family:  "Montserrat", sans-serif;
    text-transform: capitalize;
    position: relative;
} */


/* form */
.form-control:focus{
    border-color: var(--orange-dark-color);
}
.form-floating > label {
    padding: 0.8rem .75rem;
}
.form-floating .form-control[required],
.form-floating .form-control.required {
    position: relative;
}
.form-floating .form-control[required] + label::after,
.form-floating .form-control.required + label::after{
    content: "*";
    color: rgb(224, 23, 23);
    font-size: 14px;
    position: absolute;
    top: 8px;
    right: 5px;
}

/* table */
.table thead{
    font-size: 20px;
    font-weight: 600;
    background-color: #D16729;
}
.table tr th{
    padding: 10px 20px;
}
.table tr td{
    padding: 8px 20px;
}
.table tr th:not(:last-child),
.table tr td:not(:last-child){
    border-right: 1px solid #696969;
}

/* default */
.section-space{
    padding:80px 0px;
}
.section-space2{
    padding:60px 0px;
}
.section-space-top{
    padding-top:80px
}
.section-space-bottom{
    padding-top:80px
}

/* ---- header ---- */

.fixed-top{
  background:#fafafa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.fixed-top .navbar {border-top: 0px !important;}
.menu-section .navbar {border-top: 1px solid #ddd;padding: 0;}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
.navbar-light .navbar-nav .nav-link {
  padding:17px 15px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight:400;
  text-transform:capitalize;
  outline: none;
}
.navbar-light .navbar-nav .nav-link:hover{
  color: var(--secondery-text) !important;
  border-top: 2px solid var(--secondery-text);
  font-weight:600;
  padding:16px 14.5px;
}
.navbar-light .navbar-nav .nav-link.active {
  color: var(--secondery-text) !important;
  border-top: 2px solid var(--secondery-text);
  font-weight:600;
}
.dropdown-menu {padding: 0;width: max-content;}
.dropdown-item {padding:0px;font-weight: 500;}
.dropdown-item:focus, .dropdown-item:hover{ background:none;color: #ffffff;}

.menu-circle-bg{
  position: relative;
  width: 42px;
  height:42px;
  background-color: #e6e6e6;
  padding:6px;
  border-radius: 50%;
  transition: background-color 0.3s ease, filter 0.3s ease;
  display: inline-block;
  align-items: center;
    vertical-align: middle;
    text-align: center;
    margin-right: 5px;
}
.dropdown-menu li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding:7px 20px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.dropdown-menu li span {
  color: #000;
  margin-left:10px;
  text-transform: capitalize;
}
.dropdown-menu li:hover .menu-circle-bg{background-color:#fff;}
.dropdown-menu li.active .menu-circle-bg{ background-color:var(--primary-bg);}
.dropdown-menu li.active .menu-circle-bg { background-color: #fff;}
.dropdown-menu li.active img {filter: none;}
.dropdown-menu li img {
    width: auto;
    height:25px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
}
.dropdown-menu li:hover span, .dropdown-menu li.active span { color: #ffff;}
.dropdown-menu li:hover img {filter:none;}
.dropdown-menu li:hover, .dropdown-menu li.active {background-color:var(--primary-bg);} 
/* 
.dropdown-menu li.active img {filter: brightness(0) invert(1);}
.dropdown-menu li.active span {color: #fff;}

.dropdown-menu li:first-child:hover, .dropdown-menu li:first-child.active {background-color:var(--primary-bg);}
.dropdown-menu li:last-child:hover, .dropdown-menu li:last-child.active { background-color:var(--primary-bg);}
.dropdown-menu li:hover {background-color:var(--primary-bg);color: #ffff;}
.dropdown-menu li:hover span{ color: #ffff;}
.dropdown-menu li.active { background-color:var(--primary-bg); }
 */
@media (min-width:1100px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
        .navbar-expand-md .navbar-toggler {
        display: none;
    }
}
@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link  {
      margin-right: 0;
      padding: 10px 0;
  }

.navbar-light .navbar-nav {padding:10px!important;}
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: black;
  font-weight: 500;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    background-color: #F9F9F9;
      display: block;
      border: none;border-radius: 0;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}

.bounce-button {
 display: inline-block;
animation: smooth-bounce 2s ease-in-out infinite;
box-shadow: 0px 4px 3px #ddd;
}
@keyframes smooth-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* -- breadcrumb -- */
.breadcrumb {
margin: 0;
}
.page-banner{
   background:url(../images/bg/breadcrumb.jpg);
       height: 200px;
    align-content: center;
    position: relative;
    background-repeat: no-repeat;
    background-position: right center;
    width: 100%;
    background-size: cover;
}
.page-banner .breadcrumb .breadcrumb-item a{
   color: #ffffff;
   font-size:16px;
}
.page-banner .breadcrumb .breadcrumb-item{
   color: #ffffff;
   font-size:16px;
}
.page-banner .breadcrumb .breadcrumb-item svg{
  padding: 0 3px;
}
.page-banner.large-banner{
   height: 290px;
   padding-bottom: 60px;
}
.breadcrumb-item+.breadcrumb-item::before{
  display: none;
}
.breadcrumb-item+.breadcrumb-item{padding: 0px;}
.breadcrumb-img figure {
    position: absolute;
    right:8%;
    bottom: -35%;
    width:36%;
}


#blinking-button {
  background-color:var(--skyblue-bg);
  color: white;
  animation: blink 3s linear infinite;
}

@keyframes blink {
  0%, 100% {background-color:var(--skyblue-bg);}
  50% {background-color:#ee7e23;}
}

/* ---- banner section ---- */
.hero-slider {
  width: 100%;
  height:700px;
  display: flex;
  position: relative;
  z-index: 0;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.slide-inner {
  width: 100%;
  height:565px;
  position: absolute;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  border-radius: 0 0 40px 40px;
}

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  width: 100%;
  height:565px;
  z-index: 1;
  border-radius: 0 0 40px 40px;
}

/* Slide Text */
.hero-style {
  height:565px;
  transition: all 0.4s ease;
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 690px;
}

.hero-style .slide-title h2 {
  font-size: 100px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 40px;
  text-transform: capitalize;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-style .slide-text p {
  font-size: 32px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

.slide-btns a:first-child {
  margin-right: 10px;
}

/* Swiper Arrows */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width:50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #f0f0f0;
  background: transparent;
  text-align: center;
  line-height:47px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-prev:before,
.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #f0f0f0;
  display: inline-block;
}

.hero-slider .swiper-button-prev:before {
  content: "\f060";
}

.hero-slider .swiper-button-next:before {
  content: "\f061";
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
  text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.slide-bg-image {
  background-size: cover;
  background-position: center;
}
/* .slide-bg-image[data-background] {

} */



.abt-2{position: relative;top: -44px;}
.abt-1 img{border-radius: 0px 0px 0px 30px}
.abt-2 img{border-radius: 0px 30px 0px 0px}
.wrapper {
  overflow: hidden;
  width: 100%;
}

.wrapper .swiper-slide {border: none;border-radius: 20px;}
.card .card-image {position: relative;}
.card .card-image img { width: 100%;border-radius: 20px;border: none;}
.card .card-image .card-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  padding:3px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.932);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes autoplay-loading {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.swiper-button-next:after, .swiper-button-prev:after{display: none;}
/* .wrapper :where(.swiper-button-prev, .swiper-button-next) {
  color: #6366f1;
  margin-top: -35px;
  transition: all 0.3s ease;
}
.wrapper :where(.swiper-button-prev, .swiper-button-next):hover {
  color: #8b5cf6;
}
@media (max-width: 768px) {
  .wrapper {
    margin: 0 10px 25px;
  }
  .wrapper :where(.swiper-button-prev, .swiper-button-next) {
    display: none;
  }
} */
.loc-icon {width:15px !important;margin-right:2px;}
.holiday-section {background-image: url(../images/holiday.webp);background-size: cover;background-position: center;}
.special-deal-section img {border-radius: 20px;}
.deal  {position: absolute;left:32%;top:10%;}
.swing {
    animation: swing ease-in-out 1s infinite alternate;
    /* transform-origin: center -20px; */
}
 
@keyframes swing {
    100% { transform: rotate(-3deg); }
    0% { transform: rotate(3deg); }
}
.carousel-item{background-size:cover;background-repeat: no-repeat;height: 450px;}
.carousel-item button{position: absolute;bottom:12%;left:9%;}
.quotes-slide--active {
    transform: scale(1.2);
    z-index: 10;
    opacity: 1;
    border: none;
    box-shadow: 1px 0px 10px 5px #eaeaea;
    color: #222222;
}


.travel-support figure img{position: relative;}
.travel-support figure img::before{
  content: '';
  position: absolute;
  background-color: var(--primary-bg);
  width: 80%;
  height: 80%;
}

/**** Why Choose  *****/
.why-choose {background-color:#004267;}


/**** Testimonal  *****/
.slick-slide {
  transform: scale(0.9);
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.075);
}

.slick-slide img {
 opacity: 0.5;
  transition: all 0.4s ease-in-out;
  filter:brightness(0) contrast(-50);
}
.slick-slide img:first-child {
  opacity:1;     
  transition: all 0.4s ease-in-out;
  width: 14%;
  margin-top: 20px;
}
.slick-center img:last-child {
 opacity: 0.1;
  transition: all 0.4s ease-in-out;
  filter: invert(40%) sepia(30%) saturate(200%) hue-rotate(-10deg);
}
.slick-center {
  transform: scale(1.1);
  background-color:rgba(255, 237, 222, 1);
  box-shadow: none !important;
  z-index:9;
}
.slick-center .shadow-effect{
  padding: 45px 25px;
}
/**** Testimonial Cards Alignment Fix *****/
.testimonial-slider .testimonial-item {
  padding: 15px;
  height: 100%;
  display: flex;
  align-items: stretch;
}

/**** Testimonial Cards Alignment Fix *****/
.testimonial-slider .testimonial-item {
  padding: 15px;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.shadow-effect {
  padding: 35px 25px 40px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Equalize star + text + name spacing */
.shadow-effect p {
  flex-grow: 1;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Active center card highlight */
.testimonial-slider .slick-center .shadow-effect {
  background: #facea9;
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

/* Smooth transition for all cards */
.testimonial-slider .slick-slide {
  transition: all 0.4s ease-in-out;
  padding: 10px 15px;
}

.img-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.testimonial-name {
  margin-top: 10px;
}

.designation {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
}

.designation span {
  font-size: 13px;
}

.ratings i {
  color: #fbb217;
  font-size: 14px;
}
.bg-red  {background-color:#E41E25;border-radius: 0px 10px 0 0;}
.cursive {font-family: "Birthstone", cursive;font-weight: 400;font-size:38px;}
.rounded-tlbr {border-radius: 30px 0px;}
.footer-section {background-image: url(../images/footer-bg.png);background-repeat: no-repeat;background-size: cover;}
.foot-logo img{width: 220px;}
.foot-cont h4, .foot-list h4{color:#FFAC68;font-size: 23px;margin-bottom:25px;}
.foot-social ul li a, .foot-list ul li, .foot-list ul li a{color: #fff;}
.foot-social ul li:hover {margin-top: -5px; transition: 0.2s;}
.foot-social ul li a:hover {color:rgb(120, 212, 255); transition: 0.2s;}
.foot-list ul li:hover {color:#00beff;}
.foot-cont ul li{color: #ffff;padding-left:52px;position: relative;}
.social-icon {background-color: #fff;border-radius: 40px;color: var(--primary-bg);padding:5px;width: 30px;
  line-height:20px;text-align: center;position: absolute;left:0%;}
  .foot-list ul li:hover a {color:rgb(120, 212, 255);}
.text-light-og{color:#FFAC68;}
.copyright {border-top: 1px solid #d8d4d445;}
.crafted{font-family: "Nanum Pen Script", cursive; font-size:21px;}
button.call-ap-btn {
	outline: none;
	width:42px;
	height:42px;
	border: 0;
	background-color: #00b3fb;
	padding: 0;
	border-radius: 100%;
	cursor: pointer;
  color: #ffffff;
  font-size:20px;
}

button.call-ap-btn:hover {
	opacity: 1;
	background-color:#3fb3e0;
}

/* call */
.call-api {
	position: fixed;
	bottom: 0;
	right: 0;
}

.call-fixed {
	margin-right: 15px;
	margin-bottom: 15px;
}
.call-fixed > a {
	display: block;
	text-decoration: none;
}
.call-fixed > a:hover button.call-ap-btn::before {
	opacity: 1;
	width: auto;
	padding-top: 7px;
	padding-left: 10px;
	padding-right: 10px;
	width: 100px;
}
.wh-ap-btn i{font-size:28px;color: #fff;}

.call-pulse {
	right: 10px;
	bottom:10px;
	position: fixed;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	border-radius: 50%;
	z-index: 99;
	display: inline-block;
	line-height: 65px;
}


/* Whatsapp */
button.wh-ap-btn {
	outline: none;
	width:45px;
	height:45px;
	border: 0;
	background-color: #2ecc71;
	padding: 0;
	border-radius: 100%;
	cursor: pointer;
  line-height:55px;
}

button.wh-ap-btn:hover {
	opacity: 1;
	background-color: #20bf6b;
}
.wh-api {
	position: fixed;
	bottom: 0;
	right: 0;
}

.wh-fixed {
	margin-right: 15px;
	margin-bottom: 15px;
}

.wh-fixed > a {
	display: block;
	text-decoration: none;
}

.wh-fixed > a:hover button.wh-ap-btn::before {
	opacity: 1;
	width: auto;
	padding-top: 7px;
	padding-left: 10px;
	padding-right: 10px;
	width: 100px;
}
.wh-ap-btn i{font-size:28px;color: #fff;}
.whatsapp-pulse {
	right: 10px;
	bottom: 10%;
	position: fixed;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	border-radius: 50%;
	z-index: 99;
	display: inline-block;
}

/******* popup *******/

.main-btn-rect,
.main-btn-circle{
	position: relative;
	margin: 0;
	color: #FFFFF0;
	background-color:var(--primary-bg);
	text-transform: uppercase;
	font-size:16px;
	letter-spacing: 1px;	
	outline: none;
	cursor: pointer;
	z-index: 100;
}
.main-btn-rect {
	padding: 10px 80px;
	line-height: 30px;
}
.main-btn-rect:before, 
.main-btn-rect:after{
  position: absolute;
  content: '';
  top:0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 240, 0.2);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.main-btn-rect:before {
  left: 0;
}
.main-btn-rect:after {
  right: 0;
}
.main-btn-rect:hover:before, 
.main-btn-rect:hover:after{
  width: 50%;
}
.main-btn-circle{
	height: 33px;
	width: 33px;
	-webkit-border-radius: 50%;
	border-radius: 100%;
	line-height: 33px;
  -webkit-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.main-btn-circle:hover{   
  -webkit-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  -moz-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
}
.popup{
  position: fixed;
	top: 100%;
  width: 100%;
  height: 100%;
  z-index: 10001;
}
.popup.active{
  top:0;
  background-color:rgb(3 3 3 / 81%); 
  transition: background-color .6s ,opacity .6s;
}
.popup .main-btn-rect{
  padding: 10px 100px;
}
.popup .popup-content{
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 568px;
  min-width:450px;
  margin-top: 150px;
  padding:45px 25px;
  background-color:#fcfcfc;
  color: #070000;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transition: margin .6s;
  -webkit-transition: margin .6s;
  -moz-transition: margin .6s;
  -o-transition: margin .6s;
}
.popup.active .popup-content{
  margin-top: 0px;
}

.form-group{
	position: relative;
	width: 90%;
	margin: 0px auto;
}
form#send input, form#send textarea{
	position: relative;
	margin-bottom: 32px;
	width: 100%;
	

  background-color: transparent;

	
	transition: border 0.6s;
}
form#send input:focus,
form#send textarea:focus{
	border-bottom: 1px solid var(--skyblue-bg); 
}
form#send label{
	position: absolute;
	top: 0;
	line-height: 28px;
	-webkit-transition: color .5s;
	-o-transition: color .5s;
	transition: color .5s;
}
form#send input:focus + label,
form#send textarea:focus + label{
  color:var(--skyblue-bg);
}
form#send .txt{
	line-height: 22px;
	left: 2px;
}
form#send .main-btn-rect {
	position: relative;
	display: block;
	padding: 12px 80px;
	margin: 0px auto;
	font-size: 14px;
}
form#send .main-btn-rect i {
	margin-right: 5px;
}
.popup .fade-out{
  position: absolute;
  top: -20px;
  right: -20px;
  text-align: center;
  font-size: 15px;
}

@media only screen and (max-width: 768px){
  /* form#send .main-btn-rect {padding: 7px 60px; font-size: 14px;}
  .popup-btn{padding: 7px 60px; font-size: 14px;} */
}


/***** Holidays Packages *****/
.travel-service {
    width: 25%;
    text-align: center;
}
.travel-service p{font-weight: 500;font-size: 18px;}
.destination-list ul+ul::after {content: '';position: absolute;background-image: url(../images/line.png);
  background-repeat: no-repeat;width:2px;height:75%;top:35%;left: 50%;}
.destination-list ul li{margin:23px 0;}
.destination-list ul li i{color: #E41E25;font-size:19px;}
.dom-trip p{font-size: 18px;font-weight: 500;}
.dom-trip figure{
  width:85px;
    height:85px;
    background-color: #F5F5F5;
    padding: 15px;
    border-radius: 50px;
    text-align: center;
    align-content: center;
    text-align: center;
    justify-self: center;
}
.dom-trip:hover figure{background-color: var(--primary-bg);}
.dom-trip:hover figure img{filter: brightness(0) invert(100);}
.destination-tag{position: absolute;right: 0;top:0;background: #FFA900; padding:3px 9px;font-weight: 500;font-size: 16px;}
.expertise {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .expertise img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
       border-radius: 48px 0px 48px;
    }

    .expertise figure::after {
      content: '';
      position: absolute;
      bottom: 0; 
      width:100%;
      height:100%;
      border-radius: 48px 0px 48px;
      background:var(--skyblue-bg);
      opacity: 0;
      transition: opacity 0.9s ease;
      z-index: 1;
    }

    .expertise:hover figure::after {
      opacity: 1;
    }
    .expertise .content {
      position: absolute;
      top:47%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding:10px;
      text-align: center;
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 2;
      width: 75%;
    }

    .expertise:hover .content {
      opacity: 1;
    }

    .expertise .content h3 {
      margin-bottom:20px;
      font-size: 22px;
      font-weight:600;
      color: #ffffff;
    }
   .expertise:hover  .content h3 {visibility:visible !important;}
  .expertise h3 {font-size:19px;font-weight: 500; margin-bottom: 0;}
  .expertise:hover  h3 {visibility: hidden;}
  .expertise .content p {color: #ffffff;}
  .needvisa {font-size: 18px;text-align: center;}
  .visa-service figure{width:65%;margin: 0 auto;}
  .accordion-item:not(:first-of-type){border-top: 1px solid var(--bs-accordion-border-color);}
  .accordion-button:not(.collapsed) {color:#131313;background-color: #f5ede6;}
  .accordion-button:focus {box-shadow: none;}
  .accordion-button {background: #fafafa;}
  /* .faq-section .accordion .accordion-button {background:rgb(255, 255, 255);} */
.shadow-effect p{text-align:justify;}

/******* Holidays Packages *******/
  .package-types {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .package-types img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .type-1{border-radius:30px 0px 0px 0px;}
    .type-3 {border-radius:0px 30px 0px 0px;}
    .package-types figure::after {
      content: '';
      position: absolute;
      bottom: 0; 
      width:100%;
      height:100%;
      background:var(--skyblue-bg);
      opacity: 0;
      transition: opacity 0.9s ease;
      z-index: 1;
    }

    .package-types:hover figure::after {
      opacity: 1;
    }
    .package-types .content {
      position: absolute;
      top:42%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding:0 30px;
      text-align: center;
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 2;
      width:100%;
    }

    .package-types:hover .content {
      opacity: 1;
    }

    .package-types .content h3 {
      margin-bottom:10px;
      font-size: 22px;
      font-weight:500;
      color: #ffffff;
    }
   .package-types:hover  .content h3 {visibility:visible !important;}
  .package-types h3 {font-size:18px;font-weight: 500; margin-bottom: 0;}
  .package-types:hover  h3 {visibility: hidden;}
  .package-types p  {font-size: 15px;color: #ffffff;}
  .rounded-tr-3 {border-radius: 0px 30px 0px 0px;padding-right: 15px;}
  .international-list  ul+ul::after {content: '';position: absolute;background-image: url(../images/line.png);
    background-repeat: no-repeat;width:2px;height:58%;top:50%;left: 50%;}
  .international-list  ul li{margin:23px 0;}
   .explore-details {width: 25%;height: 100%;}
  .explore-icon {background:#fff;
    width: fit-content;
    border-radius: 50px;
    width:65px;
    height:65px;
    text-align: center;
    align-content: center;
    margin: 0 auto;
    position:absolute;
    top:-18%;
    left: 50%;
    transform: translateX(-50%);
  }
  .explore-icon img{filter: brightness(100) invert(0);}
  .explore-box{background-color: #E9E9E9;border-radius:30px 0px 0px;padding:45px 30px 30px 30px;height:180px;position: relative;}
  .explore-details:hover  .explore-box{background-color: var(--skyblue-bg);color: #ffffff;}
  .explore-details:hover  .explore-icon{border:2px solid var(--skyblue-bg);}
  .explore-details:hover .explore-icon img{filter: invert(49%) sepia(67%) saturate(624%) hue-rotate(349deg) brightness(94%) contrast(92%);}
  .explore-details:hover  .explore-box p{color: #ffffff;}
  .overlay {background-color: #000;opacity: 0.2;width: 100%;height: 100%;position: absolute;top: 0;}
  .cruise-offer-section h2{font-size: 34px;}
  .cruise-offer-section h2 span{width:max-content;font-weight: 700;}
  .sail {color: #fff;font-size:30px;margin-bottom:40px;font-family: "Aclonica", sans-serif;}
  .explore-box2{background-color: #E9E9E9;border-radius:30px 0px 0px;padding:45px 15px 20px 15px;height:150px;position: relative;}
  .explore-details2:hover  .explore-box2{background-color: var(--skyblue-bg);color: #ffffff;}
  .explore-details2:hover  .explore-icon{background-color:var(--primary-bg);}
  .explore-details2:hover .explore-icon img{filter: brightness(100) invert(100);}
  .explore-details2:hover  .explore-box2 p{color: #ffffff;} 
  .nav-pills .nav-link, .nav-pills .show>.nav-link {font-size:19px;color:#797979}
    .nav-pills .nav-link:hover {color: #0986B1;}
  .nav-pills .nav-link.active, .nav-pills .show>.nav-link {background: none;color: #0986B1 !important;font-size: 22px;}
  #pills-tab .nav-item:last-child {background-image: url(../images/small-line.png);background-repeat: no-repeat;}
  .cruise-list  ul+ul::after {content: '';position: absolute;background-image: url(../images/line.png);
    background-repeat: no-repeat;width:2px;height:100%;top:0%;left: 50%;}
  .cruise-list  ul li{margin:23px 0;}
  .planing {background-color: #E9E9E9;padding:15px 20px;height: 100%;}
  .planing h3{font-size:18px;border-bottom: 1px solid #000;padding:20px 0;height: 80px;}
  .planing:hover {background-color: var(--primary-bg);color: #ffffff;}
  .planing:hover h3{border-color: #ffffff;}
  .planing:hover p{color: #ffffff;}
  .custom-travller {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .custom-travller img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .custom-travller figure::after {
      content: '';
      position: absolute;
      bottom: 0; 
      width:100%;
      height:100%;
      background:#1287AF;
      opacity: 0;
      transition: opacity 0.9s ease;
      z-index: 1;
    }

    .custom-travller:hover figure::after {
      opacity: 1;
    }
    .custom-travller .content {
      position: absolute;
      top:43%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding:10px;
      text-align: center;
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 2;
      width:90%;
    }

    .custom-travller:hover .content {
      opacity: 1;
    }

    .custom-travller .content h3 {
      margin-bottom:15px;
      font-size:19px;
      font-weight:600;
      padding: 0 20px 15px;
      color: #ffffff;
      border-bottom: 1px solid;
    }
   .custom-travller:hover  .content h3 {visibility:visible !important;}
  .custom-travller h3 {font-size:19px;font-weight: 500; margin-bottom: 0;}
  .custom-travller:hover  h3 {visibility: hidden;}
  .custom-travller .content p {color: #ffffff;}
  .done{padding: 49px; background: #ABDAFD; height: 100%;position: relative;}
  .done::before{content: '';position: absolute; width: 90%; height:90%; border: 1px solid #0083AF; justify-self:anchor-center; align-self:anchor-center;}
  .done:hover{background-color:#1287AF;}
  .done:hover p {color: #ffffff;}
  .done:hover::before {border: 1px solid #52b4d4;}
  .clients-book-ig {background-color: var(--skyblue-bg);margin: 0 auto; width: 50px; height: 50px; padding: 10px;border-radius: 100px;}
  .clients-book-with:hover .clients-book-ig{background-color: var(--primary-bg);}
  .eurail-list ul li{margin-bottom:20px;}
  .eurail-box {padding:65px 35px 10px 35px;background: #F8F8F8;height: 100%;}
  .eurail-box:hover{background-color: #d9eeff;}
  .eurail-details::before{content: '';position: absolute; width: 93%; height:93%; border: 1px solid #0083AF; justify-self:anchor-center; align-self:anchor-center;}
  .eurail-icon {text-align: center; background: #ABDAFD;padding: 20px;margin: 0 auto;border-radius: 100px;width:95px;height:95px;top: -30%;
    align-content: center;text-align: center;box-shadow:3px 3px 3px 0px #d9d9d9;position: absolute;left: 50%; transform: translateX(-50px);}
  .eurail-details:hover .eurail-icon{background-color:var(--primary-bg);} 
    .eurail-icon img{width:95%;}
  .eurail-details {position: relative;}
  .eurail-list .fa-location-dot {color:#E41E25;}
 .hotel-booking-service figure{width:90px;height:90px;border-radius: 100px;background-color:#1287AF;padding: 20px;
  text-align: center;align-content: center;margin: 0 auto;}
  .hotel-booking-service:hover figure{background-color: var(--primary-bg); box-shadow: 0px 3px 7px #a5a5a5;}
  .choose-list ul{padding: 0 40px;}
  .real-value figure {background-color: var(--skyblue-bg);border-radius: 5px;width:60px;height:60px;padding: 10px;text-align: center;transition: transform 0.3s ease;align-content: center;}
  .real-one:hover figure{background-color: #fff;border: 2px solid var(--skyblue-bg);transform: translateY(-5px);background-image: url(../images/icon/25year.png);background-repeat: no-repeat;background-position:center;}
  .real-one:hover img{display: none;}
  .real-two:hover figure{background-color: #fff;border: 2px solid var(--skyblue-bg);transform: translateY(-5px);background-image: url(../images/icon/10-booking.png);background-repeat: no-repeat;background-position:center;}
  .real-two:hover img{display: none;}
  .real-three:hover figure{background-color: #fff;border: 2px solid var(--skyblue-bg);transform: translateY(-5px);background-image: url(../images/icon/pricing.png);background-repeat: no-repeat;background-position:center;}
  .real-three:hover img{display: none;}
  .need-icon {position: absolute; left: 24%;  top: -50px;background-color: var(--primary-bg);border-radius: 100px;padding: 20px;width:80px;height:80px;text-align: center;align-content: center;}
  .need-box{border: 1px solid var(--primary-bg); padding:60px 30px 40px 30px;height:100%;}
  .need-box:hover {border: none;background-color: var(--primary-bg);color: #fff;}
  .every-need:hover .need-one{background-color: #fff; border: 2px solid var(--primary-bg);background-image:url(../images/icon/world.png);background-position: center;background-repeat: no-repeat;}
  .need-box:hover p{color: #fff;}
  .every-need:hover .need-icon img{display: none;}
  .every-need:hover .need-two{background-color: #fff; border: 2px solid var(--primary-bg);background-image:url(../images/icon/rupaye.png);background-position: center;background-repeat: no-repeat;}
  .every-need:hover .need-three{background-color: #fff; border: 2px solid var(--primary-bg);background-image:url(../images/icon/family.png);background-position: center;background-repeat: no-repeat;}
  .left-aside {background-color: #fff; padding:20px 0 30px 40px;    height: 100%;}
  .right-aside {background-color: #fff; padding:20px 50px 30px 0px;}
  .steps li {margin-bottom: 20px;}
  .left-aside h3{width: fit-content; justify-self: end; border-radius: 20px 0px 0px 20px;}
  .right-aside h3{width: fit-content; justify-self:start; border-radius: 0px 20px 20px 0px;}
  .left-aside li span {left:-41px;padding: 5px 15px;text-align: center;position: relative;z-index: 9;}
  .left-aside li span::before {content: '';position: absolute; left: -5px;background: #bdbdbd;top:-5px;z-index: -1;height:70px; width:45px; text-align: center;}
  .right-aside li span {right:-41px;padding: 5px 15px;text-align: center;position: relative;z-index: 9;}
  .right-aside li span::before {content: '';position: absolute; right: -5px;background: #bdbdbd;top:-5px;z-index: -1;height:70px; width:45px; text-align: center;}
  .right-aside li{padding-left:43px;}
.process-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:30px;
  padding:20px 20px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  max-width: 200px;
}

.process-step .circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  border: 8px solid currentColor;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.process-step img {
  height:52px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Connector Lines */
.connector {
position: absolute;
    top: 65%;
    left: 74%;
    width: 200px;
    height:8px;
    background: currentColor;
    transform: rotate(-40deg);
    transform-origin: left center;
    z-index: 1;
}
.connector2{
position: absolute;
        top: 41%;
    left: 76%;
    width: 200px;
    height:8px;
    background: currentColor;
    transform: rotate(40deg);
    transform-origin: left center;
    z-index: 1;
}

/* Colors */
.red    { color: #e74c3c; }
.orange { color: #e67e22;  margin-top: -100px; }
.yellow {color:#EAD21D;}
.green  { color: #8EC23F;margin-top: -100px;  }
.blue   { color: #2980b9;}

/* Hover */
.process-step:hover .circle {
  transform: scale(1.1);
  background: currentColor;
  border-color: currentColor;
}
.process-step:hover img {
  transform: rotate(15deg) scale(1.2);
  filter: brightness(0) invert(1);
}
.passport-assist {border: 1px solid var(--skyblue-text);padding:20px;width:230px;max-width: 250px; transition: 0.3s;}
.passport-assist h4{border-bottom:1px solid #000;margin-bottom:10px;font-size: 18px;line-height:25px;font-weight:500;}
.passport-assist:hover {background-color: var(--skyblue-bg);transition: background-color 0.5s ease, filter 0.6s ease;}
.passport-assist:hover h4{color: #ffffff;border-bottom: 1px solid #fff;}
.passport-assist:hover p{color: #ffffff;}
.insuranceh3 {font-size:20px;}
.insurance-icon {
    position: absolute;
    width:68px;
    height:68px;
    text-align: center;
    align-content: center;
    border-radius: 100px;
    top: -20%;
    left:58%;
    transform: translateX(-50px);
  }
.insurance-assist {border: 1px solid var(--skyblue-text);padding:20px;width:230px;max-width: 250px; transition: 0.3s;}
.insurance-assist h4{border-bottom:1px solid #000;margin-bottom:10px;font-size: 18px;line-height:25px;font-weight:500;}
.insurance-assist:hover {background-color: var(--skyblue-bg);transition: background-color 0.5s ease, filter 0.6s ease;}
.insurance-assist:hover h4{color: #ffffff;border-bottom: 1px solid #fff;}
.insurance-assist:hover p{color: #ffffff;}
.insurance-icon img {height:42px;}
.insurance-assist:hover .insurance-icon {background-color: #fff !important;border: 2px solid var(--skyblue-bg);}
.insurance-assist:hover .insurance-icon img {filter: invert(49%) sepia(67%) saturate(624%) hue-rotate(349deg) brightness(94%) contrast(92%);;}
.hover14 figure {
	position: relative;
}
.hover14 figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.199) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.199) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.hover14 figure:hover::before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.hover15 {overflow: hidden;}
.hover14 figure {overflow: hidden;}
.hover15 figure::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.hover15 figure:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
.forex-services h3{font-size: 17px;text-transform: capitalize;}
.forex-services:hover h3{color: var(--secondery-text);}

.corporate-flight h3{font-size:22px;font-weight: 600;}
.corporate-icons {width:90px;height:90px;border-radius: 100px;margin: 0 auto;align-content: center;text-align: center;background-color: var(--skyblue-bg);}
.heading-box {
      position: relative;
      background:var(--skyblue-bg);
      color: #fff;
      font-size:20px;
      font-weight:500;
      padding: 15px 40px;
      margin:0px auto;
      text-align: center;
      border-radius: 2px;
    }
    .heading-box::before {
    content: "";
    position: absolute;
   left: 0;
    top: 53px;
    border-width: 30px 0px 30px 30px;
    border-style: solid;
    border-color: #0079a3 transparent transparent transparent;
    width:30px;
    }
    .heading-box::after {
    content: "";
    position: absolute;
    right: 0;
    top: 53px;
    border-width: 30px 30px 30px 0px;
    border-style: solid;
    border-color: #0079a3 transparent transparent transparent;
    width:30px;
    }
    .heading-box-details {
    width: 87.5%;
    margin: 0 auto;
        border: 1px solid #ebebeb;
}
.flip-card-inner:hover .flip-card-front {transform: rotateY(180deg);background-color:#0082ad;}
.flip-card-front {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;  position: relative;
  text-align: center;
  transition: transform 0.6s;
}
#rcorners1 img{ border-radius:30px 0px 0px 0px;}
#rcorners4 img{ border-radius:0px 30px 0px 0px;}
.border-radius-50 img{border-radius: 0px 70px 0px 0px;}


/*** About Us ****/
 .abt-photo {border: 1px solid #cff3ff;border-radius: 30px 0;}
.company-information ul {border: 1px solid #9de6ff;}
.company-information ul li{font-size: 18px; border-right: 1px solid #9de6ff;padding: 30px;width: 100%;}
.company-information ul li:last-child{border: 0;}


/***** Book Tour Package *****/
.tab-btns {
      text-align: center;
      margin-bottom: 20px;
    }

    .tab-header {
      flex: 1;
      text-align: center;
      background: #f5f5f5;
      border: none;
      padding:7px 20px;
      font-weight:400;
      text-transform: uppercase;
      font-size:18px;
      cursor: pointer;
      margin: 20px 12px 5px;
      position: relative;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .tab-header:first-child::after {
    content: '';
    border-left: 1px solid #6b6b6b;
    position: absolute;
    width: 1px;
    height: 100%;
    right: -15px;
    top: 0;
}
 .tab-header img {
  filter: brightness(0) invert(0);
  }
 .tab-header.active img {
    filter: brightness(0) invert(1);
}
      
    .tab-header.active {
      background: #01A8E1;
      color: #fff;
      border-color: #01A8E1;
    }
.tab-item {
        display: inline-block;
        position: relative;
    }
    .tab-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background:#f5f5f5;
        border:0px;
        width:90%;
        z-index: 10;
        padding:0px ;
        list-style: none;
        margin-left: 5%;
            border-radius: 0 0 5px 5px;
            border: 1px solid #e7e7e7;
    }
    .tab-dropdown li {
        padding: 5px 15px;
        cursor: pointer;
        text-align:start;
    }
    .tab-dropdown li:hover {
        background:#fbaf71;
    }
     .tab-dropdown li:first-child:hover {
        background:none;
    }
     .tab-dropdown li:first-child{text-align: center;color: #bdbdbd;}
    .tab-item:hover .tab-dropdown {
        display: block;
    }
    /* Tab Content Area */
    .book-package-section .tab-content {
      display: none;
      width: 100%;
      margin-top: 20px;
      text-align: center;
    }

    .book-package-section .tab-content.active {
      display: block;
    }

    /* State/Country Buttons */
    .book-package-section  .tab-content .state-btn {
      background-color:#fff;
      border: 1px solid #7e7e7e;
      color: #000;
      padding:6px 15px;
      border-radius: 50px;
      cursor: pointer;
      margin-bottom: 10px;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .book-package-section .tab-content .state-btn:hover,
    .book-package-section .tab-content .state-btn.active {
      background: #01A8E1;
      color: #fff;
      border: 1px solid #01A8E1;
    }
.state-btns {
  display: flex;
  flex-wrap: wrap;
  /* flex-wrap: nowrap;
  overflow-x: auto;  */
  gap: 10px;
  justify-content: flex-start;
  padding-bottom:18px;
  border-bottom: 1px solid #ddd;
}
.state-btns h2{font-size: 17px;margin-bottom: 0;font-weight:400;}
.state-btn {
  flex: 0 0 auto; 
  margin: 0;
  border: 1px solid transparent;
  color: #000;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.state-btn:hover,
.state-btn.active {
  background: #01A8E1;
  color: #fff;
  border-color: #01A8E1;
}

    /* Details Section */
    .details-container {
      margin-top:50px;
      text-align: left;
    }

    .details {
      display: none;
      border-radius:30px 0px 0 0;
    }

    .details.active {
      display: block;
    }
    .details-content {
      padding: 20px 35px 20px 30px;
      background:#FAFAFA;
      height: 100%;
    }
     .details-content ul li{
      margin-top:10px;
      text-align: justify;
    }
    .details ul li h4{
    font-size: 17px;
    display: inline-flex;
    }

.form-box label {
  font-weight:500;
  display: block;
  margin-top:10px;
  margin-bottom: 5px;
}

.form-box input,
.form-box textarea,
.form-box select {
  width: 100%;
  padding: 6px 9px;
    margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.form-box #countryCode {width:20% !important;}
.form-box .row {
  display: flex;
  gap: 10px;
}

.form-box .row div {
  flex: 1;
}

.form-box .phone-row {
  display: flex;
  gap: 10px;
}

.form-box button {
  color: white;
  border: none;
  padding:6p 12px;
  border-radius:40px;
  cursor: pointer;
}

.form-box button:hover {
  background-color:var(--skyblue-bg);
}
    


/***** Contact Us *****/
.page-banner {background-color: #01A8E1;height: 200px;border-radius: 0 0 40px 40px;}
.contact-info {
      text-align: center;
      padding:0px 20px;
      border-right: 1px solid #eee;
    }

    .contact-info:last-child {
      border-right: none;
    }

    .contact-info i {
      font-size: 32px;
      color: #00aaff;
      margin-bottom: 15px;
    }

    .contact-form {
      background: #fafafa;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .form-control {
      border-radius: 6px;
    }

    .btn-submit {
      background: #ff6600;
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 25px;
      transition: 0.3s;
    }

    .btn-submit:hover {
      background: #e55a00;
    }

    .contact-list {
      padding:0px 30px;
    }

    .contact-list .contact-item {
      margin-bottom: 20px;
    }

    .contact-list strong {
      display: block;
      font-weight: 600;
    }
.justify-content-md-center {justify-content: center;}


/* ---- responsive ---- */
@media only screen and (min-width:1700px) and (max-width:2029px){
  .heading-style, .heading-style2, .heading-style3{font-size:50px;line-height: 60px;}
  .highlight {font-size: 38px;}
  .would-like-section h3{font-size: 36px;}
  .hero-slider, .slide-inner, .slide-overlay, .hero-style  {height:700px;}
  .carousel-item button{bottom:15%;left:10%;}
  .carousel-item .res-btn {bottom:15% !important;left:11% !important;}
  .carousel-item{height:632px;}
  .foot-cont ul li i{left: 15%;}
  .foot-cont ul li {padding-left: 45px;}
}
@media only screen and (min-width:1520px) and (max-width:1699px){

}

@media only screen and (min-width:1200px) and (max-width:1329px){
  .foot-cont ul li i{left: 5%;}  
}
@media only screen and (min-width: 1100px) and (max-width: 1231px){
.navbar-light .navbar-nav .nav-link {padding:17px 9px;font-size:15px;}
}
@media only screen and (min-width: 992px) and (max-width: 1099px){
 .about-section p{text-align: justify;}
   .company-information ul li {padding: 10px 0px;}
  .navbar-light .navbar-nav .nav-link {padding:17px 7px;font-size: 14px;}
}

@media only screen and (min-width: 860px)  and (max-width:991px){
.navbar-toggler {  margin: -15% 50px 0 auto;}
.heading-style3:after{display: none;}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
   .about-section p{text-align: justify;}
 .carousel-item button {left: 30%;}
  .company-information ul li {padding:20px 0px;}
   .heading-style:after {width: 30%;}
   .holiday-section {background-position: right;}
   .slide-inner, .slide-overlay, .hero-style  {height:390px;}
}
@media only screen and (max-width: 767px){
  .menu-section .navbar {padding: 10px; justify-content: flex-end;}
  .menu-section .navbar{border: none;}
    .fixed-top .navbar-toggler { margin: 0 0 auto;}
  .theme-btn2 {padding: 2px 14px;font-size: 15px;}
 .carousel-item button {left:18%;}
 .company-information ul li {border-bottom: 1px solid #9de6ff;border-right: 0;}
.sail   {font-size: 24px;}
.slide-inner, .slide-overlay, .hero-style  {height:305px;}
.heading-style:after {display: none;}
.holiday-section  {background-position: right;}
}

@media only screen and (min-width: 751px) and (max-width: 859px){
   .navbar-toggler {margin:-18% 0% 0px auto;float: right;}
   .justify-items-sm-left {justify-items: left;}
}

@media only screen and (min-width:641px) and (max-width: 750px){
 .navbar-toggler {margin:-18% 7% 0px auto;float: right;}
 .justify-items-sm-left {justify-items: left;}
.slide-inner, .slide-overlay, .hero-style  {height:238px;}
.foot-cont h4, .foot-list h4 {margin-bottom:15px;margin-top:30px;}
}

@media only screen and (min-width: 577px) and (max-width: 640px){
.main-logo {width: 180px;}
.justify-items-sm-left {justify-items: left;}
.theme-btn2 {padding:2px 12px;width: max-content;}
 .navbar-toggler { margin: -15% 3% 0 auto;float: right;}
 .heading-style3:after{display: none;}
}

@media only screen and (max-width: 575px){
  p, a, ul li {text-align: inherit;}
.menu-section .navbar {border-top:0px}
.logo {text-align: center;}
.logo img {width: 180px !important;}
  .navbar-toggler {margin: -20% 0 0 auto;float: right;}
   .fixed-top .navbar-toggler { margin: 0 0 auto;}
  .topbar .theme-btn2{float: left;}
.slide-inner, .slide-overlay, .hero-style  {height: 200px;}
.section-space {padding:50px 0;}
.heading-style, .heading-style2, .heading-style3, .heading-style4, .heading-style5 {font-size:33px;margin-bottom: 20px;line-height: normal;}
.highlight, .highlight2 {font-size:32px;  margin-top: 10px;}
.heading-style:after, .heading-style3:after, .heading-style4:after {display: none;}
.abt-1, .abt-2 {margin-top: 30px;top: 0;}
.about-section p{text-align: justify;}
.holiday-section {background-position: bottom right;}
.holiday-section p{text-align: justify;}
.deal {top:2%;}
.carousel-item {height:289px; background-position:left;}
.carousel-item button {left:18%;}
.travel-support h3{margin-bottom: 40px;margin-top:20px; text-align: center; font-size: 20px !important;}
.why-choose {text-align: center;}
.quotes-slide .shadow-effect{background-color:rgba(255, 237, 222, 1);}
.quotes-slide .shadow-effect p{color: #000;}
.plan-section {text-align: center;padding-top: 25px;}
.top-footer {text-align: center;}
.foot-cont ul li i{left: 5%;}
.foot-cont ul li {padding: 0 30px 0 55px;}
.foot-cont {margin-bottom:40px}
.foot-cont h4, .foot-list h4{margin-bottom: 20px;}
.copyright  {padding: 0 30px;text-align: center;}
.foot-cont h4, .foot-list h4 {margin-bottom:15px;margin-top:10px;}
.justify-items-sm-center {justify-items: center;}
}



@media only screen and (max-width:480px){
.menu-section .navbar {border-top:0px}
.main-logo {width:200px;}
  .navbar-toggler {margin:-26% 0 0 auto;float: right;}
  .fixed-top .navbar-toggler { margin: 0 0 auto;}
  .topbar .theme-btn2{float: left;}
.logo {text-align: center;}
.get-btn {margin-top: 20px;}
.carousel-item {height:290px; background-position: left;}
.slide-inner, .slide-overlay, .hero-style  {height:155px;}
.justify-items-sm-center {justify-items: center;}
}

@media only screen and (max-width: 360px){


}
/* Base wrapper */
.custom-select {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
  width: 100%;
}

/* Hide native select */
.custom-select select {
  display: none;
}

/* Selected box */

.select-selected {
    background-color: #ffffff;
    border: 1px solid rgba(181, 181, 181, 1);
    border-radius:5px;
    padding: 4px 4px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s 
ease;
    position: relative;
}
/* Arrow icon */
.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 14px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #555 transparent transparent transparent;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #555 transparent;
  top: 55%;
}

/* Dropdown list */
.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 0 0 12px 12px;
  border: 1px solid #c7e3ff;
  border-top: none;
  max-height: 140px; /* about 5 items visible */
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Each item */
.select-items div {
  padding: 8px 8px;
    font-size: 13px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Hover + selected state */
.select-items div:hover,
.same-as-selected {
  background-color: #eaf4ff;
}

/* Hide dropdown */
.select-hide {
  display: none;
}

/* Disabled state */
.custom-select.disabled-select .select-selected {
  background-color: #f5f5f5;
  border-color: #ddd;
  color: #999;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Scrollbar styling */
.select-items::-webkit-scrollbar {
  width: 8px;
}
.select-items::-webkit-scrollbar-track {
  background: #f0f8ff;
  border-radius: 0 0 12px 12px;
}
.select-items::-webkit-scrollbar-thumb {
  background: #6cb6ff;
  border-radius: 10px;
}
.select-items::-webkit-scrollbar-thumb:hover {
  background: #4fa8ff;
}
.input-with-star::after {
  content: "*";
  color: red;
  position: absolute;
  right: 15px; /* moves asterisk to the right inside input */
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  pointer-events: none; /* don’t block typing */
}

.input-with-star::after {
  content: "*";
  color: red;
  position: absolute;
  right: 15px; /* moves asterisk to the right inside input */
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  pointer-events: none; /* don’t block typing */
}
div[data-index="0"] {
  color: #22211e;
  background: #dcf4f9;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 6px;
}