.stats-section {
  background: linear-gradient(135deg, #d94f0b, #c74600);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
color: #eb6721;
  position: relative;
}

.stat-item p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #eb6721;
}

.stat-item::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
color: #eb6721;
  margin: 10px auto 0;
  border-radius: 2px;
  opacity: 0.6;
}

.page-hero1{
  height: 180px !important;
}
.page-hero2{
  height: 450px !important;
}

.hero-with-bg {
  background-image: url('../images/lm.jpeg') !important; /* yaha apni image ka path dalna */
  background-size: cover;       /* pura section cover ho jaye */
  background-position: center;  /* center me align ho */
  background-repeat: no-repeat;
  padding: 150px 0;            /* section height adjust karne ke liye */
  color: white;                /* text white color */
  text-align: center;
  position: relative;
}

/* Optional: overlay for better text visibility */
.hero-with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay */
  z-index: 0;
}

.hero-with-bg .container {
  position: relative;
  z-index: 1;
}