/* Slider Container */
#homeSlider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background Image Styling */
.sliderImgDiv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.carousel-item.active .sliderImgDiv {
  animation: kenburns 10s ease-out infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Overlay for better text visibility */
.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 1;
}

/* Carousel Item */
.carousel-item {
  height: 100vh;
  position: relative;
}

/* Fade transition */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Caption Styling */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 34%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 845px;
  text-align: center;
  z-index: 10;
  bottom: auto;

}

/* Title Animation */
.carousel-caption h1 {
  font-size: 3.5rem;
  text-align: left;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(50px);
}

.carousel-item.active .animate-title {
  animation: fadeInUp 1s ease forwards;
}

/* Description Animation */
.carousel-caption p {
    text-align: left;
    font-size: 18px;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    line-height: 32px;
  opacity: 0;
  transform: translateY(50px);
}

.carousel-item.active .animate-description {
  animation: fadeInUp 1s ease 0.3s forwards;
}

/* Buttons Container */
.bannerButton {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
}

.carousel-item.active .animate-buttons {
  animation: fadeInUp 1s ease 0.6s forwards;
}

/* Button Styling */
.bannerButton a {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-booking {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-contact {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-contact:hover {
  background: #fff;
  color: #333;
  transform: translateY(-3px);
}

/* Mouse Button Down */
.mouse-btn-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  cursor: pointer;
}

.chevron {
  position: absolute;
  width: 14px;
  height: 4px;
  background: rgba(255,255,255,0.8);
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 2s infinite;
}

.chevron:nth-child(1) {
  top: 10px;
  animation-delay: 0s;
}

.chevron:nth-child(2) {
  top: 18px;
  animation-delay: 0.3s;
}

.chevron:nth-child(3) {
  top: 26px;
  animation-delay: 0.6s;
}

@keyframes mouseScroll {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 15;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255,255,255,0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 20px;
  z-index: 15;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.5);
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators li.active {
  width: 40px;
  border-radius: 10px;
  background-color: #fff;
}





.ourServiceHead {
    text-align: center;
}

.ourServiceHead h4 {
    font-size: 40px;
    font-weight: normal;
    font-family: sans-serif;
    color: #09b7ff;
}

.ourServiceHead p {
    color: #7ad0f6;
    font-size: 24px;
    margin: 0;
    padding-bottom: 30px;
}

.homeServiceGrid {
    background: #131a15;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.homeServiceInfo p {
    color: #fff;
}



.care-features {
    background: #000;
    padding: 50px 0;
}

.section-title {
    font-weight: 700;
    color: #19bbff;
    text-align: center;
}

.section-subtitle {
   color: #e2e4e6;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px;
}

.care-card {
       background: #1f1e1e;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 1px 10px #9b9b9b;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.care-card h5 {
       font-weight: 600;
    margin-bottom: 10px;
    color: #19bbff;
    font-size: 18px;
}

.care-card p {
   color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

.care-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}







.pricing-section {
    background: #212121;
}
.priceCardHead {
    text-align: center;
    border-bottom: 2px solid #fff;
    margin-bottom: 14px;
}


.pricing-card {
    background: linear-gradient(to bottom, #0176a6 0%, #096284 50%, #160202 100%);
    padding: 10px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.plan-name {
    font-weight: 700;
    margin-bottom: 10px;
        color: #fff;
            font-size: 17px;
}

.price {
       color: #fff;
  
}

.duration {
       color: #fff;
    margin-bottom: 14px;

}

.feature-list {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.feature-list li {
    padding: 6px 0;
    border-bottom: 1px dashed #e5e5e5;
    color: #fff;
}




.premium .price,
.premium .duration,
.premium li {
    color: #fff;
}




.packageContactLink {
    background: #fff;
    padding: 10px 20px;
    border-radius: 40px;
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #cc0505;
    text-transform: uppercase;
    font-weight: 500;
}







.homeCareServiceSection {
    padding: 50px 0;
    background: #0f1712;
}

.homeCareServiceGrid {
    background: #000000;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 30px;
}

.homeCareServiceGrid h4 {
    color: #0c93d3;
    text-align: center;
    margin: 0;
    padding-bottom: 20px;
    font-size: 20px;
}

.homeCareServiceGrid p {
    text-align: center;
    color: #fff;
    margin: 0;
}






.healthcare-section {
    background: #000000;
    border-top: 1px solid #747070;
}
.section-desc {
    color: #fff;
    margin-top: 20px;
}

.counter-box {
    background: #131a15;
    padding: 60px 20px;
    border: 1px solid #514c4c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 60px;
    font-weight: 700;
    color: #19bbff;
    margin-bottom: 8px;
}

.counter-box p {
    font-size: 16px;
    color: #fff;
    margin: 0;
}
.home-about-layout {
    background: #131a15;
       padding: 50px 0;
}



.home-about-layout-left p {
    color: #fff;
    text-align: justify;
}

.home-about-layout-left h3 {
    color: #19bbff;
    text-transform: uppercase;
}

.bestCareverServiceMain {
    background: #000000;
    padding: 50px 0;
}


  .bestCareverServiceMain   .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 19.666667%;
        max-width: 28.666667%;
    }

.service-features {
    justify-content: center;
}

.feature-box {
    background: #131a15;
    padding: 25px 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #212722;
}
.feature-box img {
    max-width: 68px;
    width: 100%;
    filter: brightness(0) invert(1);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #0176a6;
}

.feature-box .icon {
    font-size: 36px;
    margin-bottom: 12px;
    color: #007bff;
}

.feature-box h5 {
      font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #fff;
    margin-top: 20px;
}


.home-bottom-about-info {
    background: #0f1712;
    padding: 50px 0;
}


.home-bottom-about-info .full-text {
    display: none; /* Hide full text initially */
}

.read-more-btn {
  border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    background: #000;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.short-text {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.read-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Rotate icon when active */
.read-more-btn.active i {
    transform: rotate(180deg);
}

.full-text {
    color: #fff;
}


.home-bottom-about-info-list h3 {
    margin-bottom: 20px;
}

.home-bottom-about-info-list ul {
    margin-bottom: 20px;
}

.priceing-bg-overly {
    padding: 50px 0;
    background: #000000b8;
}
.price-pak-head {color: #fff;}

.price-pak-head h2 {
    text-align: center;
    margin: 0;
    padding-bottom: 20px;
    font-weight: bold;
}

.price-pak-head p {
    margin: 0;
    padding-bottom: 25px;
}

.price-card {
            border-radius: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .card-header-custom {
            background-color: #0a9edd;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            text-align: center;
            padding: 20px;
        }
        .price {
                font-size: 16px;
    color: #fff;
    margin: 0;
    margin-bottom: 14px;
        }
        .features {
            list-style: none;
            padding-left: 0;
            margin-top: 15px;
        }
        .features li {
            text-align: left;
            color: #fff;
            margin-bottom: 8px;
            display: flex;
        }
        .features li::before {
            content: "■";
            margin-right: 4px;
            color: #0fb8ff;
            font-size: 10px;
            margin-top: 5px;
        }
       .get-started-btn {
            margin-top: 20px;
            background: #0a9edd !important;
            border: none;
            border-radius: 0;
            padding: 8px 30px;
            text-transform: uppercase;
            text-decoration: underline;
        }

        .card-body {
            background: #000;
        }

        .price-card h6 {
            color: #fff;
            font-size: 18px;
            margin: 0;
            padding: 10px 0;
        }


.about-mssion-vission {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    min-height: 424px;
}







.support-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .support-card {
      background-color: #000; /* Black background */
      color: #fff; /* White text */
      border-radius: 15px;
      padding: 30px 25px;
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }

    .support-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    }

    .support-header {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
      text-align: center;
      position: relative;
    }

    .support-list {
      list-style: none;
      padding: 0;
      font-size: 16px;
      line-height: 1.8;
    }

    .support-list li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 15px;
    }

    .support-list li::before {
      content: "\f00c"; /* FontAwesome check icon */
      font-family: "FontAwesome";
      position: absolute;
      left: 0;
      color: #fff;
      font-size: 16px;
      top: 0;
    }

    @media(max-width: 576px){
      .support-card { padding: 25px 20px; }
      .support-header { font-size: 24px; }
      .support-list li { font-size: 15px; }
    }




.suppportText {
    background: #000;
}





/* Responsive Design */
@media (max-width: 768px) {
    
.carousel-caption {
    transform: unset !important;
    }
    
.counter-box {
    padding: 30px 20px;
}
.counter {
    font-size: 20px;
}

.counter-box p {
    font-size: 11px;
}

    
  #homeSlider {
    height: 100vh;
  }
  
  .carousel-caption h1 {
    font-size: 2rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
  
  .bannerButton a {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
    font-size: 1.5rem;
  }
  
  .bannerButton {
    flex-direction: column;
  }
  
  .bannerButton a {
    width: 100%;
    max-width: 250px;
  }
}