/********** Template CSS **********/
:root {
    --primary: #015FC9;
    --secondary: #0DD3F1;
    --light: #F6F7FC;
    --dark: #000;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    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 {
    transition: .5s;
}

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

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.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;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

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

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 500;
    outline: none;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

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


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

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

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

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

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


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

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

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

/* new css start  */


/* Hero Image Height */
.hero-img {
  height: 500px; /* Desktop */
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-img {
    height: 320px; /* Mobile */
  }
}

/* Overlay on images */
.hero-slide {
  position: relative;
}
.hero-slide::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 1;
}
.carousel-caption {
  position: absolute;
  z-index: 2; 
}


.carousel-indicators {
  z-index: 5 !important;
}

/* Image Zoom Out Animation */
.zoom-anim {
  animation: zoomOutImage 8s ease-in-out forwards;
}
@keyframes zoomOutImage {
  from { transform: scale(1.2); }
  to { transform: scale(1); }
}

/* Text Fade In + Slide Up Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Animation Delay */
.btn-anim {
  animation-delay: 0.6s !important; /* text नंतर दिसतील */
}

/* Modern Button */
.btn-modern {
  display: inline-block;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.btn-modern:hover {
  background: linear-gradient(135deg, #0056b3, #0096c7);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Modern Outline Button */
.btn-modern-outline {
  display: inline-block;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.btn-modern-outline:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Hero Image end */
section.container-fluid.py-5.wow.fadeInUp.quichsection {
    padding-bottom: 20px !important;
}
.card {
    transition: transform 0.3s ease-in-out;
    border: 1px solid #ddd !important; 
  }
  .card:hover {
    transform: translateY(-5px);
  }

  .animate-icon {
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.7;
    }
  }
   .amenity-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.4s ease;
  }
  .amenity-card:hover {
    transform: translateY(-6px) scale(1.02);
  }
  .amenity-img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .amenity-card:hover .amenity-img {
    transform: scale(1.1);
  }
  .amenity-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 15px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    letter-spacing: 1px;
  }
   /* Heading */
  .choose-heading {
    font-size: 32px;
    color: #333;
  }
  .choose-heading .highlight-text {
    color: #6BD1E9;
  }

  /* Items */
  .choose-item {
    transition: all 0.3s ease;
  }
  .choose-item:hover {
    transform: translateX(8px);
  }
  .choose-icon {
    width: 45px;
    height: 45px;
    background: #e6f9fd;
    color: #6BD1E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  .choose-item:hover .choose-icon {
    background: #6BD1E9;
    color: #fff;
  }

  /* Divider line */
  .choose-line {
    margin: 0.8rem 0;
    border: 0;
    border-top: 1.5px solid #ccc; 
  }

  /* Image Height Fix */
  .choose-img {
    height: 380px; 
    width: 100%;
    object-fit: cover;
  }
  .location-cards {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .location-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  .location-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #fdfefe, #f3fcfd);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .location-card .icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #e6f9fd;
    color: #6BD1E9;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .location-card h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
  }
  .location-card p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #666;
  }
  .btn-primary {
    background: #08AEF1;
    border: none;
  }
  .btn-primary:hover {
    background: #50A4B1;
  }
  .highlight-icon {
    color: #6BD1E9;
    transition: transform 0.4s ease, color 0.3s ease;
    display: inline-block;
    animation: iconPop 1.2s ease-in-out infinite alternate;
  }

  /* Hover Effect */
  .highlight-icon:hover {
    transform: scale(1.2);
    color: #0dcaf0;
  }

  /* Animation Keyframes */
  @keyframes iconPop {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
  }
   .map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
  }
  .map-responsive iframe {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
  }
  .form-control {
    border-radius: 8px;
  }
  .btn-primary {
    border-radius: 8px;
  }
   .gallery-img {
    height: 250px; /* Default height */
    object-fit: cover;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, width 0.3s ease;
  }

  .gallery-img:hover {
    transform: scale(1.2); /* Expand image */
    width: auto; /* Auto width on hover */
    z-index: 10; /* Keep it above others */
    position: relative;
  }
  .amenity-item {
  cursor: pointer;
  transition: all 0.4s ease;
}

.amenity-img {
  height: 280px; /* increased height */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.4s ease;
}

.amenity-item:hover .overlay {
  background: rgba(0, 0, 0, 0.65);
}

.amenity-item:hover .amenity-img {
  transform: scale(1.05);
}

.amenity-content {
  text-align: left;
}

.amenity-content h5 {
  color: #fff;
  font-size: 1.1rem;
}

.amenity-content p {
  color: #f1f1f1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.amenity-item:hover .amenity-content p {
  display: block !important;
  opacity: 1;
}

section {
  
  overflow-x: hidden;
}
 #features i {
    color: #08AEF1;
  }