.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* HERO */
.about-hero {
  background: url("https://pohcdn.com/sites/default/files/styles/paragraph__live_banner__lb_image__1880bp/public/live_banner/Rishikesh.jpg") center/cover no-repeat;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 38px;
}

/* INTRO */
.about-intro {
  padding: 20px 20px;
  background: #fff;
}

.about-intro p {
  line-height: 1.8;
  color: #555;
}

/* SERVICES */
.about-services {
  padding: 20px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  text-align: center;
  background: #fff;
  padding: 0px 15px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-card img{
  width: 150px;
}

.service-card h3{
  font-weight: bold;
  font-size: 24px;
}

/* STATS */
.about-stats {
  background: #0f172a;
  color: #fff;
  padding: 80px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 30px;
}

.stat-box h2 {
  color: #f59e0b;
  font-weight: 900;
  font-size: 35px;
}

.stat-box img{
  width: 80px;
}

/* MISSION */
.about-mission {
  padding: 20px 20px;
  background: #fff;
}

.about-mission p {
  line-height: 1.8;
  color: #555;
}

/* TRUST */
.about-trust {
  padding: 20px 20px;
}

.about-trust ul {
  line-height: 2;
  color: #555;
}

/* CTA */
.about-cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: #f59e0b;
  color: #222;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .hero-overlay h1 {
    font-size: 26px;
  }
}