  /* About Us Start */
.about-hero {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
 
  top: 0;
  left: 0;
  z-index: 0;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

.container {
  z-index: 2;
}
    /* About Us End */










    /* ===== SECTION BG ===== */
.about-modern {
  background: linear-gradient(180deg, #1f2a5a, #0f172a);
  color: #fff;
}

/* ===== IMAGE ===== */
 /* .about-img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
} */

/* ===== FLOATING QUALITY CARD ===== */
.quality-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.quality-card h3 {
  color: #ff7a18;
  font-weight: 800;
  margin: 0;
}

.quality-card p {
  font-size: 13px;
  opacity: 0.7;
}

/* ===== TAG ===== */
.about-tag {
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
}

/* ===== TITLE ===== */
.about-title {
  font-size: 42px;
  font-weight: 800;
  margin-top: 15px;
  line-height: 1.2;
}

.about-title span {
  background: linear-gradient(90deg, #ff7a18, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== TEXT ===== */
.about-text {
  color: rgba(255,255,255,0.7);
  margin-top: 15px;
  line-height: 1.7;
}

/* ===== STATS ===== */
.stat-box {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}

/* ICON */
.stat-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
}

.stat-icon.orange { background: linear-gradient(135deg, #ff7a18, #ffb347); }
.stat-icon.green { background: linear-gradient(135deg, #00c853, #69f0ae); }
.stat-icon.yellow { background: linear-gradient(135deg, #f9a825, #ffd54f); }

.stat-box h5 {
  margin: 5px 0;
  font-weight: 700;
}

.stat-box span {
  font-size: 13px;
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .about-title {
    font-size: 30px;
  }

  .quality-card {
    right: 10px;
    bottom: -10px;
    padding: 15px;
  }
}













/* ===== GLOBAL ===== */
.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(135deg, rgba(13, 67, 134, 0.986), rgba(22, 53, 90, 0.959));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  background: linear-gradient(135deg, rgba(13, 67, 134, 0.986), rgba(22, 53, 90, 0.959));
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  
}
.custom-badge {
  background: linear-gradient(135deg, rgba(13, 67, 134, 0.986), rgba(22, 53, 90, 0.959));
  color: white;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.6em 1.2em;
  border-radius: 50px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.section-tag.dark {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.section-text {
  color: #555;
  margin-top: 15px;
}

/* ===== ABOUT LIGHT ===== */
.about-light {
  background: #ffffff;
}

/* ===== FEATURES ===== */
.feature-list div {
  margin-bottom: 10px;
  font-weight: 500;
}

.feature-list i {
  color: #ff7a18;
  margin-right: 8px;
}








/* ===== WHY SECTION ===== */
.why-modern {
  background: linear-gradient(180deg, #1f2a5a, #0f172a);
}

.why-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
}

.why-card i {
  font-size: 24px;
  color: #ff7a18;
  margin-bottom: 10px;
}

/* ===== PROCESS ===== */
.process-section {
  background: #f8fafc;
}

.process-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.step {
  font-size: 28px;
  font-weight: 800;
  color: #ff7a18;
  margin-bottom: 10px;
}




