  /*--------------------------------------------------------------
# Header Section
--------------------------------------------------------------*/
  span.boost {
    color: #d78657;
  }

  .logo-img {
  height: 50px;  
  width: auto;
}
  .navmenu ul li a {
    color: #3f625b;
    font-size: 95%;
    font-weight: bold;
    margin-right: 20px;
}

.icon-buttons a:hover svg {
  transform: scale(1.1);
  color: #d78657;
}
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #d78657;
  }
  .header .logo img {
    max-height: 50px;
    margin-right: 0px;
}

  /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Base Hero */
.hero {
  width: 100%;
  min-height: 90vh;
  padding: clamp(40px, 6vw, 80px) 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .welcome h2 {
    margin: 0;
    font-size: clamp(80px, 4vw, 335px);
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}


.hero .welcome p {
  font-size: clamp(14px, 2vw, 24px);
  margin-top: 20px;
  color: #3f625b;
}

.hero .btn-hero {
  display: inline-block;
  background-color: #3f625b;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  font-size: clamp(14px, 2.5vw, 18px);
  padding: 10px 28px;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
}

.hero .btn-hero:hover {
  background-color: #d78657;
  color: #fff;
}

/* Counter */
.counter-banner-block {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px 40px;
}

.number-counter {
  color: #d78657;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
}

.text-counter {
  font-size: clamp(12px, 2vw, 14px);
  color: #3f625b;
}

/* Image */
.hero-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* 📱 Mobile: compact hero */
@media (max-width: 576px) {
  .hero {
    min-height: auto; 
    padding: 30px 15px; 
    text-align: center;
  }

  .hero .welcome h2 {
    font-size: 32px; 
    line-height: 1.3;
  }

  .hero .welcome p {
    font-size: 14px;
    margin-top: 10px;
  }

  .hero .btn-hero {
    font-size: 14px;
    padding: 8px 20px;
    margin-top: 15px;
  }

  .counter-banner-block {
    margin-top: 15px;
    gap: 10px 20px;
    justify-content: center;
  }

  .number-counter {
    font-size: 22px;
  }

  .text-counter {
    font-size: 12px;
    text-align: center;
  }

  .hero-img {
    max-width: 80%;  
    margin-top: 20px;
  }
}

  /*--------------------------------------------------------------
# 3 Product Section
--------------------------------------------------------------*/
  .iconoir--home-hospital {
    display: inline-block;
    width: 40px;
    height: 40px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 0 1-.6.6H5.6a.6.6 0 0 1-.6-.6V13'/%3E%3Cpath d='M13.667 17h-3.334v-2.333H8v-3.334h2.333V9h3.334v2.333H16v3.334h-2.333z'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 36px;
    transition: 0.4s;
    border-radius: 5px;
  }

  .products-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
    margin-top: 2%;
  }

  .products-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3f625b;
    margin-bottom: 10px;
  }

  .products-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
  }

  .btn-3product {
    background-color: #3f625b;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    border: 0;
    border-radius: 5px;
  }

  .btn-3product:hover {
    background-color: #d78657;
    color: white;
    border: 0;
    border-radius: 5px;
  }

  a:hover {
    color: #d78657;
    text-decoration: none;
  }

  .products-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .product-card {
    width: 19%;
    height: 395px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    aspect-ratio: 3/4;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  
   .products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
  }

  @media (max-width: 768px) {
    .products-container {
      flex-direction: column;
      align-items: center;
    }

    .product-card {
      width: 90%;
      height: 300px;
    }
  }

  div#personal {
    margin-top: 87px;
    position: relative;
  }

  .product-card img {
    transition: transform 0.3s ease-in-out;
    width: 100%;
    display: block;
    border-radius: 8px;
  }

  .product-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  /********************** Mobile ***********************/
  @media (max-width: 768px) {
    .product-card img:hover {
      transform: none;
      box-shadow: none;
    }
  }

  @media (max-width: 768px) {
    .products-section h2 {
      font-size: 1.8rem;
    }

    .btn-3product {
      font-size: 14px;
      padding: 10px 20px;
    }
  }

  .product-card0 img {
    transition: transform 0.3s ease-in-out;
    width: 100%;
    display: block;
    border-radius: 8px;
  }

  .product-card0 img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

   /********************** Mobile ***********************/
  @media (max-width: 768px) {
    .products-section {
      padding: 40px 15px;
    }

    .product-card:first-child {
      margin-top: 0;
    }

    .btn-3product {
      margin-bottom: 10px;
    }

    .product-card#personal {
      margin-top: 0px;
    }
  }

  .product-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
  }

  .product-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

/*--------------------------------------------------------------
# Latest Product Section
--------------------------------------------------------------*/
  .latest-products-section {
    background-color: #3f625b;
    padding: 60px 20px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 71px;
  }

  .latest-products-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }

  .products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 57px;
  }

  .product-card0 {
    border-radius: 8px;
    width: 250px;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
  }

  .product-card0.visible {
    opacity: 1;
    transform: scale(1);
  }

  .product-card0 img {
    object-fit: cover;
    border-radius: 5px;
    width: 100%;
    height: 400px;
    transition: transform .3s;
    box-shadow: 7px 7px 50px #0000000d;
  }

  .product-card0 h3 {
    margin: 15px 0 10px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    text-align: start;
  }

    .product-card0 p {
    margin: 5px 0 10px;
    margin-top: 10px;
    font-size: 18px;
    text-align: start;
  }

  .discounted {
    text-decoration: line-through;
    margin-right: 5px;
  }

  .product-card0 a {
    color: #d78657;
    text-decoration: none;
    font-weight: bold;
    margin-right: 58%;
  }

  .show_btn {
    background-color: #d78657;
    border: none;
    padding: 12px 24px;
    color: white;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
  }

  .show_btn:hover {
    background-color: #ffffff;
    color :#d78657;
  }

  h2.main {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 20px;
  }
 
  .main2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }
  @media (max-width: 1200px) {
    /* For large screens and tablets */
    .products-container {
      gap: 10px;
    }
    
    .product-card0 {
      width: 200px;
    }
  }

  @media (max-width: 991px) {
    /* For tablets and below */
    .products-container {
      gap: 0px;
    }

    .product-card0 {
      width: 45%;
    }

    
    h2.main {
      font-size: 36px;
    }
  }

   @media (max-width: 480px) {
    h2.main {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 20px;
  }
  }

  @media (max-width: 576px) {
    .show_btn {
        padding: 8px 16px;
        font-size: 12px;
        margin-top: -15px;
    }
}
  @media (max-width: 480px) {
     h2.main {
    color: #fff;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 20px;
  }

    .latest-products-section {
      padding: 40px 15px;
    }
  }

  .product-card0 {
    width: 100%;
    height: auto;
  }

  .product-card0 img {
    height: 367px;
    width: 253px;
  }

  @media (max-width: 576px) {
    .product-card0 {
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .products-container {
        gap: 15px;
        padding: 50px;
    }
}
  /************************** ICON ************************/
  .product-card0 {
    border-radius: 8px;
    width: 250px;
    text-align: center;
  }

/*--------------------------------------------------------------
# Departments Section (Responsive)
--------------------------------------------------------------*/

@media (max-width: 1200px) {
  /* For large screens and tablets */
  .container {
    padding: 0 15px; 
  }

  .row {
    flex-wrap: wrap;
  }

  .nav-tabs {
    width: 100%; 
  }

  .nav-item {
    width: 100%; 
  }

  .nav-link {
    text-align: center;
    padding: 15px 0; 
  }

  .col-lg-8 {
    width: 100%; 
    margin-bottom: 20px; 
  }

  .col-lg-4 {
    width: 100%; 
    margin-bottom: 20px; 
  }

  .product-card0 img {
    height: 250px; 
  }
}

@media (max-width: 991px) {
  /* For tablets and below */
  .nav-tabs {
    width: 100%;
    margin-bottom: 30px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    text-align: center;
    padding: 15px 0;
  }

  .col-lg-8 {
    width: 100%; 
    margin-bottom: 30px;
  }

  .col-lg-4 {
    width: 100%; 
  }

  .show-more {
    margin-top: 20px;
    font-size: 1.2em; 
    padding: 12px 30px;
  }

  h2.main {
    font-size: 36px;
  }

  .product-card0 img {
    height: 300px; 
  }
}

 /********************** Mobile ***********************/
@media (max-width: 768px) {
  .latest-products-section {
    padding: 40px 15px; 
  }

  .products-container {
    gap: 15px; 
  }

  .product-card0 {
    width: 100%; 
    height: auto; 
  }

  .product-card0 img {
    height: 250px; 
    width: 100%; 
  }

  .show-more {
    padding: 8px 16px; 
    font-size: 14px; 
    margin-top: -3px; 
  }

  h2.main {
    font-size: 28px; 
  }

  .main2 {
    flex-direction: column; 
    text-align: center; 
    margin-bottom: 1px;
  }
}

 /********************** Mobile ***********************/
@media (max-width: 576px) {
  .product-card0 {
    width: 100%; 
  }

  .show-more {
    padding: 8px 16px;
    font-size: 12px; 
  }

  h2.main {
    font-size: 31px; 
  }

  .product-card0 img {
    height: 361px; 
  }
   .row {
    flex-wrap: wrap;
    gap: 18px;
  }
}

/*--------------------------------------------------------------
# FAQ Section - Responsive
--------------------------------------------------------------*/

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 5px;
  overflow: hidden;
  transition: background-color 0.3s, border-color 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 40px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  word-break: break-word;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-content p {
  margin: 10px 0 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  line-height: 1;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  max-height: 1000px; 
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--contrast-color);
}

 /********************** Responsive ***********************/
@media (max-width: 768px) {
  .faq .faq-container .faq-item {
    padding: 15px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 1rem;
    margin-right: 30px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    top: 15px;
    right: 15px;
    font-size: 1rem;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 0.9rem;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1468px;
  }
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 20px;
}

.testimonials .info h3 {
  font-weight: 700;
  font-size: 2.5rem; 
  text-align: start; 
  margin-bottom: 15px;
  color: #3f625b; 
}

.testimonials .info p {
  text-align: Start;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto 20px auto;
  max-width: 600px;
  color: #444;
}

/* Testimonial Item */
.testimonials .testimonial-item {
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
  min-height: 200px;
  position: relative;
  margin: 20px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonials .testimonial-item .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #f9f9f9;
  object-fit: cover;
  margin-right: 62px;
}

.testimonials .testimonial-item h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 8px 0 3px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 0.9rem;
  margin: 0;
  color: #777;
}

.testimonials .testimonial-item .stars {
  margin: 8px 0;
}

.testimonials .testimonial-item .stars i {
  color: #d78657;
  margin: 0 2px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #3f625b;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  font-size: 0.95rem;
  margin: 15px auto 0;
  line-height: 1.6;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d78657;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .testimonials .row {
    flex-direction: column;
    text-align: center;
  }

  .testimonials .info {
    margin-bottom: 30px;
  }

  .testimonial-item {
    margin: 15px auto;
    padding: 18px;
  }

  .testimonial-item .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-img {
    margin: 0 auto 12px auto;
  }
}

@media (max-width: 576px) {
  .testimonials .info h3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .testimonials .info p {
    font-size: 0.95rem;
    padding: 0 10px;
    text-align: center;
  }

  .testimonial-item {
    margin: 10px auto;
    padding: 15px;
  }

  .testimonial-item p {
    font-size: 0.9rem;
  }
}

  /*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
  .service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  }

  .service-details .service-box+.service-box {
    margin-top: 30px;
  }

  .service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .service-details .services-list {
    background-color: var(--surface-color);
  }

  .service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
  }

  .service-details .services-list a:first-child {
    margin-top: 0;
  }

  .service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color);
  }

  .service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
  }

  .service-details .services-list a.active i {
    color: var(--contrast-color);
  }

  .service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
  }

  .service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .service-details .download-catalog a:last-child {
    padding-bottom: 0;
  }

  .service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
  }

  .service-details .download-catalog a:hover {
    color: var(--accent-color);
  }

  .service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);    
    margin-top: 30px;
    padding: 30px 15px;
  }

  .service-details .help-box .help-icon {
    font-size: 48px;
  }

  .service-details .help-box h4,
  .service-details .help-box a {
    color: var(--contrast-color);
  }

  .service-details .services-img {
    margin-bottom: 20px;
  }       
  
  .service-details h3 {
    font-size: 26px;
    font-weight: 700;
  }

  .service-details p {
    font-size: 15px;
  }

  .service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }

  .service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
  }

  .service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
  }

  .services .service-item:hover .icon {
    background: #d78657;
  }

  .services .service-item:hover .icon i {
    color: white;
  }

  p.price {
    color: #d78657;
  }

  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form input[type=number],
  .contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }

  .contact .php-email-form input[type=text]:focus,
  .contact .php-email-form input[type=email]:focus,
  .contact .php-email-form input[type=number]:focus,
  .contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
  }

  .contact .php-email-form input[type=text]::placeholder,
  .contact .php-email-form input[type=email]::placeholder,
  .contact .php-email-form input[type=number]::placeholder,
  .contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }

/*--------------------------------------------------------------
# Hero About Image Section
--------------------------------------------------------------*/
.about-image {
    position: relative;
    width: 100%;
    height: 524px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}

.about_heading {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2em;
  font-family: Jost, sans-serif;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
/* Tablet */
@media (max-width: 1024px) {
  .about-image {
    height: 420px; 
  }
  .about_heading {
    font-size: 54px;
    padding: 0 20px; 
}
}
/* Large Mobile */
@media (max-width: 768px) {
  .about-image {
    height: 360px;
  }
  .about_heading {
    font-size: 43px;
    padding: 0 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-image {
    height: 300px;
    background-attachment: local;
}
  .about_heading {
    font-size: 43px;
    padding: 0 10px;
  }
}

/*--------------------------------------------------------------
# Products Section (About content)
--------------------------------------------------------------*/
.products-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  margin-top: 66px;
  margin-bottom: -71px;
}

.products-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3f625b;
    margin-bottom: 10px;
}

.products-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.products-section .show-more {
  display: inline-block;
  padding: 10px 22px;
  background-color: #3f625b;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.products-section .show-more:hover {
  background-color: #d78657;
}
/* Tablet */
@media (max-width: 1024px) {
  .products-section {
    padding: 50px 15px;
  }
  .products-section h2 {
    font-size: 2rem; 
  }
  .products-section p {
    font-size: 1rem;
  }
  .products-section .show-more {
    padding: 9px 20px;
    font-size: 0.95rem;
  }
}

/* Large Mobile */
@media (max-width: 768px) {
  .products-section {
    padding: 40px 15px;
    margin-top: 40px;
    margin-bottom: -40px;
  }
  .products-section h2 {
    font-size: 1.8rem;
  }
  .products-section p {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 10px;
  }
  .products-section .show-more {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .products-section {
    padding: 30px 10px;
  }
  .products-section h2 {
    font-size: 1.5rem;
  }
  .products-section p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .products-section .show-more {
    padding: 7px 16px;
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .about_heading {
    font-size: 54px;
  }

  .products-section h2 {
    font-size: 2.2rem;
  }

  .products-section p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-image {
    height: 380px;
  }

  .about_heading {
    font-size: 40px;
    padding: 0 15px;
  }

  .products-section {
    padding: 40px 15px;
    margin-top: 40px;
    margin-bottom: 0;
  }

  .products-section h2 {
    font-size: 1.8rem; 
  }

  .products-section p {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .about-image {
    height: 300px;
  }

  .about_heading {
    font-size: 32px;
  }

  .products-section h2 {
    font-size: 1.6rem;
  }

  .products-section p {
    font-size: 0.9rem;
  }

  .products-section .show-more {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

/****************************************************************/
.section-block {
    padding: 50px 0;
  }

  .section-block img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }

  .section-block h3 {
    font-weight: 700;
    font-size: 2rem;
    color: #3f625b;
    padding-top: 15px;
  }

  .section-block p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .icon-box {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .icon-box i {
    font-size: 24px;
    color: #d78657;
  }

  .icon-box h5 {
    margin: 0;
    font-weight: 600;
  }

  .learn-btn {
    color: #d78657;
    border: 1px solid #d78657;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
  }

  .learn-btn:hover {
    background-color: #d78657;
    color: white;
  }
  /*****************   Advantage *******************/
  .advantages-section {
  background-color: #f5f2ef;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3f625b;
    margin-bottom: 10px;
}

.section-paragraph{
    font-size: 17px;
    color: #555;
    margin-bottom: 50px;
}

.advantages-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}

.advantage-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: start;
  width: 100%;
}

.advantage-box:hover {
  transform: translateY(-5px);
}

.advantage-box img {
  width: 60px;
  margin-bottom: 20px;
}

.advantage-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f25c05;
  margin-bottom: 10px;
}
.advantage-box p {
  color: #656565;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5em;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-weight: 700;
}


/* 👩‍💻 For Desktop: 3 columns (already set) */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 📱 For Tablets: 2 columns */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 For Mobile: 1 column */
@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}
  .properties-section {
    text-align: center;
    padding: 92px 20px;
  }
  .view-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #143E88;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 30px;
  }
  .swiper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  .swiper-slide img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  /* Move pagination dots down */
  .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .show-more {
    margin-top: 10px;
    background-color: #3f625b;
    border: none;
    padding: 12px 24px;
    color: white;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 50px;
    /* margin-left: 58%; */
}
  .show-more:hover {
    background-color: #d78657;
    color: white;
  }
  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    color: #3f625b;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    color: #3f625b;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #3f625b !important;
}
/*--------------------------------------------------------------
# FAQ Section - Responsive
--------------------------------------------------------------*/

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 5px;
  overflow: hidden;
  transition: background-color 0.3s, border-color 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 40px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  word-break: break-word;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-content p {
  margin: 10px 0 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  line-height: 1;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  max-height: 1000px; 
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--contrast-color);
}

/* Media Queries for Responsive Tweaks */
@media (max-width: 768px) {
  .faq .faq-container .faq-item {
    padding: 15px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 1rem;
    margin-right: 30px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    top: 15px;
    right: 15px;
    font-size: 1rem;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 0.9rem;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1468px;
  }
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.8rem;
    font-weight: 700; 
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
}

/************************** Distributors Page ************************/
.iconoir--home-hospital {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Hero Section */
.distributors-image {
  position: relative;
  width: 100%;
  height: 524px;
  background-image: url('assets/img/Nutraceuticals.jpg');
  background-size: cover;
  background-position: center;
}
.distributors-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.distributors_heading {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  font-size: 72px;
  font-weight: 700;
  padding-top: 12%;
  font-family: Jost, sans-serif;
}

/* Tablet */
@media (max-width: 1024px) {
  .distributors-image {
    height: 420px; 
  }
  .distributors_heading {
    font-size: 54px;
    padding: 0 20px; 
  }
}

/* Large Mobile */
@media (max-width: 768px) {
  .distributors-image {
    height: 360px;
  }
  .distributors_heading {
    font-size: 40px;
    padding: 0 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .distributors-image {
    height: 300px;
  }
  .distributors_heading {
    font-size: 43px;
    padding: 133px 10px;
  }
}
  h1.form-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3f625b;
    margin-bottom: 10px;
    text-align: center;
}
/*--------------------------------------------------------------
# Franchise Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: white;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: #d78657;
}

.services .service-item:hover .icon i {
  color: white;
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}
section#stats {
    text-align: center;
}
.btn-secondary:hover {
    background-color: #d78657;
    color: white;
}
.btn-secondary {
  background-color: #3f625b;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
  border: 1px solid #3f625b;
  border-radius: 5px;
}

/*********************************** Footer **************************************/
.sitename {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 30px; 
  margin-right: 10px;
}

/* ======= Footer Base Style ======= */
.footer {
  background-color: #f4f9fd;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  color: #3f625b;
}

/* ======= Footer Headings and Text ======= */
.footer-logo,
.footer h5 {
  color: #3f625b;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  color: #3f625b;
  margin-bottom: 10px;
}

/* ======= Footer Links ======= */
.footer-links a {
  color: #3f625b;
  font-size: 15px;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d5804b;
}

/* ======= Social Icons ======= */
.social-icons a {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
  color: #3f625b;
  border: 1px solid #3f625b;
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #d5804b;
  color: #fff;
  border-color: #d5804b;
}

/* ======= Divider Line ======= */
.footer-divider {
  border-top: 1px solid #ccc;
  margin-top: 30px;
}
@media (min-width: 992px) {
    .text-lg-end {
        text-align: right !important;
    }
}

/****************************** Contact *********************************/
/* Hero Section */
.contact-image {
  position: relative;
  width: 100%;
  height: 524px;
  background-size: cover;
  background-position: bottom;
}
.contact-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.contact_heading {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  font-size: 72px;
  font-weight: 700;
  padding-top: 12%;
  font-family: Jost, sans-serif;
}

/* Tablet */
@media (max-width: 1024px) {
  .contact-image {
    height: 420px; 
  }
  .contact_heading {
    font-size: 54px;
    padding: 0 20px; 
  }
}

/* Large Mobile */
@media (max-width: 768px) {
  .contact-image {
    height: 360px;
  }
  .contact_heading {
    font-size: 40px;
    padding: 0 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-image {
    height: 300px;
  }
  .contact_heading {
    font-size: 43px;
    padding: 133px 10px;
  }
}

/* ============================
   CTA SECTION
============================ */
.cta {
  background: #3f625b;
  color: #fff;
  padding: 60px 8%;
  text-align: center;
  border-radius: 8px;
}

.cta h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(22px, 5vw, 36px);
  line-height: 1.3;
}

.cta p {
  color: #fff;
  margin-bottom: 30px;
  font-size: clamp(14px, 3vw, 18px);
}

/* ============================
   RESPONSIVE BREAKPOINTS
============================ */

/* Tablets */
@media (max-width: 1024px) {
  .categories {
    padding: 50px 6%;
  }
}

/* Large Mobiles */
@media (max-width: 768px) {
  .categories {
    padding: 40px 5%;
  }

  .categories .card img {
    height: 256px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .categories {
    padding: 30px 5%;
  }

  .categories h2 {
    font-size: 22px;
  }

  .categories .card img {
    height: 261px;
  }

  .cta {
    padding: 40px 6%;
  }
}
button.btn.btn-primary {
    background-color: #d78657;
    padding: 14px 24px;
    color: #ffffff;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s;
    font-size: 16px;
    border: 1px solid #d78657;
}
/*************************************
Madicine 1,2,3,4,5
*************************************/
  .img-medicine {
    width: 82%;
    height: 721px;
}

@media (max-width: 576px) {
  .img-medicine {
   height: 230px;
  width: 395px;
  }
}


a.explore-btn {
  background-color: #d78657;
  padding: 14px 24px;
  color: #ffffff;
  border-radius: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.explore-btn:hover {
  background-color: #fff;
  color: #d78657;
}

/******************** popular Brands Section ********************/
.popular-brands-section {
  text-align: left;
  padding: 40px 20px;
  background-color: #f5f5f5;
}

.popular-brands-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 45px;
  color: #3f625b;
  text-align: center;
}

.brands-container {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.brand-item {
  width: 160px;
  height: 160px;
  text-align: center;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.brand-item:hover {
  transform: translateY(-5px);
}

.brand-item img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}

.brand-item p {
  font-size: 16px;
  font-weight: 500;
  color: #3f625b;
  margin-top: 10px;
}
.brand-item p:hover {
  color: #d78657;
}

/* -------- Responsive -------- */

/* Tablets */
@media (max-width: 992px) {
  .brand-item {
    width: 140px;
    height: 140px;
  }
  .brand-item img {
    max-width: 90px;
    max-height: 90px;
  }
  .popular-brands-section h2 {
  font-size: 31px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .brands-container {
    gap: 20px;
  }
  .popular-brands-section h2 {
  font-size: 31px;
  }
  .brand-item {
    width: 120px;
    height: 120px;
  }
  .brand-item img {
    max-width: 80px;
    max-height: 80px;
  }
  .brand-item p {
    font-size: 14px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .brands-container {
    justify-content: center;
    gap: 16px;
  }
  .popular-brands-section h2 {
  font-size: 31px;
  }
  .brand-item {
    width: 100px;
    height: 100px;
    padding: 8px;
  }
  .brand-item img {
    max-width: 70px;
    max-height: 70px;
  }
  .brand-item p {
    font-size: 12px;
  }
}
/*--------------------------------------------------------------
# Hero Blog Image Section
--------------------------------------------------------------*/
.blog-image {
    position: relative;
    width: 100%;
    height: 524px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
}

.blog-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.4);  Overlay */
  z-index: 1;
}

.blog_heading {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2em;
  font-family: Jost, sans-serif;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}


.content-wrapper {
    width: 76%;
    margin: 40px auto;
    font-size: 17px;
    color: #222;
    line-height: 1.8;
}

.upgraded-box {
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 14px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6e6e6;
}

.blog_content {
    font-weight: 700;
    font-size: 26px;
    color: #3f625b;
    padding: 15px 0 18px;
}

.blog_img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog_img {
    padding-bottom: 40px;
}

.blog_short {
    font-size: 19px;
    font-weight: 600;
    color: #d78657;
}

.content-wrapper blockquote {
    background: #f3f8f3;
    border-left: 4px solid #2e7d32;
    padding: 12px 18px;
    margin: 20px 0;
    font-style: italic;
}

/* ---------------- RESPONSIVE RULES ---------------- */

/* Medium Devices - Tablets */
@media screen and (max-width: 1024px) {
    .content-wrapper {
        width: 90%;
        font-size: 16px;
    }
    .blog_content {
        font-size: 24px;
    }
    .upgraded-box {
        padding: 35px 40px;
    }
      .blog-image {
    height: 420px; 
  }
  .blog_heading {
    font-size: 54px;
    padding: 0 20px; 
}
}

/* Small Devices - Mobile */
@media screen and (max-width: 768px) {
    .content-wrapper {
        width: 95%;
        margin: 25px auto;
        font-size: 15px;
    }

    .blog_content {
        font-size: 22px;
        line-height: 1.4;
    }

    .upgraded-box {
        padding: 25px 20px;
    }

    .blog_short {
        font-size: 17px;
    }

    blockquote {
        padding: 10px 15px;
    }
    .blog-image {
    height: 360px;
  }
  .blog_heading {
    font-size: 40px;
    padding: 0 15px;
  }
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
    .content-wrapper {
        width: 100%;
        font-size: 14.5px;
    }

    .blog_content {
        font-size: 20px;
    }

    .upgraded-box {
        padding: 18px 15px;
    }

    ul li {
        margin-bottom: 6px;
    }
    .blog-image {
    height: 300px;
    background-attachment: local;
    }
  .blog_heading {
    font-size: 43px;
    padding: 0 10px;
  }
    .blog_img img {
    width: 224%;
    height: auto;
    justify-content: center;
  } 
}

