.elementor-276 .elementor-element.elementor-element-1f6d2eb{--display:flex;}.elementor-276 .elementor-element.elementor-element-6254527{--display:flex;}.elementor-276 .elementor-element.elementor-element-1bfaf14{--display:flex;}.elementor-276 .elementor-element.elementor-element-f123e5b{--display:flex;}.elementor-276 .elementor-element.elementor-element-06fb9a9{--display:flex;}.elementor-276 .elementor-element.elementor-element-ad8a6f7{--display:flex;}.elementor-276 .elementor-element.elementor-element-7de4d06{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-3a1e19d *//* Common 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: 18px;
  text-align: justify;         /* default desktop view */
  text-justify: inter-word;    /* equal spacing */
  hyphens: auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 18px;
  border-radius: 12px;
  word-spacing: normal;
}

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

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

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

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

/* ✅ Buy Now Button Styling (sirf last section ke liye) */
#vantura-conclusion .cta-button {
  text-align: center;
  margin-top: 20px;
  margin-bottom: -10px;
}

#vantura-conclusion .cta-button a {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: #2C5E1A;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(44, 94, 26, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

#vantura-conclusion .cta-button a:hover {
  background: #1f4013;
  transform: translateY(-3px);
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
  section p {
    text-align: left;       /* mobile view par left align */
    text-justify: auto;     /* extra spacing hata do */
  }
  section h2 {
    font-size: 1.6rem;      /* heading chhoti */
  }
  section {
    padding: 40px 18px;     /* padding kam */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-590090b */.buy-button {
  display: block;
  margin: 20px auto 0; /* Center align */
  padding: 16px 36px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: #2C5E1A;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.5px;
  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;
  max-width: fit-content;
  position: relative;
  top: -10px; /* Thoda upar */
}
.buy-button:hover {
  background: #1f4013;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 18px rgba(44, 94, 26, 0.65);
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(44, 94, 26, 0.6); }
  50% { box-shadow: 0 0 18px rgba(44, 94, 26, 0.85); }
  100% { box-shadow: 0 0 0 rgba(44, 94, 26, 0.6); }
}/* End custom CSS */