  /* topbar section start */
  body {
    margin: 0;
    font-family: "Poppins", sans-serif;
  }

  .top-bar {
    background-color: #a01e21;
    color: white;
    padding: 2px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 0.2;
  }

  .top-left,
  .top-center,
  .top-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .top-left i,
  .top-right i {
    color: #fff;
  }

  .top-right a {
    color: white;
    text-decoration: none;
  }

  .top-right a:hover {
    color: #ffc107;
  }

  .top-center {
    width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
    margin-left: 20px;
  }

  .offer-button {
    background: transparent;
    /* No background */
    color: white;
    /* Icon color white */
    border: none;
    padding: 6px 12px;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .offer-button:hover {
    transform: scale(1.2);
  }

  #offerText {
    font-size: 14px;
    font-weight: 500;
    color: white;
    /* Offer text in white */
    white-space: nowrap;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Mobile View: only offer center visible */
  /* Mobile View: only offer center visible */
  @media screen and (max-width: 768px) {

    .top-left,
    .top-right {
      display: none !important;
    }

    .top-bar {
      justify-content: center;
      padding: 10px;
    }

    .top-center {
      font-size: 13px;
      flex-wrap: wrap;
      text-align: center;
      width: 100%;
    }
  }

  .top-right {
    display: flex;
    gap: 10px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(to bottom right, #2c3e50, #34495e);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
  }

  .social-icon:hover {
    transform: rotateY(20deg) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
  }

  /* Custom colors per platform (optional) */
  .social-icon.fb {
    background: linear-gradient(to bottom right, #3b5998, #2d4373);
  }

  .social-icon.insta {
    background: linear-gradient(45deg, #fd5949, #d6249f, #285aeb);
  }

  .social-icon.wa {
    background: linear-gradient(to bottom right, #25d366, #128c7e);
  }

  /* topbar section end */

  /* middle section start */
  .middle-bar {
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    padding: 10px 0;
  }

  .middle-bar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
  }

  .middle-bar a:hover {
    color: #a01e21;
  }

  .btn-search {
    background-color: #a01e21;
    color: #fff;
    border: none;
  }

  .btn-search:hover {
    background-color: #87181b;
  }

  .input-group input:focus {
    box-shadow: none;
    border-color: #a01e21;
  }

  .icon-link {
    color: #333;
    transition: 0.3s;
  }

  .icon-link:hover {
    color: #a01e21;
  }

  @media (max-width: 767px) {
    .middle-bar .search-bar {
      display: none;
    }

    .middle-bar .auth-links {
      display: none;
    }
  }

  .stylish-search {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }

  .stylish-input {
    border: 2px solid #a01e21;
    border-right: none;
    border-radius: 50px 0 0 50px;
    padding: 10px 20px;
    font-size: 15px;
  }

  .stylish-input:focus {
    box-shadow: 0 0 0 3px rgba(160, 30, 33, 0.2);
    border-color: #a01e21;
  }

  .stylish-btn {
    background-color: #a01e21;
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }

  .stylish-btn:hover {
    background-color: #87181b;
  }

  .auth-btn {
    display: inline-block;
    padding: 6px 15px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
    color: black;
    /* text always black */
    border: 1.5px solid #a01e21;
    border-radius: 30px;
    background-color: transparent;
    transition: 0.3s ease;
    text-decoration: none;
  }

  .auth-btn:hover {
    background-color: #a01e21;
    /* red background on hover */
    color: black !important;
    /* force text to stay black */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .auth-btn i {
    font-size: 14px;
  }

  /* middle section end */

  /* navbar start */
  .navbar-custom {
    background-color: #fff;
    /* border-bottom: 2px solid #a01e21; */
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
  }

  .navbar-nav .nav-link {
    color: #a01e21;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.25s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus,
  .navbar-nav .nav-link.active {
    background-color: #fce7e9;
    color: #000;
  }

  .dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.2s ease-in-out;
  }

  .dropdown-item {
    color: #a01e21;
    font-weight: 700;
    padding: 10px 20px;
    transition: background-color 0.2s;
  }

  .dropdown-item:hover {
    background-color: #fce7e9;
    color: #000;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(5px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mobile Improvements */
  @media (max-width: 991px) {
    .navbar-collapse {
      background-color: #fff;
      padding: 1rem;
      border-top: 1px solid #ddd;
      margin-top: 10px;
      border-radius: 10px;
    }

    .navbar-nav .nav-link {
      display: block;
      width: 100%;
      text-align: left;
      margin-bottom: 5px;
    }

    .dropdown-menu {
      width: 100%;
      box-shadow: none;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }

    .dropdown-menu .dropdown-item {
      width: 100%;
    }
  }

  /* navbar end */

  /* crousel start */

  .custom-carousel-item img {
    object-fit: cover;
    height: 500px;
    width: 100%;
  }

  @media (max-width: 768px) {
    .custom-carousel-item img {
      height: 280px;
    }

    .custom-carousel-control-prev-icon,
    .custom-carousel-control-next-icon {
      width: 45px !important;
      height: 30px !important;
    }
  }

  .custom-carousel-control-prev-icon,
  .custom-carousel-control-next-icon {
    background-color: #a01e21;
    background-size: 50% 50%;
    width: 45px;
    height: 45px;
    border-radius: 50%;
  }

  .custom-carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  }

  .custom-carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  }

  .custom-carousel-control-prev,
  .custom-carousel-control-next {
    width: 7%;
  }

  /* Marquee styling */
  .scrolling-text-wrapper {
    background-color: #a01e21;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    height: 50px;
    /* Increased height */
    display: flex;
    align-items: center;
    /* Vertically center the text */
  }


  .scrolling-text {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
  }

  .scrolling-text:hover {
    animation-play-state: paused;
    /* Pause animation on hover */
  }

  .scrolling-text span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: black;
    white-space: nowrap;
    display: inline-block;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(100%);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  /* crousel end */

  /* shop by category start */
  .product-grid {
    background-color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }

  .product-grid .product-image {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
  }

  .product-grid .product-image a.image {
    display: block;
  }

  .product-grid .product-image img {
    width: 100%;
    /* height: auto; */
    height: 100%;

  }

  .product-grid .product-image .pic-1 {
    transition: all 0.3s ease 0s;
  }

  .product-grid .product-image:hover .pic-1 {
    transform: translateX(100%);
  }

  .product-grid .product-image .pic-2 {
    width: 100%;
    height: 100%;
    transform: translateX(-101%);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease 0s;
  }

  .product-grid .product-image:hover .pic-2 {
    transform: translateX(0);
  }

  .product-sale-label {
    color: #fff;
    background: #0a805e;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 3px;
  }

  .product-grid .product-like-icon {
    color: #696969;
    font-size: 22px;
    line-height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .product-grid .product-like-icon:hover {
    color: #0a805e;
  }

  .product-grid .product-links {
    width: 170px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    bottom: -50px;
    left: 50%;
    transition: all 0.3s ease 0s;
  }

  .product-grid:hover .product-links {
    bottom: 40px;
    opacity: 1;
  }

  .product-grid .product-links li {
    display: inline-block;
    margin: 0 2px;
  }

  .product-grid .product-links li a {
    color: #fff;
    background: #000;
    font-size: 16px;
    line-height: 48px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: block;
    transition: all 0.3s ease 0s;
  }

  .product-grid .product-links li a:hover {
    background: #333;
  }

  .product-content {
    text-align: left;
    padding-top: 15px;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .product-grid:hover .product-content {
    opacity: 1;
    transform: translateY(-5px);
  }

  .product-grid .title {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 8px;
  }

  .product-grid .title a {
    color: #333;
    transition: all 0.3s ease 0s;
    text-decoration: none;
  }

  .product-grid .title a:hover {
    color: #0a805e;
  }

  .product-grid .price {
    color: #0a805e;
    font-size: 16px;
    font-weight: 500;
  }

  .product-grid .price span {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 5px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(128, 0, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease;
    z-index: 10;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background-color: maroon;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.354a.5.5 0 0 0-.708 0L4.5 7.5l6.146 6.146a.5.5 0 0 0 .708-.708L5.707 7.5l5.647-5.646a.5.5 0 0 0 0-.708z'/%3e%3c/svg%3e");
    background-size: 60% 60%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.354a.5.5 0 0 1 .708 0L11.5 7.5l-6.146 6.146a.5.5 0 0 1-.708-.708L10.293 7.5 4.646 1.854a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }

  .shop-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6d0d0d;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
  }

  .shop-heading span {
    color: #ff6f61;
  }

  .sub-heading {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
    font-style: italic;
  }

  .shop-heading::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ff6f61;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
    animation: underlineFadeIn 0.8s ease-in-out forwards;
  }

  @keyframes underlineFadeIn {
    0% {
      width: 0;
      opacity: 0;
    }

    100% {
      width: 60px;
      opacity: 1;
    }
  }

  /* Placeholder image styling */
  .placeholder-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    border-radius: 10px;
  }

  /* Mobile responsive - 1 card per slide */
  @media (max-width: 767px) {
    .mobile-card {
      display: block !important;
    }

    .desktop-cards {
      display: none !important;
    }
  }

  /* Desktop responsive - 4 cards per slide */
  @media (min-width: 768px) {
    .mobile-card {
      display: none !important;
    }

    .desktop-cards {
      display: block !important;
    }
  }

  /* Swiper Navigation Buttons */
  /* Swiper Navigation Buttons */
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: maroon;
    /* Maroon background */
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    transition: background-color 0.3s ease;
    border: 2px solid maroon;
    /* Optional border in same color */
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
    color: white;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: white;
    color: maroon !important;
    border-color: maroon;
  }

  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    color: maroon;
  }

  /* shop by category end */

  /* product card start */
  .product-card {
    border: 1px solid #ddd;
    /* border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease; */
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }

  .product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }

  /* 
      .product-card img {
        height: 200px;
        object-fit: cover;
        width: 100%;
      } */

  .product-card img {
    transition: transform 0.4s ease;
    height: 300px;
    /* increased height */
    width: 110%;
    /* slightly wider than container */
    object-fit: contain;
    background-color: #fff;
    /* padding: 10px; */
    padding: 0px;
  }


  .product-card:hover img {
    transform: scale(1.05);
  }

  /* .product-name {
        font-size: 18px;
        font-weight: 600;
      } */

  .product-name {
    transition: color 0.3s ease;
  }

  .product-card:hover .product-name {
    color: #ff0000;
  }

  .price {
    font-size: 18px;
    color: #e53935;
    font-weight: bold;
  }

  .stars i {
    background: linear-gradient(45deg, #ffc107, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .slider-wrapper {
    position: relative;
  }

  .custom-prev,
  .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(160, 1, 1, 0.6);
    color: #fff;
    border: none;
    padding: 7px 15px;
    font-size: 18px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
  }

  .custom-prev {
    left: -15px;
  }

  .custom-next {
    right: -15px;
  }

  .custom-prev:hover,
  .custom-next:hover {
    background-color: rgba(160, 1, 1, 0.6);
  }

  @media (max-width: 576px) {
    .custom-prev {
      left: 10px;
    }

    .custom-next {
      right: 10px;
    }

    .custom-prev,
    .custom-next {
      padding: 5px 10px;
      font-size: 16px;
    }
  }

  /* product card end */

  /* banner index start */
  .why-section {
    background: #A01E21 url('https://www.transparenttextures.com/patterns/dark-leather.png');
    background-blend-mode: multiply;
    padding: 44px 1px;
    text-align: center;
  }

  .why-section h2 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff0dc;
  }

  .why-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #fceee0;
  }

  .icon-row {
    margin-top: 40px;
  }

  .icon-box {
    padding: 15px;
  }

  .icon-box img {
    height: 65px;
    margin-bottom: 10px;
  }

  .icon-text {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: #f8e6d2;
  }

  @media (max-width: 768px) {
    .why-section h2 {
      font-size: 20px;
    }

    .icon-text {
      font-size: 12px;
    }

    .icon-box img {
      height: 50px;
    }
  }

  /* banner index end */

  /* why choose us index start */
  .choose-us-section {
    background-color: #a01e21;
    padding: 60px 10px;
    color: #fff8ec;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .choose-us-section::before {
    content: '';
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    opacity: 0.07;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .choose-us-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .choose-us-section p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #fde7d9;
    position: relative;
    z-index: 1;
  }

  .choose-icon-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 25px;
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
  }

  .choose-icon-box:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
  }

  .choose-icon-box i {
    font-size: 48px;
    color: #f3c78e;
    margin-bottom: 15px;
  }

  .choose-icon-box h5 {
    font-size: 20px;
    font-weight: 600;
    color: #ffe2b3;
    margin-bottom: 10px;
  }

  .choose-icon-box p {
    font-size: 14px;
    color: #ecd6be;
    margin: 0;
  }

  @media (max-width: 768px) {
    .choose-us-section h2 {
      font-size: 28px;
    }

    .choose-icon-box {
      margin-bottom: 30px;
    }
  }

  @media (max-width: 576px) {
    .choose-us-section p {
      font-size: 14px;
    }
  }

  /* why choosw us index end */

  /* testimonial index start */
  .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  /* testimonial index end */

  /* consultation start */

  .appointment-wrapper {
    /* padding: 40px 30px; */
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
    width: 100%;
  }

  .appointment-wrapper .brand-logo img {
    max-width: 160px;
    margin-bottom: 20px;
    animation: zoomIn 1s ease;
  }

  .appointment-wrapper h2 {
    color: #1b422f;
    font-weight: 700;
    margin-bottom: 15px;
    animation: slideInLeft 1s ease;
  }

  .appointment-wrapper p {
    color: #2e4734;
    font-size: 1.1rem;
    animation: slideInLeft 1.2s ease;
  }

  .appointment-btn {
    background-color: #a01e21;
    color: white;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    margin-top: 25px;
    transition: 0.3s ease;
    animation: fadeInUp 1.4s ease;
  }

  .appointment-btn:hover {
    background-color: #bd1f22;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 128, 0, 0.2);
  }

  .doctor-photo {
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    animation: slideInRight 1s ease;
  }

  @media (max-width: 768px) {
    .appointment-wrapper {
      text-align: center;
      padding: 30px 20px;
    }

    .doctor-photo {
      margin-top: 30px;
    }

    .appointment-btn {
      width: 100%;
    }
  }

  /* Animations */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes zoomIn {
    from {
      transform: scale(0.8);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* consultation end */

  /* certification styles start */
  .certification-wrapper {
    padding: 70px 0;
    background: linear-gradient(to right, #ffffff, #f7f7f7);
  }

  .shop-heading {
    font-size: 2.8rem;
    font-weight: bold;
    background: linear-gradient(to right, #a01e21, #800000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-in-out;
  }

  .sub-heading {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
  }

  .certification-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    background: #fff;
    text-align: center;
    padding: 12px;
    animation: zoomIn 0.6s ease-in-out;
  }

  .certification-card:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 24px rgba(160, 30, 33, 0.2);
  }

  .certification-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .cert-name {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #444;
  }

  .cert-prev-btn,
  .cert-next-btn {
    background-color: #a01e21;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .cert-prev-btn {
    left: 10px;
  }

  .cert-next-btn {
    right: 10px;
  }

  .cert-icon-circle {
    filter: invert(1);
    width: 20px;
    height: 20px;
    background-size: contain;
  }

  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes zoomIn {
    0% {
      transform: scale(0.9);
      opacity: 0;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Modal custom fade */
  #certModal .modal-content {
    animation: fadeIn 0.4s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (max-width: 767px) {
    .certification-card img {
      height: 150px;
    }
  }

  /* certification styles end */

  /* faq section start */
  .faq-section {
    max-width: 950px;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 50px 35px;
  }

  .faq-section h2 {
    font-size: 2.2rem;
    color: #800000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
  }

  .accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  }

  .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    color: #800000;
    background: #fff;
    padding: 1rem 1.25rem;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .accordion-button::after {
    font-family: "Bootstrap-icons";
    content: "\f282";
    /* bi-chevron-down */
    font-size: 1rem;
    background-image: none;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
  }

  .accordion-button:not(.collapsed) {
    background-color: #800000;
    color: #fff;
  }

  .accordion-body {
    font-size: 1rem;
    background-color: #fffdfd;
    padding: 1rem 1.25rem;
    color: #555;
  }

  @media (max-width: 576px) {
    .faq-section {
      padding: 30px 20px;
    }

    .faq-section h2 {
      font-size: 1.7rem;
    }

    .accordion-button {
      font-size: 1rem;
    }
  }

  /* faq section end */

  /* enquiry index start */
  .enquiry-section {
    padding: 60px 0;
  }

  .enquiry-heading {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    color: #800000;
    /* Maroon */
    margin-bottom: 10px;
  }

  .section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    font-size: 16px;
  }

  .enquiry-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 40px;
  }

  .enquiry-img {
    flex: 1;
    min-width: 300px;
    animation: float 6s ease-in-out infinite;
  }

  .enquiry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-12px);
    }
  }

  .enquiry-form {
    flex: 1;
    min-width: 300px;
    background: #800000;
    /* Maroon */
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .enquiry-form h3 {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 26px;
    color: #fff;
  }

  .form-group {
    position: relative;
    margin-bottom: 20px;
  }

  .form-group i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #800000;
    background: #fff;
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
  }

  .form-control {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
  }

  .form-control:focus {
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    outline: none;
  }

  .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    color: #800000;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }

  .btn-submit:hover {
    background: #fff4f4;
    transform: scale(1.03);
  }

  @media (max-width: 768px) {
    .enquiry-wrapper {
      flex-direction: column;
    }

    .enquiry-img img {
      max-height: 350px;
    }
  }

  /* enquiry index end */

  /* footer start */
  .footer {
    background: linear-gradient(135deg, maroon, #800000);
    color: #fff;
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
  }

  .footer::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
  }

  .footer h5 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
  }

  .footer h5::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #ff6f61;
    position: absolute;
    bottom: -10px;
    left: 0;
  }

  .footer ul {
    list-style: none;
    padding-left: 0;
    z-index: 1;
    position: relative;
  }

  .footer ul li {
    margin-bottom: 10px;
  }

  .footer ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer ul li a:hover {
    color: #ff6f61;
    text-decoration: underline;
  }

  .footer .social-icons {
    z-index: 1;
    position: relative;
  }

  .footer .social-icons a {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: #fff;
    color: maroon;
    font-size: 20px;
    margin-right: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    text-align: center;
  }

  .footer .social-icons a:hover {
    background: #FF6F61;
    color: #800000;
    transform: translateY(-6px);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    font-size: 14px;
    z-index: 1;
    position: relative;
  }

  @media (max-width: 768px) {
    .footer {
      text-align: center;
    }

    .footer h5::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .footer .social-icons {
      justify-content: center;
    }
  }

  /* footer end */

  /* diabetes care page start */
  .breadcrumb-banner {
    position: relative;
    background-image: url('./images/background.jpg');
    background-size: cover;
    background-position: center;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }

  .breadcrumb-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
  }

  .breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }

  .breadcrumb-content h1 {
    font-size: 40px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideInDown 1s ease forwards;
  }

  .breadcrumb-content p {
    font-size: 16px;
    color: #f0f0f0;
  }

  .breadcrumb-content p a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }

  .breadcrumb-content p a:hover {
    text-decoration: none;
  }

  /* Animations */
  @keyframes fadeInUp {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideInDown {
    0% {
      transform: translateY(-30px);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .breadcrumb-banner {
      height: 250px;
    }

    .breadcrumb-content h1 {
      font-size: 28px;
    }

    .breadcrumb-content p {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .breadcrumb-banner {
      height: 220px;
    }

    .breadcrumb-content h1 {
      font-size: 22px;
    }
  }


  .section-ayurved {
    padding: 60px 0;
    background-color: #fff7f6;
  }

  .ayurved-image-box {
    background-color: #fef9f8;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: fadeInLeft 1.2s ease-in-out;
  }

  .ayurved-content h2 {
    font-weight: bold;
    color: #b21e25;
    animation: fadeInRight 1.2s ease-in-out;
  }

  .ayurved-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    animation: fadeInUp 1.5s ease-in-out;
  }

  .healing-treatment-section {
    background-color: #fdeeee;
    padding: 60px 0;
    text-align: center;
  }

  .healing-treatment-section h2 {
    font-weight: bold;
    color: #b21e25;
    animation: fadeInDown 1.2s ease-in-out;
  }

  .healing-treatment-section h2 span {
    border-bottom: 3px solid #b21e25;
  }

  /* ========== Animations ========== */
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-30px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(30px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes zoomIn {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }

    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .custom-img {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
  }

  .cancer-care-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
  }

  .cancer-care-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .cancer-care-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .cancer-care-card:hover img {
    transform: scale(1.05);
  }

  .cancer-care-card-body {
    padding: 25px 20px;
    text-align: center;
  }

  .cancer-care-card-body h5 {
    font-weight: 700;
    font-size: 22px;
    color: #b21e25;
    margin-bottom: 10px;
  }

  .cancer-care-card-body p {
    font-size: 15px;
    color: #555;
    margin: 0;
  }

  /* diabetes care page end */

  /* costomer care start */
  .customer-care {
    padding: 60px 20px;
    animation: fadeIn 1.2s ease-in-out;
  }

  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-title h2 {
    color: #a01e21;
    font-size: 36px;
    font-weight: 700;
  }

  .section-title p {
    color: #555;
    font-size: 16px;
  }

  .contact-form {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    animation: slideLeft 1.2s ease-in-out;
    transition: transform 0.3s ease;
  }

  .contact-form:hover {
    transform: translateY(-5px);
  }

  .contact-form h4 {
    margin-bottom: 25px;
    font-weight: 700;
    color: #a01e21;
  }

  .form-group {
    position: relative;
  }

  .form-group input,
  .form-group textarea {
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #a01e21;
    box-shadow: 0 0 0 3px rgba(160, 30, 33, 0.1);
  }

  .form-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #a01e21;
  }

  .form-control::placeholder {
    color: #999;
    font-size: 14px;
  }

  .btn-contact {
    background-color: #a01e21;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .btn-contact:hover {
    background-color: #7e191c;
    transform: scale(1.02);
  }

  .map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    animation: slideRight 1.2s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @media (max-width: 992px) {

    .contact-form,
    .map-container {
      animation: none;
    }
  }

  @media (max-width: 767px) {
    .contact-form {
      padding: 25px;
    }

    .section-title h2 {
      font-size: 28px;
    }

    .form-group input,
    .form-group textarea {
      padding-left: 38px;
    }
  }

  /* costomrer care end */

  /* certificate and awards start */
  .certification-wrapper {
    /* padding: 60px 20px; */
    padding: 20px 20px;
    background-color: #f9f9f9;
  }

  .certification-title {
    text-align: center;
    font-size: 36px;
    color: #a01e21;
    margin-bottom: 10px;
  }

  .certification-title span {
    color: #333;
  }

  .certification-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
  }

  .certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .certificate-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .certificate-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
  }

  .certificate-item:hover img {
    transform: scale(1.05);
  }

  .certificate-overlay {
    position: absolute;
    bottom: 0;
    background: rgba(160, 30, 33, 0.85);
    width: 100%;
    padding: 12px;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
  }

  /* Modal Styles */
  .certificate-modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
  }

  .certificate-modal .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: auto;
    object-fit: contain;
  }

  .certificate-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }

  /* Responsive: stack on smaller screens */
  @media (max-width: 992px) {
    .certificate-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .certificate-grid {
      grid-template-columns: 1fr;
    }
  }

  /* certificate and awards end  */

  /* navbar start */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: -11px;
    display: none;
    position: absolute;
  }

  /* Show on hover (desktop) */
  @media (min-width: 992px) {
    .dropdown-submenu:hover>.dropdown-menu {
      display: block;
    }
  }

  /* Show on mobile via JS toggle */
  .dropdown-submenu.show>.dropdown-menu {
    display: block;
    position: relative;
    left: 0;
  }

  /* navbar end */

  /* product page start */
  .nav-tabs .nav-link.active {
    background-color: #8e1214;
    color: #ffffff;
    font-weight: bold;
  }

  .thumb {
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .thumb:hover {
    transform: scale(1.1);
  }

  #zoom-container {
    position: relative;
    overflow: hidden;
  }

  #zoomLens {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(160, 30, 33, 0.6);
    background-color: rgba(255, 255, 255, 0.3);
    display: none;
    pointer-events: none;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: background-position 0.1s;
    z-index: 10;
    background-repeat: no-repeat;
  }

  /* Plus sign in the center */
  #zoomLens::after {
    content: "+";
    color: rgba(0, 0, 0, 0.7);
    font-size: 32px;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  }

  .thumb.active {
    border: 2px solid #a01e21;
    padding: 2px;
    border-radius: 4px;
  }

  .product-info-box {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-in-out;
    transition: transform 0.3s ease;
  }

  .product-info-box:hover {
    transform: translateY(-5px);
  }

  .product-info-box ul {
    list-style-type: disc;
    color: #333;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .product-title {
    font-size: 2rem;
    font-weight: 700;
  }

  .special-price {
    color: #a01e21;
    font-weight: 600;
  }

  .price-block {
    font-size: 1.25rem;
    font-weight: bold;
    color: #212121;
  }

  .price-block .old-price {
    text-decoration: line-through;
    color: #888;
    font-weight: normal;
    margin-left: 10px;
  }

  .discount {
    color: #a01e21;
    margin-left: 10px;
    font-weight: bold;
  }

  .benefits-list {
    margin-top: 20px;
    padding-left: 0;
  }

  .benefits-list li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
  }

  .benefits-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #a01e21;
  }

  .custom-outline-btn,
  .custom-fill-btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
  }

  .custom-outline-btn {
    border: 2px solid #a01e21;
    color: #a01e21;
  }

  .custom-outline-btn:hover {
    background-color: #a01e21;
    color: white;
  }

  .custom-fill-btn {
    background-color: #a01e21;
    border: none;
    color: white;
  }

  .custom-fill-btn:hover {
    background-color: #960b0e;
  }


  .related-products-section {
    padding: 60px 0;
    background: #f9f9f9;
  }

  .related-products-title h3 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
  }

  .related-products-title h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #a01e21;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .related-product-card {
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    padding: 20px 15px;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .related-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .related-product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
  }

  .related-product-card .product-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
  }

  .related-product-card .product-price {
    color: #a01e21;
    font-weight: bold;
    margin-top: 5px;
  }

  .product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
  }

  .product-price {
    color: #a01e21;
    font-weight: bold;
    font-size: 15px;
    margin-top: 5px;
  }

  .product-rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 5px;
  }

  /* product page end */

 