/* =================================================
   ABOUT HERO
================================================= */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

.about-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 8% 100px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
    url("../assets/images/about-hero.jpg") center/cover;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.12);
  filter: blur(80px);
  top: -180px;
  right: -120px;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.08);
  bottom: -120px;
  left: -80px;
  filter: blur(60px);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
}

.about-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.15;
  margin: 25px 0;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto 40px;
}

.about-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =================================================
   OUR STORY
================================================= */

.about-story {
  padding: 120px 8%;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 20px 0 30px;
  line-height: 1.2;
  color: #111827;
}

.about-text p {
  margin-bottom: 22px;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* Right Side Cards */

.about-cards {
  display: grid;
  gap: 25px;
}

.about-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid #ececec;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #ff6b00;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: #111827;
}

.about-card p {
  color: #666;
  line-height: 1.8;
}
/* =================================================
   MISSION & VISION
================================================= */

.mission-vision {
  padding: 120px 8%;
  background: #f8fafc;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 70px;
}

.mission-card {
  position: relative;
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff6b00, #ffb347);
}

.mission-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.mission-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff6b00, #ff8c32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 28px;
}

.mission-card h3 {
  font-size: 1.7rem;
  color: #111827;
  margin-bottom: 18px;
}

.mission-card p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* =================================================
   CORE VALUES
================================================= */

.core-values {
  padding: 120px 8%;
  background: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 70px;
}

.value-card {
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 40px 35px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ffc107);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff6b00, #ff9f43);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #fff;
}

.value-card h3 {
  font-size: 1.45rem;
  color: #111827;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  line-height: 1.85;
  font-size: 1rem;
}

/* =================================================
   OUR JOURNEY
================================================= */

.our-journey {
  padding: 120px 8%;
  background: #f8fafc;
}

.journey-timeline {
  max-width: 950px;
  margin: 80px auto 0;
  position: relative;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 55px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ff6b00, #ffc107);
  border-radius: 20px;
}

.journey-item {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  margin-bottom: 55px;
  position: relative;
}

.journey-year {
  width: 110px;

  min-width: 110px;

  height: 110px;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff6b00, #ff9f43);

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  font-weight: 700;

  font-size: 1rem;

  box-shadow: 0 20px 45px rgba(255, 107, 0, 0.25);

  position: relative;

  z-index: 2;
}

.journey-content {
  flex: 1;

  background: #fff;

  padding: 35px;

  border-radius: 24px;

  border: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);

  transition: 0.35s ease;
}

.journey-content:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.journey-content h3 {
  font-size: 1.5rem;

  margin-bottom: 15px;

  color: #111827;
}

.journey-content p {
  color: #666;

  line-height: 1.85;
}

/* =================================================
   LEADERSHIP TEAM
================================================= */

.team-section {
  padding: 120px 8%;
  background: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 70px;
}

.team-card {
  background: #fff;

  border-radius: 28px;

  padding: 45px 35px;

  text-align: center;

  border: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);

  transition: 0.35s ease;

  position: relative;

  overflow: hidden;
}

.team-card::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 0;

  transform: translateX(-50%);

  width: 0;

  height: 5px;

  background: linear-gradient(90deg, #ff6b00, #ffc107);

  transition: 0.35s;
}

.team-card:hover::before {
  width: 100%;
}

.team-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.12);
}

.team-image {
  width: 120px;

  height: 120px;

  margin: 0 auto 28px;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff6b00, #ff9f43);

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 3rem;

  color: #fff;

  box-shadow: 0 18px 40px rgba(255, 107, 0, 0.25);
}

.team-card h3 {
  font-size: 1.55rem;

  margin-bottom: 18px;

  color: #111827;
}

.team-card p {
  color: #666;

  line-height: 1.85;
}

/* =================================================
   ABOUT CTA
================================================= */

.about-cta {
  padding: 120px 8%;

  background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #ff6b00 100%);

  position: relative;

  overflow: hidden;
}

.about-cta::before {
  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  top: -220px;

  right: -120px;

  filter: blur(40px);
}

.about-cta::after {
  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  background: rgba(255, 193, 7, 0.12);

  border-radius: 50%;

  bottom: -120px;

  left: -80px;

  filter: blur(35px);
}

.about-cta-content {
  position: relative;

  z-index: 2;

  max-width: 850px;

  margin: auto;

  text-align: center;
}

.about-cta-content .section-tag {
  background: rgba(255, 255, 255, 0.12);

  color: #ffd166;
}

.about-cta-content h2 {
  color: #ffffff;

  font-size: clamp(2.5rem, 5vw, 4rem);

  margin: 25px 0;

  line-height: 1.2;
}

.about-cta-content p {
  color: rgba(255, 255, 255, 0.88);

  font-size: 1.1rem;

  line-height: 1.9;

  max-width: 720px;

  margin: 0 auto 45px;
}

.about-cta-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.about-cta-buttons .btn {
  min-width: 220px;
}

.about-cta-buttons .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.45);

  color: #ffffff;
}

.about-cta-buttons .btn-outline:hover {
  background: #ffffff;

  color: #111827;

  border-color: #ffffff;
}

/*==================================================
ABOUT PAGE RESPONSIVE
TABLETS
==================================================*/

@media (max-width: 992px) {
  /* Hero */

  .about-hero {
    padding: 140px 8% 90px;
  }

  .about-hero h1 {
    font-size: 3rem;
  }

  /* Story */

  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* Mission */

  .mission-grid {
    grid-template-columns: 1fr;
  }

  /* Values */

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team */

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA */

  .about-cta-buttons {
    justify-content: center;
  }
}

/* =========================================
   ABOUT PAGE
   PHONE RESPONSIVE
========================================= */

@media (max-width: 768px) {
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .container {
    width: 92%;
    margin: auto;
  }

  /* .container{
    width:100%;
    padding: 0 20px;
    margin:0 auto;
} */

  /* Every section */

  .about-hero,
  .about-story,
  .mission-vision,
  .core-values,
  .our-journey,
  .team-section,
  .about-cta {
    padding: 70px 0;
  }

  /* Every grid becomes one column */

  .about-grid,
  .mission-grid,
  .values-grid,
  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Timeline */

  .journey-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Every card */

  .about-card,
  .mission-card,
  .value-card,
  .team-card,
  .journey-content {
    width: 100%;
    max-width: 100%;
  }

  /* Hero */

  .about-hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .about-hero h1 {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .about-hero p {
    font-size: 1rem;
  }

  /* Buttons */

  .about-buttons,
  .about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .about-buttons .btn,
  .about-cta-buttons .btn {
    width: 100%;
  }

  /* Images */

  img {
    max-width: 100%;
    height: auto;
  }
}
