/* Apply Poppins font globally */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


/* Header CSS Start */
/* Desktop Nav */
.desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
}

.desktop-nav .logo img {
  max-height: 80px;
}

.desktop-nav .links {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.desktop-nav .links li {
  list-style: none;
}

.desktop-nav .links li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: color 0.3s ease;
}

.desktop-nav .links li a:hover {
  color: #23B574;
  text-decoration: underline;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #fff;
  padding: 10px 20px;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav .logo img {
  max-height: 60px;
}

.hamburger {
  font-size: 26px;
  cursor: pointer;
}

/* Mobile Menu (Drawer) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  z-index: 1000;
  transform: translateX(100%); /* hidden outside screen */
  transition: transform 0.3s ease-in-out;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.mobile-menu a:hover {
  color: #23B574;
}

/* When Active */
.mobile-menu.show {
  transform: translateX(0); /* slide in */
}

  .close-btn {
    font-size: 28px;
    cursor: pointer;
    align-self: flex-end;
  }

/* Responsive Rules */
@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
}
/* Header CSS End */


/* Footer CSS Start  */
/* Footer Base */
footer {
  background: #ebebeb;
  color: #fff;
  padding: 20px 50px;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-wrap: wrap; /* responsive ke liye wrap allow kiya */
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-links li a {
  color: black;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color : #23B574;
}

/* Right side social icons */
.footer-social {
  position: absolute;
  right: 50px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: black;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #23B574;
}

/* 🔹 Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* items ko column me kar diya */
    gap: 15px;
  }

  .footer-social {
    position: static; /* absolute hata diya */
    justify-content: center;
    margin-top: 10px;
  }

  .footer-links {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column; /* chhote mobile pe links ek ke niche ek */
    gap: 10px;
  }

  .footer-links li a {
    font-size: 14px;
  }

  .footer-social a {
    font-size: 16px;
  }
}

/* Footer CSS End  */


/* Home page CSS Start  */
/* main section CSS Start  */

.main {
    background-color: #ebebeb;
    padding: 40px 0;
}

.main-row {
    margin-top: 5% !important;
}

.pure {
    font-family: "Sahitya", serif !important;
    color: #23B574;
    font-size: 60px;   /* Default smaller */
    font-weight: bold;
}

.pure-bottom {
    font-family: "Sahitya", serif !important;
    color: black;
    font-size: 30px;   /* Default smaller */
    font-weight: bold;
}

.main-btn1 {
    padding: 10px 20px;
    border: 1px solid #23B574;
    border-radius: 10px;
    margin-right: 10px;
    font-weight: bold;
    color: black;
    font-size: 14px;
    margin-bottom: 5px;
    background: white;
}

.main-btn1:hover {
    background-color: #23B574 !important;
    color: white;
}

.main-img {
    margin-top: 40px;
}

.main-img img {
    max-width: 100%;
    height: auto;
}

.milk-img {
    margin-top: -155px; /* smaller for mobile */
}

/* 🔹 Responsive Breakpoints */
@media (min-width: 768px) {
    .pure {
        font-size: 80px;
    }
    .pure-bottom {
        font-size: 40px;
    }
    .milk-img {
        margin-top: -350px;
    }
}

@media (min-width: 1200px) {
    .pure {
        font-size: 90px;
    }
    .pure-bottom {
        font-size: 50px;
    }
    .milk-img {
        margin-top: -355px;
    }
    .main-btn1{
          position: absolute;
    z-index: 1;
    }
}


/* main secetion end  */

/* product section css start  */

.product{
    background-color: #ebebeb;
}
.common-head{
    text-align: center;
    color: #23B574;
    text-decoration: underline;
}
.common-main-head{
    text-align: center;
    font-weight: bold;
}

.all-section{
    margin: 0;
}

.product-card {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
}

.card-body {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.card-body p {
  margin: 10px 0;
  font-size: 14px;
  color: #555;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.order-btn {
  background-color:#23B574;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s;
  text-decoration: none;
}

.order-btn:hover {
  background: #1a8d58;
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-card {
    grid-template-columns: 1fr;
  }
}

/* product section css end  */

/* trust section start  */
.features-section {
  background-color: #ebebeb;
  padding: 60px 20px;
  text-align: center;
  /* font-family: "Poppins", sans-serif; */
}

.features-section .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: transparent;
  padding: 20px;
}

.feature-card .icon img {
  width: 50%;
  /* height: 60px; */
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .features-section .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-section .container {
    grid-template-columns: 1fr;
  }
}

/* trust section end  */

/* our store css start  */


/* our store css end  */



/* Subscribe css section start  */
.subscribe {
  background: url("../img/both-wave2.png") no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
}

.subscribe .container {
  max-width: 1200px;
  margin: 0 auto;
}

.subscribe .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.subscribe .col {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.subscribe .left-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.subscribe .left-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 30px;
}

.subscribe-now-btn {
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-now-btn:hover {
  background-color: #00a651;
  color: #fff;
}

.subscribe .right-img img {
  max-width: 100%;
  height: auto;
}

/* 🔹 Tablet (991px se neeche) */
@media (max-width: 991px) {
  .subscribe {
    padding: 70px 20px;
    text-align: center;
  }

  .subscribe .row {
    flex-direction: column;
  }

  .subscribe .left-content h2 {
    font-size: 28px;
  }

  .subscribe .left-content p {
    font-size: 15px;
  }

  .subscribe .right-img {
    margin-top: 30px;
  }
}

/* 🔹 Mobile (576px se neeche) */
@media (max-width: 576px) {
  .subscribe {
    padding: 50px 15px;
  }

  .subscribe .container{
    margin-top: 150px;
  }

  .subscribe .left-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .subscribe .left-content p {
    font-size: 14px;
  }

  .subscribe-now-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }

  .subscribe .right-img img {
    max-width: 80%;
  }
}


/* Subscribe css section end  */

/* our store css start  */
.nearby-stores {
  /* background: #f5f5f5; */
  padding: 60px 20px;
}

.timeline-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  position: relative;

}

.timeline-left, 
.timeline-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 40px;
}

.timeline-item {
  text-align: center;
  position: relative;
  padding: 10px 20px;
}

.timeline-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Center Line + Image */
.timeline-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-center .line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #000;
  z-index: -1;
}

.timeline-center img {
  max-width: 270px;
  margin: auto;
  z-index: 1;
}

/* Dots on line */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px; /* left column */
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #00c853;
  border: 3px solid #000;
  border-radius: 50%;
}

.timeline-right .timeline-item::before {
  left: -25px; /* right column dots */
  right: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
  }

  .timeline-left, .timeline-right {
    flex: unset;
    gap: 20px;
  }

  .timeline-item::before {
    display: none;
  }

  .timeline-center .line {
    display: none;
  }
}

/* our store css end  */

/* reviews css start  */

.review-section {
    /* background: url("../img/reviews-bg.png") no-repeat center center; */
    background-color: white;
    background-size: cover; 
    width: 100%;
    height: 100%;
    /* justify-content: center;  */
}

.testimonial-section {
  width: 100%;
  padding: 80px 5%;
  /* background: #fff; */
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
}

.testimonial-item {
  flex: 0 0 100%; /* 👈 ek slide full 100% lega */
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0px 100px;
  box-sizing: border-box; /* 👈 padding calculation ke liye safe */
}

.testimonial-content {
  flex: 1;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #00a651;
}

.reviewer-info h3 {
  margin: 0;
  font-size: 18px;
  color: #00a651;
}

.reviewer-info p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

.testimonial-image {
  flex: 1;
  text-align: right;
}

.testimonial-image img {
  max-width: 400px;
  width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-item {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-image {
    text-align: center;
  }
}




/* reviews css end  */


/* Contact Us section start  */
.milk-splash {
  margin-top: -100px;
}

.contact-bg {
  background: url("../img/jug-img.png") no-repeat center center/cover;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px; /* 🔹 mobile ke liye breathing space */
}

.contact-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 10%;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 500px;
}

.contact-form .small-title {
  color: #00a651;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-form h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00a651;
  outline: none;
}

.send-btn {
  background: #00a651;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%; /* 🔹 mobile me full-width button */
}

.send-btn:hover {
  background: #008f45;
}

/* 🔹 Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .contact-bg {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .contact-right {
    margin: 0;
    justify-content: center;
    width: 100%;
  }

  .contact-form {
    padding: 30px;
  }
}

/* 🔹 Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .contact-form {
    padding: 20px;
    border-radius: 12px;
  }

  .contact-form h1 {
    font-size: 22px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  .send-btn {
    font-size: 15px;
    padding: 12px;
  }

  .milk-splash {
    margin-top: -50px; /* 🔹 mobile me kam overlap */
  }
}


/* .contact-main{
    position: relative;
    
} */
/* Contact Us section end  */

/* Home page CSS End  */


/* About Us Page Css Start  */

.about-main{
  background-color: #ebebeb;
  padding: 50px;
  text-align: center;
}



.pricing-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
}

.pricing-section h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.pricing-section p {
  color: #555;
  line-height: 1.7;
}

.pricing-card {
  text-align: center;
}

.pricing-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

.pricing-label {
  background: #fff;
  border: 1px solid #d2e1b5;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}


.ethics-section {
  background: #f4f4f4; /* halka grey background */
  padding: 50px 0;
}

.ethics-box {
  background: #fff;
  border: 2px dashed #4caf50; /* green dashed border */
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.ethics-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.ethics-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.no-bullets {
    list-style: none;   /* dots remove */
    padding-left: 0;    /* left space remove */
    margin: 0;
}


/* About Us Page Css End */

/* Refund policy css start  */

.refund-main{
  background-color: #fefefe;
}
/* Refund policy css end */











/*========== 
end miscellaneous
start main css
==========*/


/*border-box*/



 
/*==========             
Slider
==========*/

.my-nav {
  position: absolute;
  z-index: 10;
  width: 100%;
}

/* Default Carousel Item (Desktop) */
.carousel-item {
  height: 100vh;
  background: no-repeat center center scroll;
  background-size: cover;
  position: relative;
}

.carousel-caption {
  background: rgba(0,0,0,0.4);   /* हल्का dark background */
  padding: 20px;
  border-radius: 10px;
  max-width: 40%;
  left: 60px;                     /* Left side text */
  right: auto;
  bottom: 20%;
  text-align: left;
}

.carousel-caption h2, 
.carousel-caption h4, 
.carousel-caption p {
  color: #fff;
  margin-bottom: 10px;
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
  .carousel-item {
    height: 400px;   /* मोबाइल पर height कम रखी */
  }

  .carousel-caption {
    max-width: 90%;          /* पूरा चौड़ा कर दिया */
    left: 50%;               /* center align */
    transform: translateX(-50%);
    bottom: 10%;             /* थोड़ा नीचे */
    text-align: center;      /* text center */
    padding: 15px;
  }

  .carousel-caption h2 {
    font-size: 22px;
  }

  .carousel-caption h4 {
    font-size: 18px;
  }

  .carousel-caption p {
    font-size: 14px;
  }
}

/* ✅ Extra Small Devices */
@media (max-width: 480px) {
  .carousel-item {
    height: 200px;
  }

  .carousel-caption {
    bottom: 5%;
    padding: 10px;
  }

  .carousel-caption h2 {
    font-size: 18px;
  }

  .carousel-caption h4 {
    font-size: 16px;
  }

  .carousel-caption p {
    font-size: 13px;
    line-height: 1.4;
  }
}



