.elementor-35629 .elementor-element.elementor-element-74518f8{--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-ca48212 *//* Base */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #fffaf9;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 { font-weight: 600; color: #a8197d; }
h2 { font-size: 1.8rem; margin-bottom: 1rem; }
p { font-size: 1rem; color: #555; }

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(to right, #fff, #fff6f9);
  overflow: hidden;
}
.hero h1 { font-size: 2.5rem; color: #222; }
.hero h1 span { color: gold; }
.hero .tagline { font-size: 1rem; color: #666; }
.divider {
  width: 80px; height: 4px; margin: 1rem auto 0;
  background: linear-gradient(90deg, gold, silver, #a8197d);
  border-radius: 2px;
  animation: shine 4s linear infinite;
}

/* Floating Sparkles */
.hero::before, .milestones::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background-image: radial-gradient(circle, rgba(255,215,0,0.15) 2px, transparent 2px);
  background-size: 100px 100px;
  animation: floatSparkles 60s linear infinite;
  z-index: 0;
}
.hero-content, .container { position: relative; z-index: 1; }

/* Sections */
.section { padding: 4rem 2rem; }
.container { max-width: 1200px; margin: auto; }

/* Divider */
.section-divider {
  height: 2px; width: 60%; margin: 3rem auto 0;
  background: linear-gradient(90deg, transparent, gold, silver, transparent);
  border-radius: 2px;
  opacity: 0.7;
}

/* Story */
.story .container { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; }
.story .text { flex: 1 1 50%; }
.story .image { flex: 1 1 40%; }
.story img {
  width: 100%; height: auto; border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Mission */
.mission .container { display: flex; flex-wrap: wrap; gap: 2rem; }
.mission .card {
  flex: 1 1 45%; background: #fff; padding: 2rem;
  border: 1px solid #eee; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Values */
.values ul { list-style: none; padding: 0; }
.values li { margin: 0.8rem 0; font-size: 1rem; }
.values li i { margin-right: 8px; }

/* Offers */
.offers .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 per row on desktop */
  gap: 1rem;
}

.offer {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s;
}

.offer:hover {
  transform: translateY(-5px);
  border-color: gold;
}

/* Tablet: 2 per row */
@media (max-width: 992px) {
  .offers .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 per row */
@media (max-width: 576px) {
  .offers .grid {
    grid-template-columns: 1fr;
  }
}

/* Milestones */
.milestones ul { list-style: none; padding: 0; }
.milestones li { margin: 0.8rem 0; border-left: 3px solid gold; padding-left: 1rem; }

/* Stats - India Footprint */
.stats.grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 2rem; text-align: center;
}
.stat h3 { font-size: 1.5rem; color: #a8197d; }
.stat p { font-size: 0.95rem; color: #666; }
.stat i { font-size: 2rem; margin-bottom: 0.5rem; display: block; }

/* Animations */
@keyframes shine { 0% {background-position: -200px;} 100% {background-position: 200px;} }
@keyframes floatSparkles { 0% {transform: translate(0,0);} 50% {transform: translate(50px,50px);} 100% {transform: translate(0,0);} }
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp 1s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Colors */
.gold { color: gold; } .silver { color: silver; }

/* Responsive */
@media (max-width: 1024px) {
  .stats.grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  p, li { font-size: 0.95rem; }
  .story .container, .mission .container { flex-direction: column; }
  .stats.grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero .tagline { font-size: 0.9rem; }
  img { max-width: 100%; height: auto; }
}/* End custom CSS */