   body, html {
      margin: 0;
      padding: 0;
      height: 100%;
    }
     /* 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: #00bcd4;
      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: #333;
}
    /* Carousel */
   

    /* Mobile Social Icons */
    .mobile-social {
      background-color: #00bbd4;
    }

    /* 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: #06bbcf;
    }

    .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%);
    }

    /*================main===about=========*/
       .container-2 {
            max-width: 100%px;
            margin: 20px;
        }

        .split-layout {
            display: flex;
            flex-wrap: wrap;
            
            border-radius: 12px;
            overflow: hidden;
            background: white;
        }

        .content-section {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding: 60px 40px;
            
            color: #333;
        }

        .image-gallery {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
            
        }

        .main-title {
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            
        }

        .description {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 90%;
        }

        .btn-primary {
            display: inline-block;
            background: #333;
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: fit-content;
            box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
        }

        .btn-primary:hover {
            background: #ff9a8b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
            color:#333;
            font-weight: 600;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 768px) {
            .split-layout {
                flex-direction: column;
            }

            .content-section, .image-gallery {
                min-width: 100%;
            }

            .image-gallery {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 250px);
            }

            .main-title {
                font-size: 2.2rem;
            }
            .container-2{
                margin: 5px;
            }
        }

        @media (max-width: 480px) {
            .content-section {
                padding: 40px 25px;
            }

            .main-title {
                font-size: 1.8rem;
            }

            .image-gallery {
                padding: 25px;
                gap: 15px;
            }
        }
    /*=============main===about=====end=====*/

    /*================cards==========*/
       .vmg-section {
      background-color: #111;
      color: #fff;
      padding: 30px 0;
    }
    .vmg-box {
      text-align: center;
      padding: 30px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }
    .vmg-box i {
      font-size: 50px;
      margin-bottom: 20px;
      color: #fff;
      z-index: 2;
      position: relative;
    }
    .vmg-box h3 {
      font-weight: bold;
      margin-bottom: 15px;
      z-index: 2;
      position: relative;
    }
    .vmg-box p {
      z-index: 2;
      position: relative;
    }

    /* Hover effect background */
    .vmg-box::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, #00bbd4, #00bbd4); /* aap apna colour dal sakte ho */
      transition: width 0.5s ease;
      z-index: 1;
    }
    .vmg-box:hover::before {
      width: 100%;
    }
    .vmg-box:hover {
      transform: translateY(-5px);
    }

    /* Divider with circle */
    .divider {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }
    .divider::before {
      content: "";
      position: absolute;
      width: 2px;
      height: 100%;
      background: #fff;
    }
    .divider::after {
      content: "";
      position: absolute;
      width: 14px;
      height: 14px;
      background: #fff;
      border-radius: 50%;
    }

    @media (max-width: 991px) {
      .divider {
        display: none;
      }
    }
    /*-=============cards======end========*/

    /*==============facaltices=============*/
   
      .section-title {
      color: #ff7b00;
      font-weight: bold;
    }
    .facility-card {
      background: transparent;
      border: none;
      padding: 15px;
    }
    .facility-icon {
      font-size: 40px;
      color: #4e5cf6;
      margin-bottom: 10px;
    }
    .facility-card h5 {
      font-weight: 700;
    }
    .facility-card h5:hover{
      color: #ff7b00;
    }
    .facility-card p {
      font-size: 15px;
      color: #333;
    }
    /*=============facaltices===================%*/

    /*===========excellent---treatment-----*/
        .section-title {
      text-align: center;
      margin-bottom: 0px;
    }
    .section-title h6 {
      color: #f39c12;
      font-weight: 600;
    }
    .card-custom {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.4s ease-in-out;
      position: relative;
    }
    .card-custom img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .card-custom:hover img {
      transform: scale(1.05);
    }
    /* Title box with outside corner */
    .card-title-box {
      position: absolute;
      bottom: 0;
      left: 0;
      background: #000000d6;
      color: #fff;
      font-weight: 600;
      padding: 10px 20px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .card-custom:hover .card-title-box {
        background: #00bbd4 !important; 
        color: #fff !important;
         transition: background 0.4s ease;  /* smooth hover */
    }
    .corner {
      width: 0;
      height: 0;
      border-left: 20px solid transparent;
      border-top: 20px solid #00bcd4;
      position: absolute;
      bottom: 0;
      right: -20px; /* बाहर निकला हुआ */
    }
    /* Hover icon */
    .hover-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 40px;
      color: #fff;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .card-custom:hover .hover-icon {
      opacity: 1;
    }
    .card-custom::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .card-custom:hover::after {
      opacity: 1;
    }
    /*--------------excelletnt treatment-----------*/

    /*---------------why choose us------*/
        .section-title-head {
      font-weight: 900;
      font-size: 2rem;
      color: #fff;
     
    }
    .contact-form input,
    .contact-form textarea {
      background-color: white;
      border: none;
      padding: 15px;
      margin-bottom: 15px;
      border-radius: 10px;
      width: 100%;
    }
    .btn-green {
      background-color: #6cc000;
      color: white;
      font-weight: bold;
      padding: 10px 20px;
      border: none;
      border-radius: 10px;
    }
    .btn-green:hover {
      background-color: #5ab000;
    }
    /*-------------why choose us-----------------*/

    /*----------------gallery------*/
    .img-container {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .img-container img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }
    .img-container:hover img {
      transform: scale(1.1);
    }
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .img-container:hover .overlay {
      opacity: 1;
      
    }
    .overlay i {
      font-size: 2rem;
      color: #fff;
    }
    /*----------------gallery----end--------*/
    /*===================review==============*/
     
  .slider-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;

 background-color: #00bbd4;
}

    .arrow-btn {
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
      user-select: none;
      width: 50px;
      text-align: center;
    }

    .review-box {
      flex: 1 1 300px;
      max-width: 450px;
      background: #fff;
      color: #333;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: opacity 0.4s;
    }

    .review-box.hidden {
      opacity: 0;
    }

    .review-box h5 {
      margin-bottom: 15px;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .review-box .stars {
      color: orange;
      margin-left: 10px;
      font-size: 1rem;
    }

    .middle-icons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
      transition: transform 0.4s;
    }

    .middle-icons img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 5px;
    }

    .feedback-side {
      flex: 1 1 300px;
      max-width: 400px;
    }

    .feedback-side h4 {
      color: #fff;
      margin-bottom: 10px;
      font-size: 1.3rem;
    }

    .feedback-side p {
      line-height: 1.5;
      font-size: 0.95rem;
    }

    /* Animation classes */
    .icons-slide-down {
      transform: translateY(30px);
    }
    .icons-slide-up {
      transform: translateY(-30px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .slider-wrapper {
        flex-direction: column;
        padding: 30px 10px;
      }
      .middle-icons {
        flex-direction: row;
        gap: 10px;
        margin: 20px 0;
      }
      .arrow-btn {
        font-size: 1.8rem;
        width: 40px;
      }
    }
    /*====================review=======end===========&/
    /*=====================footer-----------------*/
        .footer {
      background-color: #1b3a3e;
      color: #fff;
      padding: 60px 30px 20px;
    }
    .footer h5 {
      font-weight: bold;
      margin-bottom: 20px;
    }
    .footer a {
      color: #fff;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .footer .form-control {
      margin-bottom: 10px;
    }
    .footer .btn {
      background-color: #f7276c;
      color: #fff;
      border: none;
    }
    .footer .btn:hover {
      background-color: #e31d5b;
    }
    .footer .treatments a::before {
      content: "→ ";
      margin-right: 5px;
    }
    .footer-bottom {
      background-color: #f7276c;
      color: #fff;
      text-align: center;
      padding: 10px;
      font-weight: 500;
    }
    .footer-copy {
      background-color: #1b3a3e;
      color: #fff;
      padding: 15px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }
    .footer-copy a {
      color: #fff;
      margin-left: 10px;
      font-size: 20px;
      background-color: #000;
      padding: 5px 10px;
      border-radius: 5px;
      display: inline-block;
    }
    .footer-copy a:hover {
      opacity: 0.8;
    }
    /*==============footer----------end----------------*/