/* ================= ABOUT PAGE ================= */
body {
  background: #1a0f0b;
  color: #fff;
}

/* ABOUT SECTION */
.about-main-section {
  position: relative;
  /* IMPORTANT */
  background: url("../img/background.png") center center/cover no-repeat;
  padding: 80px 0;
  z-index: 1;
}

.about-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.4);
  /* overlay color */

  z-index: -1;
}

.section-title {
  color: #489fda;
  font-weight: 700;
 
  margin-bottom: 25px;
  white-space: nowrap;
}

.about-main-section p {
  padding-left: 15vh;
}

.feature-item {
  display: flex;
  padding-left: 15vh;
  margin-bottom: 20px;
}

.feature-item i {
  color: #489fda;
  font-size: 20px;
  margin-right: 15px;
  margin-top: 5px;
}

.feature-item h6 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #489fda;
}

.image-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.image-box img {
  width: 600px;
  /* Bigger width */
  height: 300px;
  /* Bigger height */
  object-fit: cover;
  border-radius: 15px;
}

.price-btn {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #489fda, #3a8cc7);
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

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

.mission-section {
  position: relative;
  background: url("../img/background.png") center center/cover no-repeat;
  padding: 90px 0;
  /* reduced */
}

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.mission-section .container {
  position: relative;
  z-index: 2;
}

/* Section Title */
.section-heading {
  color: #489fda;
  font-weight: 700;
  font-size: 32px;
  /* smaller */
  margin-bottom: 10px;
}

.section-subtitle {
    color: #bbb;
    font-size: 20px;
    max-width: 500px;
    padding: 0 40px;
    text-align: center;

    margin: 0 auto;
    display: block;
}

/* Cards */
.mv-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 35px;
  text-align: center;

  /* 3D Effect */
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);

  transition: all 0.4s ease;
  transform-style: preserve-3d;
  min-height: 280px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mv-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.8),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Icon */
.mv-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 18px;
  background: linear-gradient(145deg, #ffffff, #0599fc);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  color: #fff;

  box-shadow:
    0 8px 20px rgba(0, 156, 199, 0.5),
    inset 0 -3px 8px rgba(0, 0, 0, 0.4);
}


/* Card Title */
.mv-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Card Text */
.mv-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-section {
    padding: 70px 0;
  }

  .section-heading {
    font-size: 26px;
  }
}

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

/* ----------- TABLET ----------- */
@media (max-width: 992px) {
  .section-title {
    padding-left: 0;
    white-space: normal;
    /* allow wrapping */
    font-size: 32px;
    text-align: left;
  }

  .about-main-section p,
  .feature-item {
    padding-left: 0;
  }

  .image-box img,
  .mission-img {
    width: 100%;
    height: 250px;
  }

  .mission-section .row {
    padding-left: 0;
  }
}

/* ----------- MOBILE ----------- */
@media (max-width: 768px) {
  body {
    text-align: left;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .about-main-section {
    padding: 50px 20px;
  }

  .mission-section {
    padding: 60px 20px;
  }

  .feature-item {
    margin-bottom: 15px;
  }

  .image-box {
    margin-top: 30px;
  }

  .image-box img,
  .mission-img {
    height: 220px;
    border-radius: 15px;
  }

  .price-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* ----------- SMALL MOBILE ----------- */
@media (max-width: 576px) {
  .section-title {
    font-size: 22px;
  }

  .image-box img,
  .mission-img {
    height: 200px;
  }
}