    .icon-image {
      width: 50px;
      /* Adjust the size as needed */
      height: auto;
      margin-bottom: 15px;
      /* Space between the icon and text */
    }

    .icon-box {
      height: 300px;
      /* Adjust as needed */
      /* display: flex; */
      flex-direction: column;
      justify-content: center;
      /* Center vertically */
      align-items: center;
      /* Center horizontally */
      padding: 20px;
      /* Added padding */
      text-align: center;
      /* Center text */
    }

    .success-msg,
    .error-msg {
      padding: 10px 20px;
      color: white;
      border-radius: 5px;
      display: none;
    }

    .success-msg {
      background-color: #28a745;
      /* Green */
    }

    .error-msg {
      background-color: #dc3545;
      /* Red */
    }

    .card-icon {
      width: 80px;
      height: auto;
      margin-bottom: 20px;
    }

    .card {
      border: 1px solid #f1f1f1;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      border-radius: 15px;
    }

    .card:hover {
      transform: translateY(-10px);
      background-color: var(--accent-color);
    }

    .card:hover .card-title,
    .card:hover .card-text {
      color: #fff;
    }

    .card:hover img {
      filter: brightness(0) invert(1);

    }

    .card-body {
      text-align: center;
      padding: 35px 25px;
    }

    .card-title {
      font-weight: 500;
      margin-bottom: 10px;
    }

    .card-text {
      font-size: 14px;
    }

    .visiting-consultant-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 40px;
    }

    .visiting-consultant-title {
      font-weight: bold;
      font-size: 28px;
      margin-bottom: 20px;
      margin-left: 20px;
    }

    .hospital-list {
      list-style: none;
      padding-left: 0;
    }

    .hospital-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .hospital-number {
      background-color: #17a2b8;
      color: white;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 10px;
      font-weight: bold;
    }

    .hospital-number:nth-child(1) {
      background-color: #17a2b8;
    }

    .hospital-number:nth-child(2) {
      background-color: #28a745;
    }

    .hospital-number:nth-child(3) {
      background-color: #ffc107;
    }

    .hospital-number:nth-child(4) {
      background-color: #dc3545;
    }

    .hospital-number:nth-child(5) {
      background-color: #20c997;
    }

    .hospital-text {
      font-size: 16px;
    }

    .consultant-images {
      display: flex;
      gap: 10px;
    }

    .consultant-image img {
      border-radius: 15px;
      max-width: 100%;
      height: auto;
    }

    .consultant-images img {
      width: 175px;
      height: 257px;
      object-fit: cover;
    }

    .apex-highlight {
      color: #005f99;
      font-weight: 700;
      font-family: "Arial", sans-serif;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      padding-bottom: 8px;
      transition: color 0.3s ease, transform 0.3s ease;
      /* Added transform for scale effect */
    }

    .apex-highlight:hover {
      color: #007acc;
      /* Change color on hover */
      transform: scale(1.05);
      /* Slightly scale the text */
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
      /* Subtle shadow on hover */
    }

    .apex-highlight::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 4px;
      background-color: #8bc5e3;
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .apex-highlight:hover::after {
      transform: scaleX(1);
    }

    /* Fade-in effect */
    .welcome {
      opacity: 0;
      transition: opacity 1s ease;
      /* Fade effect */
    }


    /* image slider css */
    .slider {
      position: relative;
      overflow: hidden;
      max-width: 800px;
      margin: 0 auto;
    }

    .slider-list {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 100%;
    }

    .slider-item {
      min-width: 100%;
      text-align: center;
      height: 400px;
    }

    .slider-img {
      width: 100%;
      height: 100%;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 10;
    }

    .slider-btn.left-btn {
      left: 10px;
    }

    .slider-btn.right-btn {
      right: 10px;
    }

    .slider-btn:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

    /* end image slider css */

    /* video slider css */
    .video-container {
      margin: 0 auto;
      max-width: 100%;
      width: 1040px;
      height: 590px;
      position: relative;
    }

    /* Video Slider */
    .video-slider {
      display: none;
    }

    /* Individual Slide: Container */
    .video-slide {
      position: relative;
      margin: 0 auto;
    }

    /* Individual Slide: Video */
    .video-slide video {
      width: 100%;
      height: 590px;
    }

    /* Navigation */
    .video-slider-btn {
      border: none;
      display: inline-block;
      color: #fff;
      font-size: 100px;
      padding: 10px;
      vertical-align: middle;
      overflow: hidden;
      text-decoration: none;
      background-color: transparent;
      text-align: center;
      cursor: pointer;
      white-space: nowrap;
      z-index: 99999;
      opacity: .7;
      transition: all 350ms ease-in-out;
    }

    .video-slider-btn:hover {
      opacity: 1;
      transition: all 350ms ease-in-out;
    }

    .video-slider-btn.left-side {
      position: absolute;
      top: 50%;
      left: 0%;
      color: #1977cc;
      transform: translate(0%, -50%);
      -ms-transform: translate(-0%, -50%);
    }

    .video-slider-btn.right-side {
      position: absolute;
      top: 50%;
      right: 0%;
      color: #1977cc;
      transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
    }

    @media (max-width: 768px) {
      .video-slider-btn {
        display: none;
      }
    }
      .main-section {
        background-color: #fff;
        /* Background color for the entire section */
        padding: 35px 0px;
        /* Optional padding to add spacing */
      }

      .isotope-item {
        width: 30%;
      }

      .rt-holder {
        position: relative;
        /* Position relative for hover effect */
        overflow: hidden;
        /* Hide overflow for smooth effect */
        transition: transform 0.3s ease;
        /* Smooth transition for transform */
      }

      .rt-holder:hover {
        transform: scale(1.05);
        /* Scale up the card on hover */
      }

      .rt-img-holder img {
        transition: transform 0.3s ease;
        /* Smooth transition for image */
      }

      .rt-holder:hover .rt-img-holder img {
        transform: scale(1);
        /* Zoom in on the image on hover */
      }

      .rt-holder {
        /* border: 1px solid #ddd; */
        border-radius: 5px;
        background-color: ffffff;
        /* padding: 15px; */
        margin-bottom: 20px;
        transition: all 0.3s ease;
      }

      .rt-detail {
        padding: 15px;
      }

      .rt-img-holder img {
        width: 100%;
        height: auto;
        border-radius: 5px;
      }

      .entry-title a {
        color: #333;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
      }

      .entry-title a:hover {
        color: #007bff;
      }

      .post-meta-user,
      .post-meta-tags {
        margin-bottom: 10px;
        font-size: 14px;
      }

      .post-meta-user i,
      .post-meta-tags i {
        margin-right: 5px;
      }

      .read-more a {
        /* color: #007bff; */
        color: white;
        text-decoration: none;
      }

      .read-more a:hover {
        text-decoration: underline;
      }

      @media (max-width: 768px) {
        .rt-detail h2 {
          font-size: 18px;
        }

        .main-section {
          padding: 30px 0;
        }
      }

      .mains-section {
        position: relative;
        /* Position relative for absolute positioning of overlay */
        width: 100vw;
        /* Full width of the viewport */
        height: 500px;
        /* Set a height for the section */
        overflow: hidden;
        /* Hide overflow if the image is larger than the container */
      }

      .image-container {
        position: relative;
        /* Position relative for overlay text */
        width: 100%;
        /* Full width of the container */
        height: 35%;
        /* Full height of the container */
        opacity: 0.3;
        /* Semi-transparent background for readability */
      }

      .background-image {
        width: 100%;
        /* Make the image responsive */
        height: 50%;
        /* Make the image cover the entire container */
        object-fit: cover;
        /* Ensures the image covers the entire area without distortion */
      }

      .overlay-text {
        position: absolute;
        /* Position the text absolutely */
        font-size: 18px;
        top: 40%;
        /* Center vertically */
        left: 50%;
        /* Center horizontally */
        transform: translate(-50%, -50%);
        /* Adjust for the center */
        color: white;
        /* Text color */
        text-align: center;
        /* Center the text */
        padding: 20px;
        /* Add some padding */
        /* background-color: rgba(0, 0, 0, 0.5); Semi-transparent background for readability */
        border-radius: 10px;
        /* Optional: rounded corners */
      }

      @media (max-width: 992px) {
        .col-md-6 {
          flex: 0 0 45%;
          /* Slightly smaller cards */
          max-width: 45%;
        }
      }

      @media (max-width: 768px) {
        .col-sm-6 {
          flex: 0 0 90%;
          /* Almost full width on smaller screens */
          max-width: 90%;
        }

        .main-section {
          padding: 10px;
          /* Reduce padding for smaller screens */
        }
      }

      @media (max-width: 625px) {
        .overlay-text {
          margin-top: 10px;
          font-size: 15px;
          left: 125px;
          text-align: left;
        }

        .our-blogs {
          font-size: 25px !important;
        }
      }

      @media (max-width: 365px) {
        .overlay-text {
          left: 70px;
        }

        .our-blogs {
          font-size: 15px !important;
        }
      }

      /* Optional: Reduce card padding for smaller screens */
      .rt-detail {
        padding: 10px;
        /* Adjust padding inside cards */
      }

      .our-blogs {
        font-size: 3rem;
        font-weight: bold;
      }
   
          .clinic-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .clinic-info h1 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #333;
    }

    .clinic-info h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #333;
    }

    .clinic-info p {
        font-size: 1rem;
        color: #555;
    }

    .contact-btn .btn {
        padding: 0.6rem 2rem;
        font-size: 1rem;
        font-weight: 600;
    }

    .additional-info h3 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #333;
    }

    .additional-info p {
        font-size: 1rem;
        color: #555;
        margin-bottom: 0.5rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .clinic-info h2 {
            font-size: 1.8rem;
        }

        .clinic-image img {
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .clinic-info h2 {
            font-size: 1.6rem;
        }

        .clinic-image img {
            width: 100%;
        }
    }
    .whatsapp-boat {
      position: fixed;
      z-index: 9;
      bottom: 50px;
      left: 30px;
    }

    .whatsapp-boat img {
      width: 40px;
    }

    a.topbar-appintment-btn {
      background-color: #fff;
      padding: 5px 10px;
      border-radius: 5px;
      font-weight: 500;
    }

    .media-image img {
      height: 400px;
      object-fit: cover;
      border-radius: 15px;
    }

    .media-image {
      position: relative;
      overflow: hidden;
    }

    .media-image img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
    }

    .media-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: #1977cc;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
      pointer-events: none;
    }

    .media-image:hover::after {
      opacity: 0.35;
    }

    .media-image:hover img {
      transform: scale(1.05);
    }

    .advanced-treatment-container {
    margin-bottom: 0;
    padding: 40px;
    background: #f3f3f3;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
        border-radius: 15px;
        height: stretch;
}
ul.cust-list{
list-style-type: none;
    padding-left: 0;
}
ul.cust-list li{
  padding-bottom: 8px;
}
ul.cust-list li i{
  padding-right: 10px;
  color: #1977cc;
}
.btn-primary{
  background-color: #1977cc;
  border-color: #1977cc;
}
.card:hover .btn-primary{
  color: #1977cc;
  background-color: #fff;
  border-color: #1977cc;
}
.stats-box .stats-item {
    background-color: var(--surface-color);
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    z-index: 0;
    height: stretch;
}