/********** Template CSS **********/

:root {
    --primary: #FFD700;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
        --d: 2500ms;
        --angle: 90deg;
        --gradX: 100%;
        --gradY: 50%;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 999;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 100px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 100px;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 100px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        /* border-bottom: 1px solid rgba(256, 256, 256, .1); */
        z-index: 999;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}



/*** Hero Header ***/
/* .hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/india-6257306.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
} */


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.taxi-item {
padding: 0;
}

.taxi-item img {
    transition: .5s;
}

.taxi-item:hover img {
    transform: scale(1.1);
}

.taxibtn {
    background: var(--primary);
    color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--primary);
    height: 60px;
}

.taxibtn:hover {
    background: var(--secondary);
    color: #FFFFFF;
}
/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footerglass {
  background: rgba(255, 187, 0, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.footer .btn.btn-link,
.footer .btn.btn-contact {
  display: block;
  margin-bottom: 6px;
  padding: 0;
  color: #ffffff;
  font-size: 15px;
  transition: 0.3s;
  text-align: left;
}

.footer .btn.btn-link:hover,
.footer .btn.btn-contact:hover {
  color: #FFD700;
  letter-spacing: 0.5px;
}

.footer .btn-social {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.footer .btn-social:hover {
  color: #FFD700;
}

.footer .gallery img {
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 768px) {
  .footer .footer-menu {
    justify-content: flex-end;
  }
}
.floating-buttons {
  position: fixed;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 999;
  padding: 0 20px;
}

.right-buttons {
  display: flex;
  gap: 10px;
}

/* Shared button styles */
.call-button,
.whatsapp-button,
.scroll-top-button {
  color: #fff;
  border-radius: 50%;
  padding: 15px;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

/* Scroll to top with pulse glow */
.scroll-top-button {
  background-color: #FFD700;
  animation: pulseGlowGold 1.5s infinite alternate;
}

@keyframes pulseGlowGold {
  from {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  }
  to {
    box-shadow: 0 0 30px rgba(255, 215, 0, 1);
  }
}

/* Bounce effect for call & WhatsApp */
.call-button,
.whatsapp-button {
  animation: bounceButton 2s infinite;
}

.call-button {
  background-color: #007bff;
}

.whatsapp-button {
  background-color: #25d366;
}

@keyframes bounceButton {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hover zoom */
.call-button:hover,
.whatsapp-button:hover,
.scroll-top-button:hover {
  transform: scale(1.1);
}


.blob {
    width: 48px;
    height: 48px;
    display: grid;
    background: #fff;
    filter: blur(1.9px) contrast(10);
    padding: 4.8px;
    mix-blend-mode: darken;
 }
 
 .blob:before {
    content: "";
    grid-area: 1/1;
    margin: 14.4px 0;
    border-radius: 48px;
    background: #ffd700;
 }
 
 .blob:after {
    content: "";
    grid-area: 1/1;
    width: 16.8px;
    height: 16.8px;
    margin: auto;
    border-radius: 50%;
    background: #ffd700;
    animation: blob-lwysv3mn 2s infinite linear;
 }
 
 @keyframes blob-lwysv3mn {
    0% {
       transform: translate(14.4px);
    }
 
    25% {
       transform: translate(0);
    }
 
    50% {
       transform: translate(-14.4px);
    }
 
    75% {
       transform: translate(0);
    }
 
    100% {
       transform: translate(14.4px);
    }
 }

 .box {
    width: 150px;
    height: 150px;
    background-color: lightblue;
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease, border-color 0.3s ease-in-out;
    position: relative;
}

.box:hover {
    transform: scale(1.1);
    border-color: blue;
}

.box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 3px solid blue;
    border-right: 3px solid blue;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}

.box:hover::before {
    width: 100%;
    height: 100%;
}

.custom-card {
    position: relative;
    padding: 2rem;
    margin: 1.5rem;
    border: 5px solid transparent;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
  }
  
  .custom-card:hover {
    transform: scale(1.05);
  }
  
  /* Animated Border */
  .custom-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 4px;
    background: linear-gradient(120deg, #FFD700, transparent, #FFD700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: borderRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .custom-card:hover::before {
    opacity: 1;
  }
  
  @keyframes borderRotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* @keyframes borderAnimation {
    100% {
      transform: rotate(360deg);
    }
  } */
  @keyframes borderAnimation {
	100% {
		--angle: 420deg;
	}
}

@keyframes borderRadial {
	20% {
		--gradX: 100%;
		--gradY: 50%;
	}
	40% {
		--gradX: 100%;
		--gradY: 100%;
	}
	60% {
		--gradX: 50%;
		--gradY: 100%;
	}
	80% {
		--gradX: 0%;
		--gradY: 50%;
	}
	100% {
		--gradX: 50%;
		--gradY: 0%;
	}
}
.glass-header-book-btn-all {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: black !important;
  border: none;
  padding: 0.75rem 3rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-header-book-btn-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
    color: black  !important;
}

.glass-header-book-btn-all:hover::before {
  left: 100%;
}

.glass-header-book-btn-all:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
color: black  !important;
}

.heroH1-title.gradient-underline {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffcc00, #ffffff, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-align: center;
  letter-spacing: -0.02em;
}

/* Underline animation */
.heroH1-title.gradient-underline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #ffcc00, #ffffff, #ffcc00);
  border-radius: 2px;
  animation: underlineSlide 2s infinite alternate;
}

/* Keyframes for animated underline */
@keyframes underlineSlide {
  0% {
    width: 60%;
    opacity: 0.6;
  }
  100% {
    width: 80%;
    opacity: 1;
  }
}
.liquid-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.liquid-glass::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4),
    transparent 70%
  );
  animation: liquidRotate 8s linear infinite;
  z-index: 0;
}

.liquid-glass > * {
  position: relative;
  z-index: 1;
}

@keyframes liquidRotate {
  0% {
    transform: rotate(0deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1.2);
  }
}

.liquidGlass-wrapper {
  position: relative;
  display: flex;
  font-weight: 600;
  overflow: hidden;

  color: black;
  cursor: pointer;

  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;

  backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
}

.liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
}

.liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;

  overflow: hidden;

  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
}

.liquidGlass-text {
  z-index: 3;
  font-size: 2rem;
  color: black;
}
.dock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2rem;
  padding: 0.6rem;
}

.dock,
.dock > div {
  border-radius: 2rem;
}

.dock:hover {
  padding: 0.8rem;
  border-radius: 2.5rem;
}

.dock:hover > div {
  border-radius: 2.5rem;
}



.dock img:hover {
  transform: scale(0.95);
  transform-origin: center center;
}