* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
   font-family: 'DM Sans', sans-serif;
}



.section-title {
  text-align: center;
  font-weight: 700;
  background-color: #6D8D3A;
  color: #fff;
  padding: 1.8rem;
}

.text-just {
  text-align: justify;
}
.free-shipping {
  background-color: #6D8D3A;
 
}

.zoom {
  padding: 15px 30px;
  font-size: 18px;
  background-color: #6D8D3A;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;

  animation: zoomPulse 1.5s infinite ease-in-out;
}

@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.foot {
  background-color: #6D8D3A;
}

.glass-red {
  background: linear-gradient(
    135deg,
    rgba(171, 48, 39, 0.85),
    rgba(171, 51, 42, 0.65)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}


.grad{
  background: linear-gradient(180deg, #AFC751, #6D8D3A);
}
.grad1{
  background: linear-gradient(300deg, #6D8D3A, #135d8b);
}

/* Vision section background already exists */
.vision-section {
  background: linear-gradient(135deg, #2e7d6b, #1b4d4f);
}

/* Badge – allow wrapping on mobile */
.badge-responsive {
  white-space: normal;
  max-width: 100%;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

/* Paragraphs – fs-3 look on desktop, responsive on mobile */
.p-lg {
  font-size: 1.75rem; /* same as Bootstrap fs-3 */
  line-height: 1.6;
}

/* Buttons – responsive size */
.btn-lg-responsive {
  font-size: 1.25rem;
  padding: 0.9rem 2rem;
}

/* Tablet */
@media (max-width: 992px) {
  .p-lg {
    font-size: 1.35rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .p-lg {
    font-size: 1.05rem;
  }

  .btn-lg-responsive {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .badge-responsive {
    font-size: 0.85rem;
  }
}
