  /* ══════════════════════════
       SECTION WRAPPER
    ══════════════════════════ */
        .about-page {
            display: flex;
            align-items: center;
            max-width: 1448px;
            margin: 0 auto;
        }

        /* ══════════════════════════
       LEFT — TEXT
    ══════════════════════════ */
        .about__text {
            flex: 0 0 50%;
			text-align: left;
        }

        .about__eyebrow {
            display: block;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 14px;
        }

        section#inner-page-banner .about__heading {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.5;
            color: #111;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }

        .about__desc {
            font-size: 20px;
            line-height: 1.75;
            color: #353535;
            font-weight: 400;
        }

        /* ══════════════════════════
       RIGHT — IMAGES
    ══════════════════════════ */
        .about__imgs {
            flex: 1;
            position: relative;
            /* extra top padding so the pink dot has room above the blob */
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
        }

        /* ── Pink decorative dot ──
       Sits at the top, roughly above the gap between blob & circle */
        .pink-dot {
            position: absolute;
            top: 0;
            right: 60%;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #ffeef1;
            z-index: 0;
        }

        /* ── Main blob image ──
       Teardrop shape: taller than wide, bottom wider/rounder, top narrower */
        .blob {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            width: 230px;
            height: 400px;
            /* 
        border-radius shorthand: top-left top-right bottom-right bottom-left / 
                                  top-left top-right bottom-right bottom-left
        Effect: top is slightly narrower, bottom is wider & rounder → teardrop
      */
            border-radius: 150px;
            overflow: hidden;
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.09);
            transform: rotate(25deg);
        }

        .blob img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            display: block;
        }

        /* ── Small circle image ──
       Sits to the RIGHT of the blob, lower — aligned to bottom */
        .circle {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin-left: 16px;
            margin-bottom: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
        }

        .circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }


.section-why {
    padding:120px 0;
    max-width: 1478px;
    margin: 0 auto;
}
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 25px;
}
.section-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 600px;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.why-item {
    display: flex;
    gap: 16px;
    padding: 0 0 30px;
    border-radius: 14px;
    transition: all 0.25s;
    position: relative;
}
.why-item div {
    z-index: 1;
}
.why-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #e9e9e9;
    font-size: 35px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 0;
    top: -19px;
}
.why-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 9px;
}
.why-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}
.why-visual {
    position: sticky;
    top: 100px;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.10);
}
.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
        /* ══════════════════════════
       RESPONSIVE
    ══════════════════════════ */
@media (max-width: 991px) {
.about-page {
	   flex-direction: row;
        padding: 36px 24px;
        gap: 36px;
        max-width: 50%;
        margin: 0;
}
.blob {
    width: 150px;
    height: 300px;
}
.circle {
    width: 150px;
    height: 150px;
}
            .about__text {
                flex: none;
                width: 100%;
            }

           section#inner-page-banner .about__heading {
                font-size: 26px;
            }

            .about__imgs {
                width: 100%;
                justify-content: center;
                height: 230px;
				 align-items: baseline;
            }
section.who-we-are-section, section.core-values-section {
    padding: 70px 0;
}
div.about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
div.mv-card {
    padding: 20px 20px 40px;
}
div.mv-grid {
    padding: 0 15px;
}
section.restless-section {
    min-height: 70vh;
    padding: 40px;
}
        }
/* ===== ABOUT US PAGE STYLES ===== */

/* Who We Are Section */
.who-we-are-section {
  background-color: var(--dark);
  padding: 100px 0 100px;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .who-we-are-grid {
    grid-template-columns: 5fr 7fr;
    gap: 80px;
  }
}

.who-we-are-content h2 {
  margin-bottom: 24px;
}

.who-we-are-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.who-we-are-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visuals-left {
  display: flex;
}

.img-laptop {
  width: 100%;
  height: 100%;
  object-fit: cover;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 0px;
  min-height: 400px;
}

.visuals-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-box {
  background-color: #ff004d;
  color: #fff;
  padding: 10px 30px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quote-box p {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin: 15px 0;
  color: #fff;
}

.quote-icon-left {
  color: #111;
  opacity: 1;
}

.quote-icon-right {
  align-self: flex-end;
  margin-top: -15px;
  color: #111;
  opacity: 0.8;
}

.img-team {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 8px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
  flex: 1;
}

/* Story Section */
.about-story-section {
  background-color: var(--sada);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
 /* cta */
    .cta{
      background: linear-gradient(135deg, #ffffff 0%, #fff9f9 50%, #ffffff 100%);
      padding:96px 60px;
      text-align:center;
    }
    .cta h2{font-size:clamp(28px,4vw,50px);font-weight:900;color: #05182b;letter-spacing:-1px;margin-bottom:18px}
    .cta p{font-size:16px;color: #05182b;max-width:560px;margin:0 auto 36px;line-height:1.75}
    .cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
    .btn-white{
      padding:14px 32px;border-radius:50px;background:#ff004d;color:var(--sada);
      font-size:15px;font-weight:700;border:none;cursor:pointer;
      box-shadow:0 8px 30px rgba(0,0,0,0.15);transition:all 0.25s;text-decoration:none;display:inline-block;
    }
    .btn-white:hover{background:rgb(5 24 43);}
    .btn-outline{
      padding:14px 32px;
      border-radius:50px;
      background:transparent;
      color: #05182b;
      font-size:15px;
      font-weight:700;
      border: 2px solid rgb(5 24 43);
      cursor:pointer;
      transition:all 0.25s;
      text-decoration:none;
      display:inline-block;
    }
    .btn-outline:hover{background:rgb(5 24 43);color:#fff}


.mv-bg {
    background: url(../images/about_restless.jpg) center;
    padding: 100px 0;
}
.mv-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.mv-inner .section-title {
    font-size: clamp(26px, 3vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
	    text-align: center;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 52px;
}
.mv-card {
    padding: 50px 70px 70px;
    border-radius: 40px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    align-items: center;
}
.mv-icon {
    margin-bottom: 20px;
	transition: 0.4s;
}
.mv-card:hover .mv-icon{
    transform: rotate(5deg) scale(1.1);
}
.mv-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}
.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}
.mv-card.mi {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.mv-card.vi {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-left: 2px solid #f3f3f5;
}
@media (min-width: 992px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-story-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-story-image:hover img {
  transform: scale(1.05);
}

.about-story-content h2 span {
  color: var(--text-light);
  font-weight: 400;
}

.about-story-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 24px;
}

/* Restless Section */
.restless-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
}

.restless-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.restless-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Add parallax effect natively */
  transform: scale(1.1);
}

.restless-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.restless-content {
  max-width: 800px;
  color: var(--sada);
}

.restless-title {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.restless-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

/* Core Values Section */
.core-values-section {
  padding: 120px 0;
}

.text-center {
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: var(--sada);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: rotate(5deg) scale(1.1);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-light);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}
@media (max-width: 767px) {
div.about-page {
        flex-direction: column;
        padding: 0 15px;
        gap: 26px;
        max-width: 100%;
    }
    .blob {
        width: 110px;
        height: 240px;
    }
.quote-box {
    padding: 10px 10px;
}
.quote-box p {
    font-size: 1rem;
}
.visuals-right .img-team {
    min-height: 150px;
}
.who-we-are-grid {
    gap: 10px;
}
    div.about-story-grid {
        gap: 20px;
        display: flex;
        flex-direction: column-reverse;
    }
.restless-title {
    font-size: 2.1rem;
}
div.mv-grid {
        grid-template-columns: 1fr;
    }
div.mv-card {
    border-radius: 0;
	    gap: 10px 10px;
}
.mv-icon {
    margin-bottom: 10px;
}
.mv-card h3 {
    font-size: 20px;
}
.why-layout {
    grid-template-columns: 1fr;
    gap: 10px;
}
section.section-why {
    padding: 60px 0;
}
.why-visual {
    height: 210px;
}
.value-card {
    padding: 10px 20px 30px;
}
section.cta {
    padding: 50px 15px;
}
.cta-btns .btn-white, .cta-btns .btn-outline{
	    padding: 10px 20px;
}
}