@media(max-width:767px){.elementor-23137 .elementor-element.elementor-element-a9fb4ba{margin-top:30px;margin-bottom:0px;}.elementor-23137 .elementor-element.elementor-element-f29c7ae{margin-top:-30px;margin-bottom:0px;}.elementor-23137 .elementor-element.elementor-element-e7c8a68{margin-top:-40px;margin-bottom:0px;}.elementor-23137 .elementor-element.elementor-element-ce8b3aa{margin-top:-20px;margin-bottom:0px;}.elementor-23137 .elementor-element.elementor-element-39173b4{margin-top:-20px;margin-bottom:0px;}}/* Start custom CSS for html, class: .elementor-element-5c01935 *//* === Top Image Banner Section (Desktop) === */
.hero-banner, .banner-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #e8e6e1;
  display: block;
}

.banner-img, .banner-image {
  width: 100%;
  display: block;
  height: auto;
  /* Desktop par height restrict kar sakte hain agar image bahut lambi ho */
  max-height: 80vh; 
  object-fit: cover; 
}

/* === Feature Section (Desktop) === */
.feature-section {
  background-color: #f7f7f7;
  padding: 40px 20px;
}

.feature-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.feature-box {
  flex: 1 1 30%; /* 3 items side-by-side */
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 30px;
  color: #019a9a;
  flex-shrink: 0;
}

.feature-content h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #222;
  line-height: 1.2;
}

.feature-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* ✅ Mobile Specific Changes (Max width 768px) */
@media screen and (max-width: 768px) {
  
  /* --- Banner Adjustment --- */
  /* Ab kyuki aap mobile ki alag image use kar rahe hain, 
     use hum 'auto' height denge taki wo puri dikhe aur kate nahi */
  .hero-banner, .banner-section {
    height: auto;
    min-height: auto; 
  }

  .banner-img, .banner-image {
    width: 100%;
    height: auto; /* Image ke original ratio ke hisab se height legi */
    object-fit: contain; 
    min-height: 0; /* Forced height hata di taaki image stretch na ho */
  }

  /* --- Feature Section Adjustment (Only 2 Cards) --- */
  .feature-section {
    padding: 15px 10px; /* Thodi padding kam ki */
  }

  .feature-grid {
    display: flex;
    flex-direction: row; /* Ek line me rakhne ke liye */
    flex-wrap: nowrap; 
    gap: 10px; /* Cards ke beech gap */
  }

  /* 🔥 Yahan Magic Hai: Dusra (Middle) Card Hide kar diya */
  .feature-box:nth-child(2) {
    display: none;
  }

  .feature-box {
    flex: 1; /* Baki dono cards 50-50% jagah lenge */
    flex-direction: column; /* Icon upar, text neeche */
    align-items: center; /* Center alignment */
    text-align: center;
    padding: 15px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Shadow thodi light ki */
  }

  .feature-icon {
    font-size: 26px; /* Icon size */
    margin-bottom: 8px;
  }

  /* Text ko thoda bada kiya kyunki ab space jyada hai (sirf 2 card hain) */
  .feature-content h4 {
    font-size: 13px !important; 
    margin-bottom: 4px;
    font-weight: 700;
  }

  .feature-content p {
    font-size: 11px !important; 
    line-height: 1.3;
    display: block;
    color: #666;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3e0606d */.testimonial-container {
    background-color: #ffffff;
    border: 2px solid #dcdcdc;
    border-radius: 12px;
    padding: 30px 20px;
    margin: 30px auto;
    max-width: 1100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .testimonial-heading {
    text-align: center;
    color: #45b192;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .testimonial-box {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background-color: #fdfdfd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
  }

  .testimonial-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    background-color: #f9fdfc;
  }

  .testimonial-box h3 {
    color: #0c7493;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .stars {
    font-size: 22px;
    color: #f4b400;
    margin-bottom: 8px;
  }

  .stars span {
    color: #ccc;
  }

  .testimonial-box p {
    font-size: 14px;
    color: #444;
  }

  @media (max-width: 600px) {
    .testimonial-container {
      padding: 20px 10px;
    }

    .testimonial-heading {
      font-size: 20px;
    }

    .stars {
      font-size: 20px;
    }
  }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f6c9116 */.trusted-doctors-section {
  padding: 40px 20px;
  background: #f9fdfc;
  border-radius: 10px;
  text-align: center;
}

.section-heading {
  font-size: 24px;
  color: #222;
  border-bottom: 2px solid #45b192;
  display: inline-block;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 680px;
  margin: 0 auto 30px;
}

.doctors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.doctor-card {
  background: #fff;
  border-left: 4px solid #45b192;
  padding: 16px;
  width: 300px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.doctor-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.doctor-photo {
  width: 75px;
  height: 75px;
  border-radius: 50%;
      border-radius: 40px !important;
  object-fit: cover;
  border: 2px solid #45b192;
}

.doctor-info {
  text-align: left;
}

.doctor-name {
  font-size: 16px;
  color: #222;
  margin: 4px 0;
  font-weight: 600;
}

.doctor-role {
  font-size: 13px;
  color: #555;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .doctor-card {
    width: 90%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e89da48 *//* =========================================================
   HR PHARMACY USA | Modern Responsive Card + Hero + Coupon UI
   ========================================================= */

/* ---------- Layout Containers ---------- */
.za-container {max-width:1200px;margin:auto;padding:0 1.5rem;}
.za-section {padding:3rem 1.5rem;position:relative;overflow:hidden;}
.za-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:2rem;
}

/* ---------- Typography ---------- */
.za-section h2 {
  color:#45b192;
  font-weight:600;
  margin-bottom:1rem;
  position:relative;
  font-size:1.45rem;
}
.za-section h2::after {
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:#52bea2;
  border-radius:4px;
  margin-top:.3rem;
}
.za-section p {
  font-size:.96rem;
  opacity:.9;
  line-height:1.7;
  margin-bottom:1rem;
}
.za-section strong {color:#45b192;}

/* =========================================================
   HERO SECTION  –  White Background, Minimal, Unique Design
   ========================================================= */
.za-hero {
  background:#ffffff;
  color:#45b192;
  text-align:center;
  padding:6rem 1.5rem 4rem;
  position:relative;
  overflow:hidden;
  border-bottom:5px solid rgba(69,177,146,0.1);
}

/* soft accent shapes */
.za-hero::before,
.za-hero::after {
  content:"";
  position:absolute;
  border-radius:50%;
  filter:blur(45px);
  opacity:0.15;
}
.za-hero::before {
  background:#45b192;
  width:260px;
  height:260px;
  top:-110px;
  left:-110px;
}
.za-hero::after {
  background:#52bea2;
  width:210px;
  height:210px;
  bottom:-90px;
  right:-90px;
}

/* content body – no card wrapper */
.za-hero-card {
  position:relative;
  max-width:900px;
  margin:0 auto;
  padding:0;
  background:none;
  box-shadow:none;
  border:none;
}

/* strong, crisp heading */
.za-hero h2 {
  color:#45b192;
  font-size:2.3rem;
  font-weight:700;
  letter-spacing:0.4px;
  margin-bottom:1.2rem;
}
.za-hero h2::after {
  content:"";
  display:block;
  width:70px;
  height:3px;
  background:#45b192;
  border-radius:2px;
  margin:0.6rem auto 0;
}

/* descriptive text */
.za-hero p {
  color:#333;
  font-size:1.02rem;
  max-width:800px;
  margin:0.6rem auto;
  line-height:1.8;
  opacity:0.92;
}

/* subtle animated light shift */
.za-hero:hover::before,
.za-hero:hover::after {
  opacity:0.25;
  transform:scale(1.05);
  transition:0.6s ease;
}

/* =========================================================
   CARD ELEMENTS
   ========================================================= */
.za-card {
  background:#fff;
  border-radius:14px;
  padding:2rem 1.8rem;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  border-top:6px solid #45b192;
  transition:all .4s ease, transform .4s ease;
  position:relative;
}
.za-card::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(145deg,rgba(69,177,146,0.06),rgba(255,255,255,0));
  opacity:0;
  transition:.4s ease;
  border-radius:inherit;
}
.za-card:hover {
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}
.za-card:hover::before {opacity:1;}
.za-card h2 {font-size:1.25rem;}
.za-card h2::after {display:none;}
.za-card p {font-size:.93rem;}

/* =========================================================
   ONE‑ROW COUPON BANNER
   ========================================================= */
.za-offer {
  background:#f4fbfb;
  padding:2rem 1.5rem;
  text-align:center;
}
.za-offer-box {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:.8rem;
  flex-wrap:wrap;
  background:#ffffff;
  border:1.5px dashed #45b192;
  border-radius:40px;
  padding:0.9rem 1.5rem;
  box-shadow:0 3px 10px rgba(0,0,0,0.06);
  max-width:750px;
  width:100%;
  margin:0 auto;
  transition:0.3s ease;
}
.za-offer-box:hover {
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,0.1);
}
.za-offer h2 {
  font-size:1.05rem;
  color:#45b192;
  margin:0;
  font-weight:600;
}
.za-code {
  background:#45b192;
  color:#fff;
  padding:0.25rem 0.9rem;
  border-radius:20px;
  font-weight:700;
  font-size:0.95rem;
  letter-spacing:0.4px;
  box-shadow:0 1px 4px rgba(69,177,146,0.3);
}
.za-offer-box p {
  font-size:0.9rem;
  opacity:0.9;
  color:#333;
  margin:0;
}
.za-offer-box:hover .za-code {
  background:#52bea2;
  transform:scale(1.05);
}

/* =========================================================
   ASSURANCE & NOTE
   ========================================================= */
.za-assurance {background:#f7fcfd;}
.za-note {
  background:#e2f8fb;
  border-left:7px solid #45b192;
  box-shadow:0 5px 14px rgba(0,0,0,.05);
  transition:.3s ease;
}
.za-note:hover {
  transform:translateY(-4px);
  box-shadow:0 9px 20px rgba(0,0,0,.08);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.za-btn {
  background:#45b192;
  color:#fff;
  border:none;
  border-radius:8px;
  padding:.9rem 2.4rem;
  font-weight:600;
  font-size:1rem;
  letter-spacing:.3px;
  cursor:pointer;
  transition:.35s ease;
  box-shadow:0 4px 15px rgba(0,0,0,.15);
}
.za-btn:hover {
  background:#52bea2;
  transform:translateY(-3px);
  box-shadow:0 8px 25px rgba(0,0,0,.2);
}

/* =========================================================
   FOOTER
   ========================================================= */
.za-footer {
  background:#45b192;
  color:#fff;
  text-align:center;
  padding:2rem 1rem;
  font-size:.9rem;
  letter-spacing:.4px;
  position:relative;
  overflow:hidden;
}
.za-footer::before {
  content:"";
  position:absolute;
  width:120%;
  height:120%;
  top:-20%;
  left:-10%;
  background:radial-gradient(circle at center,rgba(255,255,255,.07) 0%,transparent 70%);
  animation:pulse 8s infinite alternate;
}
.za-footer p {margin:0;z-index:2;position:relative;}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from {opacity:0;transform:translateY(25px);}
  to {opacity:1;transform:translateY(0);}
}
@keyframes floaty {
  0%,100% {transform:translateY(0);}
  50% {transform:translateY(-6px);}
}
@keyframes pulse {
  0% {transform:scale(1);}
  100% {transform:scale(1.15);}
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */
@media (max-width: 768px) {

  /* 1. Global Container & Spacing (Kam Space) */
  .za-container {
    padding: 0 1rem;
  }
  .za-section {
    padding: 1.5rem 1rem; /* Top/Bottom padding 3rem se kam karke 1.5rem ki */
  }
  
  /* 2. Hero Section Compact */
  .za-hero {
    padding: 2.5rem 1rem 1.5rem; /* Hero ki height kam ki */
    border-bottom-width: 3px;
  }
  /* Decoration bubbles ko chupana taki clean dikhe */
  .za-hero::before, .za-hero::after {
    opacity: 0.05; /* Bahut light kar diya */
    transform: scale(0.8);
  }
  
  .za-hero-card {
    padding: 0;
  }
  .za-hero h2 {
    font-size: 1.6rem; /* Font thoda chhota */
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  .za-hero h2::after {
    margin: 0.4rem auto 0;
  }
  .za-hero p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }

  /* 3. Grid & Cards (Sirf 3 Card dikhenge) */
  .za-grid {
    grid-template-columns: 1fr; /* Ek line me ek card */
    gap: 1rem; /* Cards ke beech gap kam kiya */
  }
  
  .za-card {
    padding: 1.2rem; /* Card ke andar ki jagah kam ki */
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05); /* Shadow light ki */
    margin-bottom: 0;
  }
  
  /* 🔥 TRICK: Sirf pehle 3 cards dikhana, baki hide karna */
  .za-card:nth-child(n+4) {
    display: none;
  }

  /* 4. Typgraphy Adjustments */
  .za-section h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .za-section p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  /* 5. Coupon Offer Section (Compact Box) */
  .za-offer {
    padding: 1.5rem 1rem;
    background: #f0fdf9; /* Thoda light color */
  }
  .za-offer-box {
    flex-direction: column; /* Mobile me upar-niche */
    padding: 1rem;
    gap: 0.5rem;
    border-radius: 15px;
    border-width: 1px;
  }
  .za-offer h2 {
    font-size: 1rem;
  }
  .za-code {
    width: 100%; /* Button jaisa full width */
    text-align: center;
    padding: 0.4rem;
    font-size: 1rem;
  }

  /* 6. Button Full Width */
  .za-btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  /* 7. HIDING EXTRA SECTIONS (Mobile View Limiter) 
     Jo sections aap nahi dikhana chahte unhe yahan add karein 
  */
  .za-assurance, 
  .za-note, 
  .za-footer {
    display: none !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ebb06fb *//* --- Base Styles --- */
.testimonial-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  border-radius: 12px;
  text-align: center;
  overflow: hidden; /* Extra safety */
}

.testimonial-section h2 {
  font-size: 28px;
  color: #0c7493;
  margin-bottom: 10px;
}

.testimonial-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* --- Grid Layout (Desktop & Tablet) --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop: 4 cards */
  gap: 20px;
  padding-bottom: 10px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(12, 116, 147, 0.08);
  transition: transform 0.3s ease;
  border-top: 4px solid #45b192;
  height: 100%; /* Ensure equal height */
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #0c7493;
  object-fit: cover;
  background-color: #fff;
  margin-bottom: 12px;
  padding: 3px;
}

.testimonial-card h3 {
  font-size: 16px;
  color: #0c7493;
  margin: 8px 0 4px;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  margin-top: 12px;
  line-height: 1.6;
}

.stars {
  color: #fbc02d;
  font-size: 16px;
  margin-top: 6px;
}

/* --- Tablet View (2 Columns) --- */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile View (Slider Logic) --- */
@media (max-width: 576px) {
  .testimonial-section {
    padding: 30px 15px;
  }

  .testimonial-grid {
    display: flex; /* Converts grid to row */
    overflow-x: auto; /* Enables horizontal scrolling */
    scroll-snap-type: x mandatory; /* Makes cards stick to center */
    gap: 0; 
    scroll-behavior: smooth; /* Smooth auto-scrolling */
    
    /* Hide Scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  /* Hide scrollbar for Chrome/Safari */
  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    min-width: 100%; /* Shows 1 card fully */
    width: 100%;
    margin: 0;
    scroll-snap-align: center; /* Snaps to center */
    transform: none !important; /* Disable hover lift on mobile */
    border-left: 1px solid transparent; /* Fix for some rendering glitches */
    border-right: 1px solid transparent;
  }
  
  .testimonial-section h2 {
    font-size: 22px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4567a46 */.safety-slider-section {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.slider-title h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 10px;
  border-bottom: 2px solid #45b192;
  display: inline-block;
}

.slider-title p {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 25px;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 100%;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: slideLoop 25s linear infinite;
}

.slider-track img {
  height: 120px;
  width: 200px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  /*border: 2px solid #45b192;*/
  background: #fff;
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.02);
}

@keyframes slideLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive for smaller devices */
@media (max-width: 768px) {
  .slider-track img {
    width: 160px;
    height: 100px;
  }

  .slider-title h2 {
    font-size: 20px;
  }

  .slider-title p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .slider-track {
    animation: slideLoopMobile 5s linear infinite;
  }

  @keyframes slideLoopMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-60%); }
  }
}/* End custom CSS */