/* ===== ABOUT PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(
    rgba(15, 31, 68, 0.85),
    rgba(15, 31, 68, 0.85)
  ),
  url("../images/about-banner.jpeg") center/cover no-repeat;

  color: #ffffff;
  padding: 140px 20px;
  text-align: center;
 
}

.page-banner h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 24px;
  color: #e0a730;
}
@media (max-width: 768px) {
  .page-banner {
    padding: 100px 20px;
  }

  .page-banner h1 {
    font-size: 32px;
  }
  .page-banner p {
  font-size: 22px;
  
}
}



/* ===== ABOUT INTRO ===== */
.about-intro {
  padding: 50px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0px 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #1f3c88;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.about-image img {
  width: 80%;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(31, 60, 136,0.35);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
     padding: 0px;
     gap: 40px;
  }

  .about-image {
    order: 1;
  }

  .about-text {
    order: 2;
  }
  .about-image img {
  width: 100%;
}
  .about-text h2 {
    font-size: 26px;
  }
}



/* ===== MISSION & VISION ===== */
.mission-vision {
  background: #f5f5f5;
  padding: 70px 20px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-box {
  background: #ffffff;
  padding: 30px;
  border-left: 5px solid #e0a730;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mv-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1f3c88;
}

.mv-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}


@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}




/* ===== WORK PROCESS ===== */
.work-process {
  padding: 40px 20px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #1f3c88;
}

.section-title p {
  font-size: 18px;
  color: #666;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Step Card */
.process-step {
  background: #f5f5f5;
  padding: 30px;
  text-align: center;
  position: relative;
  border-radius: 6px;
  transition: 0.3s ease;
}

.process-step span {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: #e0a730;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #133280;
}

.process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Hover */
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(31, 60, 136,0.35);
}



@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

}


/* ===== ABOUT PAGE CTA ===== */
.about-cta {
  background: url("../images/cta-bg.jpeg") center/cover no-repeat;
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15,31,68,0.85);
  z-index: 0;
}

.about-cta .cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #dddddd;
}

/* Buttons */
.about-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.about-cta .btn-outline {
  padding: 10px 26px;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.about-cta .btn-primary {
  padding: 10px 26px;
  background: #e0a730;
  color: #0f1f44;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}



@media (max-width: 768px) {
  .about-cta h2 {
    font-size: 30px;
  }

  .about-cta p {
    font-size: 15px;
  }

  .about-cta .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .about-cta h2 {
    font-size: 26px;
  }
}
