/* =========================
   HERO (MODERN MESH GRADIENT)
========================= */
.about-hero {
  position: relative;
  background: #0f0f0f;
  color: #fff;
  padding: 170px 0 120px;
  text-align: center;
  overflow: hidden;
}

/* BACKGROUND GLOW */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.35), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0,140,255,0.25), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06), transparent 60%);

  filter: blur(50px);
  z-index: 0;
}

/* CONTENT ABOVE */
.about-hero .container {
  position: relative;
  z-index: 1;
}

/* TEXT */
.about-hero h1 {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 18px;
}

.about-hero p {
  font-size: 18px;
  color: #aaa;
}


/* =========================
   MAIN SECTION
========================= */
.about-section {
  background: #0b0b0b;
  padding: 100px 0 60px;
  color: #ddd;
}


/* =========================
   ZIGZAG BLOCK SYSTEM
========================= */
.about-block {
  max-width: 1100px;   /* was 900px */
  margin: 0 auto 70px; /* center it */
}

/* ALIGNMENTS */
.about-block.left {
  text-align: left;
}

.about-block.right {
  margin-left: auto;
  text-align: right;
}

/* TITLES */
.about-block h1,
.about-block h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
}

.about-block h1 {
  font-size: 40px;
  line-height: 1.5;
}

.about-block h2 {
  font-size: 26px;
  color: #D4AF37;
}

/* TEXT */
.about-block p {
  font-size: 17px;
  line-height: 1.9;
  color: #bdbdbd;
  margin-bottom: 14px;
}


/* =========================
   WHY CHOOSE US (IMAGE STYLE)
========================= */
.about-block.bg-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  max-width: unset;   /* 🔥 remove 900px restriction */

  padding: 120px 0;     /* 👈 vertical spacing only (you can reduce if want) */
  border-radius: 0;     /* ❌ no rounded edges */
  overflow: hidden;

  background: url("../assets/images/gradient.jpg") center/cover no-repeat;
}

/* =========================
   FULL WIDTH SYSTEM (GLOBAL FIX)
========================= */
.about-block.bg-image,
.about-block.why-vision-mission.bg-image {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;

  padding: 120px 0;
  overflow: hidden;
  border-radius: 0;
}


/* DARK OVERLAY */
.about-block.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}

/* GLASS TEXT BOX */
.about-block.bg-image .text-box {
  position: relative;
  z-index: 1;

  background: transparent; /* ❌ no box */
  backdrop-filter: none;
  border: none;

  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BIGGER TITLE */
.about-block.bg-image h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}

/* GOLD LINE */
.about-block.bg-image h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 10px;
}

/* TEXT INSIDE BOX */
.about-block.bg-image p {
  color: #ddd;
}

.about-block h3 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}

/* gold underline accent */
.about-block h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 8px;
}

.about-block h4 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}

/* gold underline accent */
.about-block h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 8px;
}

/* =========================
   CORE VALUES (MODERN CLEAN)
========================= */
.values-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px; /* nicer spacing */
}

.values-list li {
  position: relative;
  padding-left: 28px;

  font-size: 17px;        /* slightly bigger */
  line-height: 1.6;
  color: #d6d6d6;

  transition: all 0.3s ease;
}

/* gold bullet */
.values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;

  width: 8px;
  height: 8px;
  background: #D4AF37;
  border-radius: 50%;
}

/* hover effect */
.values-list li:hover {
  color: #fff;
  transform: translateX(6px);
}

/* subtle divider (lighter than before) */
.values-list li:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 12px;
}


/* =========================
   TEXT ANIMATION
========================= */
.reveal-text {
  display: inline-block;
  overflow: hidden;
}

.reveal-text span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: letterUp 0.7s forwards;
}

@keyframes letterUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .about-hero {
    padding: 100px 15px 20px !important;
    min-height: unset !important;
    height: auto !important;
  }

  .about-hero::before {
    filter: blur(20px) !important;

    background:
      radial-gradient(circle at 50% 40%, rgba(212,175,55,0.2), transparent 60%),
      radial-gradient(circle at 50% 70%, rgba(0,140,255,0.12), transparent 70%);
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-block {
    margin-bottom: 50px;
    text-align: left !important;
    margin-left: 0 !important;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .about-block.bg-image {
    padding: 40px 20px;
  }

  .hero-subtitle {
    display: none !important;
  }
}

/* =========================
   VISION & MISSION FULL WIDTH FIX
========================= */
.about-block.why-vision-mission.bg-image {
  position: relative;

  width: 100vw;
  max-width: 100vw;

  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  padding: 120px 0;
  overflow: hidden;

  background: url("../assets/images/gradient-1.jpg") center/cover no-repeat;
}


/* DARK OVERLAY (for readability) */
.about-block.why-vision-mission.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.88),
    rgba(0,0,0,0.55)
  );

  z-index: 0;
}

.vm-container {
  position: relative;
  z-index: 1;

  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  gap: 80px;
}

.vm-box {
  flex: 1;
  color: #ddd;
}

.vm-box h5 {
  font-size: 22px;      /* smaller */
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.vm-box h5::after {
  content: "";
  display: block;
  width: 40px;          /* smaller line */
  height: 2px;
  background: #D4AF37;
  margin-top: 6px;
}

.vm-box p {
  font-size: 17px;
  line-height: 1.9;
  color: #d6d6d6;
}

@media (max-width: 768px) {
  .vm-container {
    flex-direction: column;
    gap: 30px;
  }
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  display: none !important;
  content: none !important;
}

/* TEXT CONTAINER */
/* TEXT ALIGN FIX (MATCH OTHER BLOCKS) */
.about-block.why-vision-mission .text-box {
  position: relative;
  z-index: 1;
}

/* TITLE */
.about-block.why-vision-mission h4 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

/* GOLD UNDERLINE */
.about-block.why-vision-mission h4::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #D4AF37;
  margin-top: 10px;
}

/* TEXT STYLE */
.about-block.why-vision-mission p {
  font-size: 17px;
  line-height: 1.9;
  color: #d6d6d6;
  margin-bottom: 18px;
}

/* LABEL STYLE (Vision / Mission) */
.about-block.why-vision-mission strong {
  color: #fff;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 6px;
}

/* HOVER SUBTLE EFFECT (optional premium touch) */
.about-block.why-vision-mission .text-box {
  transition: transform 0.4s ease;
}

.about-block.why-vision-mission:hover .text-box {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {

  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .about-block.why-vision-mission {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .about-block.why-vision-mission .text-box {
    padding: 0 10px;
  }

  .about-block.why-vision-mission h4 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 15px;
  }

  .about-block.why-vision-mission p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .about-block.why-vision-mission strong {
    font-size: 16px;
  }

  .about-block.why-vision-mission:hover .text-box {
    transform: none;
  }

}

@media (max-width: 768px) {

  /* ========================= */
  /* HERO */
  /* ========================= */
  .about-hero {
    padding: 100px 15px;
    text-align: center;
  }

  .about-hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  /* ========================= */
  /* ABOUT BLOCKS */
  /* ========================= */
  .about-block {
    padding: 30px 15px;
    text-align: center;
  }

  .about-block h1,
  .about-block h2,
  .about-block h3,
  .about-block h4 {
    font-size: 22px;
    line-height: 1.3;
  }

  .about-block p {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
  }

  /* ========================= */
  /* WHY CHOOSE BOX */
  /* ========================= */
  .text-box {
    padding: 20px;
  }

  /* ========================= */
  /* CORE VALUES */
  /* ========================= */
  .values-list {
    padding-left: 0;
    text-align: left;
  }

  .values-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  /* ========================= */
  /* VISION & MISSION */
  /* ========================= */
  .vm-container {
    flex-direction: column;
    gap: 20px;
  }

  .vm-box {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

}

/*-------Mobile------*/
@media (max-width: 768px) {

  .about-section {
    padding: 40px 0 30px;
  }
  
  .about-block {
    padding: 25px 15px;
    text-align: center;
  }

  .about-block h1,
  .about-block h2,
  .about-block h3,
  .about-block h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .about-block p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left; /* better readability on mobile than justify */
  }

}