.hero-about-page {
  position: relative;
  height: 50vh;
  padding: 0 7%;
  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url('../img/project1.jpg') center/cover;
    z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-about-page h2 {
  color: #fff;
}

.hero-about-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-about-content h2 {
  text-transform: uppercase;
}

/* ==================================
   ABOUT PAGE HERO
================================== */

.about-page-hero {
  padding: 120px 7%;
}

.about-page-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.about-page-content .section-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,.1);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-page-content h1 {
  font-size: 55px;
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-page-content h1 span {
  color: var(--primary-color);
}

.about-page-content p {
  color: #666;
  line-height: 1.8;
  font-size: 18px;
}


/* =========================
   COMPANY STORY
========================= */

.company-story {
  padding: 100px 8%;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.story-content .section-tag {
  color: #FE0700;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.story-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #111;
}

.story-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 15px;
}


/* =========================
   MISSION & VISION
========================= */

.mission-vision {
  padding: 100px 8%;
  background: #f8f9fb;
}

.mission-vision-container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.mission-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.mission-box .icon {
  width: 70px;
  height: 70px;
  background: rgba(254,7,0,.08);
  color: #FE0700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.mission-box h2 {
  margin-bottom: 15px;
  color: #111;
}

.mission-box p {
  color: #666;
  line-height: 1.8;
}


/* =========================
   SERVICES
========================= */

.about-services {
  padding: 100px 8%;
}

.about-services-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}

.about-services-header .section-tag {
  color: #FE0700;
  font-weight: 600;
}

.about-services-header h2 {
  font-size: 42px;
  margin: 15px 0;
}

.about-services-header p {
  color: #666;
  line-height: 1.8;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.service-box {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  transition: .4s;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-box i {
  font-size: 35px;
  color: #FE0700;
  margin-bottom: 20px;
}

.service-box h3 {
  margin-bottom: 15px;
}

.service-box p {
  color: #666;
  line-height: 1.8;
}


/* =========================
   WHY CHOOSE US
========================= */

.why-choose-us {
  padding: 100px 8%;
  background: #f8f9fb;
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content .section-tag {
  color: #FE0700;
  font-weight: 600;
}

.why-content h2 {
  font-size: 42px;
  margin: 15px 0 20px;
}

.why-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-item i {
  color: #FE0700;
}

.why-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}


/* =========================
   CTA SECTION
========================= */

.about-cta {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(
    135deg,
    #FE0700,
    #c90300
  );
}

.about-cta-content {
  max-width: 800px;
  margin: auto;
}

.about-cta h2 {
  color: #fff;
  font-size: 45px;
  margin-bottom: 20px;
}

.about-cta p {
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-btn {
  display: inline-block;
  background: #fff;
  color: #FE0700;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 600;
  transition: .4s;
}

.about-btn:hover {
  transform: translateY(-5px);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .story-container,
  .why-container,
  .mission-vision-container {
    grid-template-columns: 1fr;
  }

  .about-page-content h1 {
    font-size: 40px;
  }

  .story-content h2,
  .why-content h2,
  .about-services-header h2 {
    font-size: 32px;
  }

  .about-cta h2 {
    font-size: 34px;
  }

}

@media (max-width: 768px) {

  .company-story,
  .mission-vision,
  .about-services,
  .why-choose-us,
  .about-cta {
    padding: 70px 5%;
  }

  .about-page-content h1 {
    font-size: 32px;
  }

}