.about-hero {
  padding: 40px 24px 0;
}

.about-hero-inner {
  max-width: 1400px;
  margin: auto;
  background: #1e3163;
  border-radius: 28px;
  padding: 90px 40px 120px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: visible;

  background-image: url("../images/grid.svg");
  background-size: 240px;
  background-repeat: repeat;
}

.about-hero-inner h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
}

.about-hero-inner p {
  max-width: 720px;
  margin: 0 auto;
  color: #dbe2ff;
  font-size: 16px;
  line-height: 1.6;
}

/* Floating Images */
.about-image-row {
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 90%;
  max-width: 1100px;
}

.about-image-row img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 900px) {
  .about-hero-inner {
    padding: 60px 24px 160px;
  }

  .about-hero-inner h1 {
    font-size: 32px;
  }

  .about-image-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    bottom: -110px;
  }

  .about-image-row img {
    height: 140px;
  }
}
.who-we-are {
  padding: 120px 24px;
}

.who-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.who-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 28px;
}

.who-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.who-p-left {
  max-width: 420px;
  margin-bottom: 40px;
}

.who-p-shifted {
  max-width: 420px;
  margin-left: 160px;   /* this creates the “shifted to right” look */
  text-align: left;
  color: #333;
}

.who-right img {
  max-width: 100%;
  height: auto;
}

/* Mobile */
@media (max-width: 900px) {
  .who-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-p-shifted {
    margin-left: 0;
  }
}

/* =========================
   VISION / MISSION PUZZLE (EXACT)
========================= */

.vm-section {
  padding: 90px 24px;
  background: #ffffff;
}

.vm-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #2f2f2f;
  border-radius: 22px;
  padding: 60px 60px;
  position: relative;

  display: grid;
  grid-template-columns: 1fr 520px 1fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

/* TEXT BLOCKS */
.vm-text h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d6d3ce;
  margin-bottom: 12px;
}

.vm-text p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #e7e5e4;
  max-width: 260px;
}

/* CENTER */
.vm-center {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

/* PUZZLE BASE */
.puzzle {
  width: 170px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;

  border-radius: 18px;
  color: #ffffff;
  position: relative;
}

/* =========================
   VISION – MISSION SECTION
========================= */

.vm-section {
  padding: 80px 40px;
}

.vm-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: #2f2f2f;
  border-radius: 28px;
  padding: 80px 70px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
  color: #ffffff;
}

/* TEXT BLOCKS */
.vm-text {
  max-width: 320px;
}

.vm-label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #bdbdbd;
  margin-bottom: 14px;
}

.vm-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e5e5;
}

/* CENTER */
.vm-center {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* PUZZLES */
.puzzle {
  width: 150px;
  height: 150px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
  position: relative;
}

/* PUZZLE COLORS */
.puzzle.vision {
  background: #5a6fa6;
}

.puzzle.mission {
  background: #1f3f78;
}

/* PUZZLE NOTCHES */
.puzzle.vision::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #2f2f2f;
  border-radius: 50%;
}

.puzzle.mission::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #2f2f2f;
  border-radius: 50%;
}

/* ✅ SINGLE CORRECT ARROW */
.vm-arrow {
  width: 46px;
  height: 1.5px;
  background: #ffffff;
  position: relative;
}

.vm-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #ffffff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .vm-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 30px;
  }

  .vm-text {
    max-width: 100%;
  }

  .vm-center {
    justify-content: center;
  }

  .vm-arrow {
    display: none; /* mobile pe arrow hide */
  }
}


/* =========================
   LIFE SECTION – EXACT MATCH
========================= */

.life-section-exact {
  padding: 90px 24px 110px;
  background: #ffffff;
}

.life-container-exact {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* TOP */
.life-tag-exact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

.life-tag-exact .dot {
  width: 6px;
  height: 6px;
  background: #1f2a5a;
  border-radius: 50%;
}

.life-title-exact {
  margin: 10px 0 0;
  font-family: "Hedvig Letters Serif", serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: #0b1220;
}

.life-desc-exact {
  max-width: 520px;
  margin: 18px auto 50px;
  font-size: 13px;
  line-height: 1.75;
  color: #475569;
}

/* GRID – EXACT STRUCTURE */
.life-grid-exact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 18px;
}

/* COMMON BOX */
.life-grid-exact .box {
  border-radius: 14px;
  overflow: hidden;
  background: #e0e0e0;
}

.life-grid-exact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* EXACT SHAPES */
.life-grid-exact .tall {
  grid-row: span 2;
}

.life-grid-exact .wide {
  grid-column: span 2;
}

.life-grid-exact .medium {
  grid-column: span 1;
}

.life-grid-exact .small {
  grid-column: span 1;
}

/* MOBILE – STACK CLEAN */
@media (max-width: 900px) {
  .life-grid-exact {
    grid-template-columns: repeat(2, 1fr);
  }

  .life-grid-exact .tall,
  .life-grid-exact .wide {
    grid-column: span 2;
  }
}


.why-choose {
  padding: 120px 24px;
  text-align: center;
}

.wc-title {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 60px;
  font-family: "Playfair Display", serif;
}

.wc-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffe6f2, #f6ecff);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wc-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.wc-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 18px;
}

.wc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.wc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wc-card li {
  margin-bottom: 16px;
}

.wc-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.wc-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 900px) {
  .wc-wrap {
    grid-template-columns: 1fr;
  }

  .wc-title {
    font-size: 30px;
  }
}



.cta-section {
  padding: 80px 24px;
}

.cta-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #2f2f2f;
  color: #ffffff;
  border-radius: 18px;
  padding: 48px 24px;
  text-align: center;
}

.cta-box h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 13px;
  line-height: 1.6;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto 24px;
}

.cta-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #ffffff;
  color: #111;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .cta-box {
    padding: 36px 20px;
  }

  .cta-box h2 {
    font-size: 22px;
  }

  .cta-box p {
    font-size: 12px;
  }
}


.life-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 24px;
  text-align: center;
}

.life-section h2 {
  font-size: 40px;
  margin: 12px 0 40px;
  font-weight: 500;
}

.life-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

.life-text {
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* GRID */

.life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 18px;
}

.life-grid .box {
  background: #e0e0e0;
  border-radius: 16px;
}

/* Shapes matching the design */
.life-grid .tall {
  grid-row: span 2;
}

.life-grid .large {
  grid-column: span 2;
  grid-row: span 2;
}

.life-grid .wide {
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 1024px) {
  .life-wrap {
    grid-template-columns: 1fr;
  }

  .life-text {
    text-align: center;
  }

  .life-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* FAQ SECTION (CSS) — matches the screenshot layout */
.faq-section {
  background: #ffffff;
  padding: 72px 16px;
}

.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.faq-top {
  text-align: center;
  margin-bottom: 28px;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

.faq-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1f2a5a;
}

.faq-title {
  margin: 14px 0 0;
  font-family: var(--font-heading, "Hedvig Letters Serif", Georgia, serif);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  color: #0b1220;
}

/* LIST */
.faq-list {
  margin: 26px auto 0;
  max-width: 620px; /* narrow center like screenshot */
  border-top: 1px solid #eef2f6;
}

.faq-item {
  border-bottom: 1px solid #eef2f6;
}

/* QUESTION ROW */
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  text-align: left;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #1f2a5a;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;

  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
  padding: 0 0 0 0;
}

/* ACTIVE STATE (works with your existing main.js that toggles .faq-item.active) */
.faq-item.active .faq-answer {
  max-height: 220px; /* enough for 2–3 lines; increase if needed */
  padding: 0 0 16px 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .faq-list {
    max-width: 100%;
  }
  .faq-question {
    font-size: 14px;
  }
}

