  
     html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      /* overflow-x: hidden !important; */
    }

 /* Floating call icon container */
    .call-floating {
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 9999;
    }

    /* Button style */
    .call-btn {
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: white;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 32px;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
      text-decoration: none;
      position: relative;
      animation: pulse 2s infinite;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Glow effect on hover */
    .call-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
    }

    /* Pulse animation */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
      }
      70% {
        box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    /* Tooltip text */
    .tooltip-text {
      position: absolute;
      bottom: 80px;
      right: 50%;
      transform: translateX(50%);
      background: #128c7e;
      color: white;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.3s ease;
      white-space: nowrap;
    }

    .call-btn:hover .tooltip-text {
      opacity: 1;
    }
    /* Top Bars */
    .top-header {
      background-color: #000;
      color: #fff;
      padding: 5px 15px;
      font-size: 14px;
    }

    .top-contact {
      background-color:#022f71;
      color: #fff;
      padding: 10px 60px;
      font-size: 16px;
    }
    .container-fluid{
         padding: 0px 60px;
         margin: 0px;
    }
    @media (max-width: 768px) {
  .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
  }
}
    .navbar {
      background-color: #fff;
      z-index: 1000;
    }
    .navbar-brand{
     margin: 0px;
     padding: 0px;

    }
    .navbar-brand img{
     margin: 0px;
     padding: 0px;
    }

    .quick-query-btn {
      background-color: #000;
      color: #fff;
      padding: 6px 15px;
      border: none;
      border-radius: 4px;
    }

    /* Hover Dropdown - Desktop Only */
    @media (min-width: 992px) {
      .navbar-nav .dropdown-menu {
        opacity: 0;
        width: 215px;
        visibility: hidden;
        transform: translateY(-100px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        display: block !important; /* override default display:none */
      }

      .navbar-nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      
    }
   
  .fa-brands, .fab {
    font-weight: 400;
    font-size: 19px;
    color: #fff;
}
    /* Carousel */
   

    /* Mobile Social Icons */
    .mobile-social {
      background-color: #022f71;
    }

    /* Custom Offcanvas for Mobile */
    .custom-offcanvas {
      position: fixed;
      top: 0;
      right: -250px;
      width: 250px;
      height: 100%;
      background-color: #00bbd4;
      box-shadow: -2px 0 10px rgba(0,0,0,0.2);
      z-index: 1050;
      transition: right 0.3s ease-in-out;
      padding: 20px;
      overflow-y: auto;
    }

    .custom-offcanvas.open {
      right: 0;
    }

    .custom-offcanvas .nav-link {
      display: block;
      padding: 10px 0;
      color: #fff !important;
      text-decoration: none;
      font-family: nunito;
      font-weight: 500 !important;
      font-size: 20px !important;
    }
    .nav-link{
     
      color: #333;
      text-decoration: none;
      
      font-weight: 500;
      font-size: 16px;
    }
    .nav-link:hover{
      color: #fff;
      background-color: #23a36c;
    }

    .offcanvas-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.3);
      z-index: 1049;
      display: none;
    }

    .offcanvas-backdrop.show {
      display: block;
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu-mobile {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding-left: 15px;
    }

    .dropdown-menu-mobile.open {
      max-height: 500px; /* enough height to show all items */
    }

    /* Dropdown toggle pointer */
    .dropdown-toggle-mobile {
      cursor: pointer;
      user-select: none;
      position: relative;
    }

    /* Add a little arrow for dropdown toggle */
    .dropdown-toggle-mobile::after {
      content: "▾";
      position: absolute;
      right: 10px;
      font-size: 12px;
      top: 50%;
      transform: translateY(-50%);
    }

/* about------------ */
    /* optional styling */
    .hero-section {
      padding: 40px 0;
      overflow: hidden;
    }
    .hero-heading {
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.15;
    }
    .hero-text {
      font-size: 1rem;
      color: #444;
    }

    /* Make image cover nicely */
    .hero-image {
      width: 100%;
      height: 100%;
      min-height: 260px;           /* adjust as needed */
      max-height: 520px;           /* optional cap */
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }

    /* Ensure the right column takes full height of the row on larger screens */
    @media (min-width: 768px) {
      .hero-row {
        min-height: 320px;
      }
    }
/* about off================ */

/* treatment------ */
 .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px;
    overflow: hidden;
  }

  .treatment-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
  }

  .treatment-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease-in-out;
  }

  .treatment-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    transition: 0.4s ease-in-out;
  }

  .treatment-card:hover img {
    transform: scale(1.08);
  }

  .treatment-card:hover .treatment-info {
    bottom: 0;
  }

  .treatment-info h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
  }

  .treatment-info p {
    font-size: 14px;
    line-height: 1.4;
  }

  /* 🔥 Responsive: Small screen = 1 card per row */
  @media (max-width: 768px) {
    .cards-container {
      grid-template-columns: 1fr !important;
    }

    .treatment-card img {
      height: 220px;
    }
  }
/* treatment off====== */

   .vmg-section {
        background: #0e0e0e;
        color: #fff;
        padding: 60px 20px;
        text-align: center;
    }

    .vmg-box {
        padding: 30px 40px;
        position: relative;
        border-radius: 10px;
        transition: all 0.4s ease;
    }

    /* Vertical line between columns */
    .vmg-box:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 20%;
        right: 0;
        width: 1px;
        height: 60%;
        background: rgba(255,255,255,0.3);
    }

    /* Hover Effect */
    .vmg-box:hover {
        background: rgba(0, 184, 255, 0.15); /* Sky blue glow */
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 184, 255, 0.7);
    }

    .vmg-icon {
        font-size: 50px;
        margin-bottom: 20px;
        transition: 0.4s;
    }

    .vmg-box:hover .vmg-icon {
        color: #00b8ff; /* Sky blue icon color */
        transform: translateY(-5px);
    }

    @media(max-width: 767px) {
        .vmg-box:not(:last-child)::after {
            display: none;
        }
    }

      .facilities-section {
    background: url("./img/bg.png") repeat;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
  }

  /* light pattern background */
  .facilities-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("./img/bg.png") repeat;
    opacity: 0.08;
    z-index: 0;
  }

  .facility-item {
    display: flex;
    gap: 18px;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
    padding: 10px 5px;
    transition: 0.3s ease;
    border-radius: 10px;
  }

  /* hover elegant */
  .facility-item:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
  }

  .facility-icon {
    width: 55px;
    height: 55px;
    background: #eaf3ff;
    color: #007bff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: 0.3s;
  }

  .facility-item:hover .facility-icon {
    background: #007bff;
    color: white;
  }

  .facility-title {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
  }

  .facility-text {
    margin: 5px 0 0;
    color: #666;
    font-size: 15px;
    line-height: 1.55;
  }

  .section-heading {
    font-weight: 800;
    font-size: 34px;
    position: relative;
    z-index: 2;
  }

  .section-subtitle {
    max-width: 850px;
    margin: 0 auto;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonial-section .section-tag {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0077b6;
  margin-bottom: 6px;
}

.testimonial-section h2 {
  font-size: 32px;
}

.btn-read-more {
  background: #23a36c;
  color: #fff;
  border-radius: 4px;
  padding: 10px 24px;
  font-weight: 500;
  border: none;
}

.btn-read-more:hover {
  background: #0077b6;
  color: #fff;
}

.testi-card {
  border-radius: 12px;
  background: #ffffff;
}

.testi-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-text {
  font-size: 14px;
  color: #555;
}

.testi-stars i {
  color: #ffc107;
  margin: 0 1px;
}

/* Mobile center alignment */
@media (max-width: 991.98px) {
  .testimonial-section {
    text-align: center;
  }
  .testimonial-section .btn-read-more {
    margin-top: 10px;
  }
}

   .footer {
      background:#111;
      color:#ddd;
      font-size:14px;
    }
    .footer a { color:#ddd; text-decoration:none; }
    .footer a:hover { color:#fff; }
    .footer-title { font-weight:600; margin-bottom:1rem; }
    .newsletter-input {
      background:#000; border:1px solid #333; color:#fff; border-radius:0;
    }
    .newsletter-input::placeholder { color:#777; }
    .newsletter-btn {
      background:#23a36c; color:#fff; border-radius:0;
    }
    .newsletter-btn:hover { background:#a81824; }
    .social-icon {
      width:36px; height:36px; border:1px solid #555; border-radius:50%;
      display:inline-flex; align-items:center; justify-content:center;
      margin-right:0.5rem; font-size:15px; color:#ddd;
    }
    .social-icon:hover { border-color:#fff; color:#fff; }

    
    .contact-section{
      padding:60px 0;
      overflow: hidden;
    }
    .testimonial-section{
      overflow: hidden;
    }

    .contact-wrapper{
      background:#ffffff;
      box-shadow:0 12px 35px rgba(22,39,73,0.08);
      border-radius:6px;
      padding:40px;
    }

    .contact-label-sm{
      font-size:12px;
      letter-spacing:0.16em;
      text-transform:uppercase;
      color:#23a36c;
      font-weight:600;
    }

    .contact-title{
      font-size:38px;
      font-weight:700;
      color:#172b4d;
      margin-bottom:30px;
    }

    .form-control{
      border-radius:4px;
      border:1px solid #edf0f4;
      padding:14px 16px;
      font-size:14px;
      background:#f9fbff;
    }

    .form-control:focus{
      box-shadow:none;
      border-color:#23a36c;
      background:#ffffff;
    }

    textarea.form-control{
      min-height:180px;
      resize:vertical;
    }

    .btn-contact{
      padding:12px 32px;
      font-size:14px;
      font-weight:600;
      letter-spacing:0.08em;
      text-transform:uppercase;
      border-radius:3px;
      border:none;
    }

    .btn-send{
      background:#23a36c;
      color:#fff;
    }

    .btn-send:hover{
      background:#198a58;
      color:#fff;
    }

    .btn-reset{
      background:#edf1f7;
      color:#172b4d;
    }

    .btn-reset:hover{
      background:#dbe1ee;
    }

    /* Right Side */
    .contact-right-title{
      font-size:32px;
      font-weight:700;
      color:#172b4d;
      margin-bottom:24px;
    }

    .contact-info-block{
      display:flex;
      align-items:flex-start;
      gap:16px;
      margin-bottom:26px;
    }

    .contact-icon-box{
      width:70px;
      height:70px;
      background:#28a46e;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .contact-icon-box i{
      font-size:26px;
      color:#fff;
    }

    .contact-info-block h6{
      font-size:13px;
      text-transform:uppercase;
      letter-spacing:0.14em;
      margin-bottom:4px;
      color:#7f8ba0;
      font-weight:700;
    }

    .contact-info-block p{
      margin-bottom:0;
      font-size:14px;
      color:#5b6d85;
    }

    @media(max-width: 992px){
      .contact-title{ font-size:30px; }
      .contact-right-title{ font-size:26px; }
      .contact-wrapper{ padding:25px; }
    }
/* bbbbbbbbbbbbbbbbbbb */
.img-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.img-box img {
  width: 100%;
  transition: 0.4s ease;
}

/* Overlay */
.img-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.img-box:hover .overlay {
  opacity: 1;
}

.img-box:hover img {
  transform: scale(1.05);
}

/* Plus icon */
.img-box .overlay i {
  color: #fff;
  font-size: 40px;
}
