@import url(./swiper-bundle.min\ \(1\).css);

body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  box-sizing: border-box;
}

/* Navbar */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: whitesmoke;
  background-color: #006b4b;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a, .dropbtn {
  color: white;
  text-decoration: none;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.nav-links a:hover, .dropbtn:hover {
  /* background: #0369a1; */
  color: #33cc99;
  border-radius: 5px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #009970;
  min-width: 160px;
  top: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  display: block;
    color: #33cc99;

}

.dropdown:hover .dropdown-content {
  display: block;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  height: 65vh;
  background: linear-gradient(125deg, #006b4b, #049864);
  color: whitesmoke;
  padding: 0px 30px 30px 30px ;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
}

.hero-content {
  max-width: 800px;
  margin: auto;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content p {
  font-size: 1rem;
  /* margin-bottom: 30px; */
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 25px;
  gap: 5px;
}
.social-icons a {
  font-size: 1.1rem;
}

.hero-btn {
  background: rgb(224, 216, 207);
  padding: 12px 25px;
  color: #006b4b;
  font-size: 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.hero-btn:hover {
  color: whitesmoke;
  background-color: #006b4b;
  transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #006b4b;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .social-icons {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .blog-cards {
    flex-direction: column;
    align-items: center;
  }
}




.offers-section {
  background: #f0fff8;
  padding: 60px 20px;
  text-align: center;
}

.offers-section h2 {
  font-size: 2rem;
  color: #007e5a;
  margin-bottom: 40px;
  font-weight: 700;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

.offer-box {
  background: linear-gradient(135deg, #ffffff, #eafff5);
  border: 2px solid #1abc9c;
  padding: 20px 10px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-box:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.offer-box h3 {
  font-size: 1.5rem;
  color: #007e5a;
  margin-bottom: 10px;
}

.offer-box p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.offer-box button {
  background: #1abc9c;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.offer-box button:hover {
  background: #16a085;
}



.service-section {
  padding: 20px;
  background: linear-gradient(135deg, #e8f5e9, #ffffff);
  text-align: center;
}

.service-section h2{
  font-size: 2rem;
  /* font-family:'Times New Roman', Times, serif; */
}

.section-title {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 40px;
  font-weight: bold;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 100%;
  margin: auto;
}
.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  /* padding: 20px; */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  border: 1px solid darkgreen;
}

.service-card p{
  color: #333;
  font-size: 1rem;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* font-weight: 700; */

}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card img {
  width: 100%;
  /* height: 150px; */
  object-fit: contain;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.2rem;
  color: #2e7d32;
  margin-bottom: 10px;
}
.service-card p {
  padding: 0px 20px;
  font-size: 0.95rem;
  color: #555;
}
@media screen and (max-width: 600px) {
  .section-title {
    font-size: 1.5rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
}

/* popular============================================ */

.popular-medicines-section {
  padding: 60px 20px;
  background: #e8f5e9;
  text-align: center;
}

.popular-medicines-section .section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2f6400;
}

.medicine-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 128, 0, 0.1);
  text-align: center;
  width: 250px;
  border: 1px solid green;
}

.medicine-card img {
  width: 200px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 15px;
}

.medicine-card h3 {
  font-size: 1.2rem;
  color: #2f6400;
  margin: 10px 0 5px;
}

.medicine-card .category {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.medicine-card .price {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.whatsapp-order {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.whatsapp-order:hover {
  background-color: #128C7E;
}

.view-more-btn {
  margin-top: 30px;
}

.view-more-btn a {
  padding: 10px 20px;
  background: #2f6400;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .medicine-card {
    max-width: 90%;
  }

  .popular-medicines h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .medicine-card {
    padding: 12px;
  }

  .medicine-card h3 {
    font-size: 1rem;
  }

  .medicine-card .price {
    font-size: 0.95rem;
  }

  .swiper {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* @media (max-width:600px) {
  .medicine-card{
    width: 100px;
  }
} */

/* limited offer deal===================== */

  

  .limited-deal {
    background: linear-gradient(135deg, #e6f9ec, #cdeedc);
    padding: 40px;
    text-align: center;
  }
  .limited-deal h2 {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 10px;
  }
  .deal-subtext {
    font-size: 1rem;
    color: #444;
    margin-bottom: 25px;
  }
  .deal-banner {
    max-width: 800px;
    background: #fff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    gap: 20px;
  }
  .deal-banner img {
    width: 120px;
    border-radius: 10px;
  }
  .deal-content {
    flex: 1;
    /* text-align: left; */
  }
  .deal-content h3 {
    color: #2e7d32;
    margin: 0 0 10px;
  }
  .deal-content p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #444;
    margin: 0 0 15px;
  }
  .deal-button {
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
    
  }
  .deal-button:hover {
    background-color: #1ebd5b;
  }
  .countdown-timer {
    font-size: 1.1rem;
    color: #d32f2f;
    font-weight: bold;
    margin-top: 20px;
  }


/* trust======================================= */

.trust-section {
  background: #f0fff8;
  padding: 60px 20px;
  text-align: center;
}

.trust-section h2 {
  font-size: 2rem;
  color: #007e5a;
  font-weight: 700;
  margin-bottom: 40px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

.trust-card {
  background: linear-gradient(to bottom right, #ffffff, #eafff5);
  border: 2px solid #1abc9c;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.trust-card:hover {
  transform: scale(1.05);
}

.trust-card i {
  font-size: 2.5rem;
  color: #1abc9c;
  margin-bottom: 15px;
}

.trust-card h3 {
  color: #007e5a;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.trust-card p {
  color: #333;
  font-size: 0.95rem;
}

/* counter========================== */

.counter-section {
  padding: 60px 20px;
  background: #f3f7ff;
  text-align: center;
}
.counter-section .section-title {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.counter-box {
  border: 1px solid green;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.counter-box h3 {
  font-size: 2em;
  color: #0d9d4c;

}
.counter-box p {
  margin-top: 8px;
  /* color: #666; */
  color: darkgreen;
}




/* CTA============================================================ */




.cta-banner {
  background: linear-gradient(135deg, #38b000, #007e5a);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 0 20px rgba(56, 176, 0, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10.01%);
  background-size: 50px 50px;
  animation: animateBg 8s linear infinite;
  z-index: 0;
}

@keyframes animateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-family: 'Nunito', sans-serif;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f8f8f8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #2f6400;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #2f6400;
  color: #fff;
  transform: translateY(-3px);
}

.cta-btn i {
  font-size: 1.1rem;
}


/* health_tips[========================================================= */


.health-tip {
  padding: 60px 20px;
  background: linear-gradient(to right, #e8ffe8, #ffffff);
  text-align: center;
}

.health-tip h2 {
  font-size: 2rem;
  color: #2f6400;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

.tip-box {
  background: #ffffff;
  border: 2px solid #38b000;
  padding: 25px 30px;
  border-radius: 15px;
  display: inline-block;
  max-width: 600px;
  box-shadow: 0 5px 20px rgba(0, 128, 0, 0.1);
  animation: fadeIn 1.2s ease;
}

.tip-box p {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}








/* blog========================================================== */

.blog-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.blog-section h2 {
  color: #007e5a;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: linear-gradient(to top right, #f0fff8, #ffffff);
  border: 1px solid #1abc9c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  text-align: left;
}

.blog-card:hover {
  transform: scale(1.05);
}

.blog-card img {
  width: 100%;
  height: auto;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin: 15px;
  color: #007e5a;
}

.blog-card p {
  font-size: 0.95rem;
  margin: 0 15px 15px;
  color: #333;
}

.blog-card a {
  display: inline-block;
  margin: 0 15px 20px;
  color: #1abc9c;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card a:hover {
  color: #007e5a;
}

.view-all-blogs {
  margin-top: 30px;
}

.view-all-blogs a {
  background: #1abc9c;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.view-all-blogs a:hover {
  background: #16a085;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1ebea5;
  transform: scale(1.1);
}


.testimonial-section {
  background: #f0fff8;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-section h2 {
  color: #007e5a;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 10px;
}

.testimonial-card {
  flex: 0 0 90%;
  max-width: 90%;
  background: linear-gradient(to right, #ffffff, #eafff5);
  border: 1px solid #1abc9c;
  border-radius: 12px;
  padding: 30px 20px;
  scroll-snap-align: start;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 1rem;
  color: #007e5a;
  font-weight: 600;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.footer {
  background: #007e5a;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 400px;
}

.footer-social h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-icons a {
  /* color: white; */
  /* color: whitesmoke; */
   color: #c5ed85; 
  font-size: 1.5rem;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #dce9c8; /* lighter green on hover */
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-about p, 
  .footer-about h3,
  .footer-social h4 {
    text-align: center;
  }

  .social-icons a {
    margin-right: 15px;
  }
}




/* Footer Section */
/* .footer {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #f1f5f9;
  padding: 60px 20px 20px;
  font-size: 0.95rem;
} */

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
  max-width: 100%;
  margin: auto;
}

/* .footer h3, .footer h4 {
  color: #04bb75;
  margin-bottom: 15px;
} */

.footer p, .footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #334155;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #94a3b8;
}






.floating-tools {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.translate-btn {
  background-color: #4caf50;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}