.elementor-265 .elementor-element.elementor-element-43e8d45{--display:flex;}.elementor-265 .elementor-element.elementor-element-c88afe9{--display:flex;}.elementor-265 .elementor-element.elementor-element-c26f27d{--display:flex;}.elementor-265 .elementor-element.elementor-element-3f6d992{--display:flex;}.elementor-265 .elementor-element.elementor-element-f7c16f6{--display:flex;}.elementor-265 .elementor-element.elementor-element-3be10f5{--display:flex;}.elementor-265 .elementor-element.elementor-element-6e3ef14{--display:flex;}/* Start custom CSS for html, class: .elementor-element-309111d *//* Section Styling */
section {
  background: #F0F5E7;
  padding: 60px 25px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 6px 15px rgba(44, 94, 26, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover effect */
section:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(44, 94, 26, 0.4);
}

/* Headings */
section h2 {
  font-size: 2rem;
  color: #2C5E1A;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.05);
}

/* Paragraphs */
section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1c1c1c;
  margin-bottom: 20px;
  text-align: justify; /* ✅ Desktop पर justify */
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 18px;
  border-radius: 12px;
  transition: color 0.3s ease, background 0.3s ease;
}

/* Paragraph hover */
section p:hover {
  color: #2C5E1A;
  background: rgba(255, 255, 255, 0.9);
}

/* Bold text */
section strong {
  color: #2C5E1A;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Responsive Fixes (Mobile)
   ========================= */
@media (max-width: 768px) {
  section {
    padding: 40px 15px;
    margin: 20px;
  }

  section h2 {
    font-size: 1.5rem;
  }

  section p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;   /* ✅ Mobile पर left align (extra spacing fix) */
    padding: 10px 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7422104 *//* CTA Button Container */
#buy-now .buy-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: #2C5E1A;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(44, 94, 26, 0.4);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2s infinite;
}

/* Hover State */
#buy-now .buy-button:hover {
  background: #1f4013;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 16px rgba(44, 94, 26, 0.6);
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(44, 94, 26, 0.6);
  }
  50% {
    box-shadow: 0 0 15px rgba(44, 94, 26, 0.8);
  }
  100% {
    box-shadow: 0 0 0 rgba(44, 94, 26, 0.6);
  }
}/* End custom CSS */