/* ========================================
   ABOUT PAGE - HEADER / HERO / CONTENT
======================================== */
.page {
  background: #000;
  color: #fff;
}

/* top header */
.header {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  padding: 0 60px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========================================
   ABOUT HERO - 3D POSTER FLOOR + AUTO SCROLL
======================================== */
.about-hero {
  position: relative;
  height: 72vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
}

/* background container */
.about-hero__bg {
  position: absolute;
  inset: 0;
  perspective: 1600px;
  overflow: hidden;
  background: #000;
}

/* moving poster floor */
.about-hero__poster-grid {
  position: absolute;
  left: 50%;
  top: 62%;
  width: 2400px;
  display: grid;
  grid-template-columns: repeat(10, 140px); /* 🔥 more posters */
  gap: 12px;
  justify-content: center;
  transform:
    translate(-50%, -50%)
    rotateX(72deg)
    rotateZ(0deg)
    scale(1.38);
  transform-style: preserve-3d;
  animation: aboutPosterAutoScroll 15s linear infinite;
  will-change: transform;
}

/* poster style */
.about-hero__poster-grid img {
  width: 140px;   /* 🔥 smaller */
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.45),
    0 0 12px rgba(255, 255, 255, 0.03);
  filter: brightness(0.78);
}

/* optional alternate depth feel */
.about-hero__poster-grid img:nth-child(odd) {
  transform: translateY(-8px);
}

.about-hero__poster-grid img:nth-child(even) {
  transform: translateY(8px);
}

/* dark overlay for readability */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.46) 36%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
  z-index: 2;
}

/* bottom fade */
.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, #000, transparent);
  z-index: 3;
}

/* center content */
.about-hero__content {
  position: relative;
  z-index: 4;
  max-width: 980px;
  padding: 0 20px;
}

.about-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.about-hero__desc {
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 980px;
  margin: 0 auto 30px;
}

/* ========================================
   MORPHING LIQUID SVG MASK BUTTON
   - normal = blob button
   - hover = extra bubbles + morph + rotate
   - yellow / gold gradient
======================================== */
.liquid-btn {
  position: relative;
  width: 300px;   /* before 240px */
  height: 160px;  /* before 130px */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.liquid-btn__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.liquid-btn__blob-wrap {
  transform-origin: 50% 50%;
  animation: liquidBlobFloat 7s ease-in-out infinite;
}

.liquid-btn__blob {
  fill: url(#liquidYellowGradient);
  filter:
    drop-shadow(0 0 28px rgba(255, 191, 0, 0.6))
    drop-shadow(0 0 60px rgba(255, 191, 0, 0.35));
  transition: transform 0.45s ease, filter 0.45s ease;
}

.liquid-btn__front {
  fill: #f7f2dd;
  transition: transform 0.45s ease, fill 0.45s ease;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
}

.liquid-btn__text {
  position: relative;
  z-index: 3;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #4d4b78;
  transition: transform 0.35s ease, color 0.35s ease;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* bubbles */
.liquid-btn__bubbles {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.liquid-btn__bubbles circle {
  fill: url(#liquidYellowGradient);
  filter: drop-shadow(0 0 8px rgba(255, 191, 0, 0.24));
  transform-origin: center;
}

.liquid-btn__bubbles circle:nth-child(1) { animation: bubbleFloat1 3.2s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(2) { animation: bubbleFloat2 3.8s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(3) { animation: bubbleFloat3 3.1s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(4) { animation: bubbleFloat4 4s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(5) { animation: bubbleFloat5 3.4s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(6) { animation: bubbleFloat6 3.3s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(7) { animation: bubbleFloat7 4.2s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(8) { animation: bubbleFloat8 3.6s ease-in-out infinite; }

/* hover state */
.liquid-btn:hover .liquid-btn__bubbles {
  opacity: 1;
}

.liquid-btn:hover .liquid-btn__blob-wrap {
  animation-duration: 2.2s;
}

.liquid-btn:hover .liquid-btn__blob {
  filter: drop-shadow(0 0 18px rgba(255, 191, 0, 0.42))
          drop-shadow(0 0 34px rgba(255, 191, 0, 0.22));
}

.liquid-btn:hover .liquid-btn__front {
  transform: rotate(-7deg) scale(1.02);
}

.liquid-btn:hover .liquid-btn__text {
  transform: translateY(-1px) scale(1.02);
  color: #4b4972;
}

/* active press */
.liquid-btn:active {
  transform: scale(0.98);
}

/* floating/morph effect */
@keyframes liquidBlobFloat {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-2px) rotate(2deg) scale(1.01);
  }
  50% {
    transform: translateY(1px) rotate(-2deg) scale(0.99);
  }
  75% {
    transform: translateY(-1px) rotate(1.5deg) scale(1.01);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* bubbles */
@keyframes bubbleFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(-6px, -10px) scale(1.08); opacity: 1; }
}
@keyframes bubbleFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(6px, -12px) scale(1.14); opacity: 1; }
}
@keyframes bubbleFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(-8px, -8px) scale(1.1); opacity: 1; }
}
@keyframes bubbleFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(8px, -14px) scale(1.16); opacity: 1; }
}
@keyframes bubbleFloat5 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-6px, -9px) scale(1.1); opacity: 1; }
}
@keyframes bubbleFloat6 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-4px, 10px) scale(1.12); opacity: 1; }
}
@keyframes bubbleFloat7 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(5px, 12px) scale(1.15); opacity: 1; }
}
@keyframes bubbleFloat8 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate(-3px, 8px) scale(1.05); opacity: 1; }
}

/* responsive */
@media (max-width: 768px) {
  .liquid-btn {
    width: 210px;
    height: 112px;
  }

  .liquid-btn__text {
    font-size: 18px;
  }
}

/* ========================================
   LIQUID BUTTON - PREMIUM EXTRA EFFECTS
   1. glow pulse
   2. hover ripple wave
   3. click splash
======================================== */

/* button bigger */
.liquid-btn {
  width: 300px;
  height: 160px;
  overflow: visible;
}

/* text bigger */
.liquid-btn__text {
  font-size: 24px;
  letter-spacing: 0.5px;
}

/* stronger glow pulse on blob */
.liquid-btn__blob {
  animation: liquidGlowPulse 2.8s ease-in-out infinite;
}

/* front mask little smooth */
.liquid-btn__front {
  transform-origin: center;
}

/* wave group hidden initially */
.liquid-btn__waves {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.liquid-btn__waves ellipse {
  fill: none;
  stroke: rgba(255, 245, 200, 0.7);
  stroke-width: 2.5;
  transform-origin: center;
}

/* hover ripple wave inside blob */
.liquid-btn:hover .liquid-btn__waves {
  opacity: 1;
}

.liquid-btn:hover .liquid-btn__waves ellipse:nth-child(1) {
  animation: liquidWaveRipple 1.6s ease-out infinite;
}

.liquid-btn:hover .liquid-btn__waves ellipse:nth-child(2) {
  animation: liquidWaveRipple 1.6s ease-out 0.25s infinite;
}

/* splash container */
.liquid-btn__splash {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

/* dynamically created splash droplets */
.liquid-btn__drop {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe38a, #ffbf00 65%, #ff9f1a);
  box-shadow:
    0 0 10px rgba(255, 191, 0, 0.4),
    0 0 20px rgba(255, 191, 0, 0.16);
  animation: liquidSplashDrop 700ms ease-out forwards;
}

/* hover extra glow */
.liquid-btn:hover .liquid-btn__blob {
  filter: drop-shadow(0 0 24px rgba(255, 191, 0, 0.48))
          drop-shadow(0 0 40px rgba(255, 191, 0, 0.24));
}

/* pulse keyframe */
@keyframes liquidGlowPulse {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 191, 0, 0.22))
            drop-shadow(0 0 18px rgba(255, 191, 0, 0.1));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 191, 0, 0.42))
            drop-shadow(0 0 34px rgba(255, 191, 0, 0.18));
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 191, 0, 0.22))
            drop-shadow(0 0 18px rgba(255, 191, 0, 0.1));
  }
}

/* wave ripple */
@keyframes liquidWaveRipple {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* click splash droplets */
@keyframes liquidSplashDrop {
  0% {
    transform: translate(0, 0) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(1.2);
    opacity: 0;
  }
}

/* responsive */
@media (max-width: 768px) {
  .liquid-btn {
    width: 250px;
    height: 135px;
  }

  .liquid-btn__text {
    font-size: 20px;
  }

  .liquid-btn__drop {
    width: 10px;
    height: 10px;
  }
}

/* auto scroll animation */
@keyframes aboutPosterAutoScroll {
  0% {
    transform:
      translate(-50%, -42%)
      rotateX(72deg)
      scale(1.38);
  }
  100% {
    transform:
      translate(-50%, -58%)
      rotateX(72deg)
      scale(1.38);
  }
}

/* tablet */
@media (max-width: 1024px) {
  .about-hero {
    height: 65vh;
  }

  .about-hero__poster-grid {
    width: 1600px;
    grid-template-columns: repeat(10, 120px);
    gap: 10px;
    top: 65%;
    animation: aboutPosterAutoScrollTablet 35s linear infinite;
  }

  .about-hero__poster-grid img {
    width: 120px;
    height: 180px;
  }
}

@keyframes aboutPosterAutoScrollTablet {
  0% {
    transform:
      translate(-50%, -42%)
      rotateX(72deg)
      scale(1.2);
  }
  100% {
    transform:
      translate(-50%, -58%)
      rotateX(72deg)
      scale(1.2);
  }
}

/* mobile */
@media (max-width: 768px) {
  .about-hero {
    height: 58vh;
  }

    .about-hero__poster-grid {
    width: 1200px;
    grid-template-columns: repeat(10, 100px); /* 🔥 smaller */
    gap: 8px;
    top: 70%;
    animation: aboutPosterAutoScrollMobile 30s linear infinite;
  }

  .about-hero__poster-grid img {
    width: 100px;
    height: 150px;
    border-radius: 10px;
  }

  .about-hero__title {
    font-size: clamp(34px, 8vw, 52px);
  }

  .about-hero__desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

@keyframes aboutPosterAutoScrollMobile {
  0% {
    transform: translate(-50%, -42%) rotateX(72deg) scale(1.1);}
  100% {
    transform: translate(-50%, -58%) rotateX(72deg) scale(1.1);}
}

@keyframes aboutPosterAutoScrollTablet {
  0% {
    transform: translate(-50%, -42%) rotateX(72deg) scale(1.2);}
  100% {
    transform: translate(-50%, -58%) rotateX(72deg) scale(1.2);}
}


/* ========================================
   ABOUT INTRO SECTION
======================================== */
.about-intro {
  background: #000;
  padding: 80px 20px;
}

.about-intro__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start; /* center -> start */
}

.about-intro__text {
  margin-top: -15px;
}

/* LEFT TEXT */
.about-intro__text h2 {
  color: #ffbf00;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-intro__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 18px;
}

.about-intro__btn {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(90deg, #ffbf00, #ff9f00);
  color: #000;
  transition: all 0.3s ease;
}

.about-intro__btn:hover {
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.about-intro__image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-intro__container {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ABOUT FEATURES (✔ list)
======================================== */
.about-intro__features {
  list-style: none;
  margin-top: 24px;
  padding: 0;
}

.about-intro__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #ffffff;
}

/* icon style */
.about-intro__icon {
  width: 26px;
  height: 26px;
  background: #ffbf00;
  box-shadow: 0 0 12px rgba(255,191,0,0.6);
  color: #000;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ========================================
   FOUNDER SECTION
======================================== */
.founder {
  background: #000000;
  padding: 80px 20px;
}

.founder__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.founder__image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
   /* 🔥 glow effect */
  box-shadow: 
    0 0 25px rgba(255,191,0,0.5),
    0 0 60px rgba(255,191,0,0.3),
    0 25px 60px rgba(0,0,0,0.7);
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 
      0 0 10px rgba(255,191,0,0.3),
      0 0 20px rgba(255,191,0,0.2);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(255,191,0,0.6),
      0 0 60px rgba(255,191,0,0.3);
  }
  100% {
    box-shadow: 
      0 0 10px rgba(255,191,0,0.3),
      0 0 20px rgba(255,191,0,0.2);
  }
}

/* CONTENT */
.founder__name {
  color: #ffbf00 !important;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 10px;
}

.founder__role {
  color: #ffffff !important;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}

.founder__content p {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .founder__container {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ACHIEVEMENTS SECTION
======================================== */
.achievements {
  background: #000;
  padding: 80px 20px;
}

.achievements .container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.achievements__title {
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 191, 0, 0.2);
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 10px 30px rgba(255, 191, 0, 0.2),
    0 0 20px rgba(255, 191, 0, 0.15);
}

.achievement-card__icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.achievement-card__number {
  font-size: 34px;
  font-weight: 800;
  color: #ffbf00;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255,191,0,0.4);
}

.achievement-card p {
  color: #ccc;
  font-size: 15px;
  margin: 0;
}

@media (max-width: 992px) {
  .achievements__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .achievements__title {
    font-size: 32px;
  }

  .achievements__grid {
    grid-template-columns: 1fr;
  }
}

.no-counter {
  letter-spacing: 1px;
}

/* ========================================
   TIMELINE SECTION
   - cinematic black + gold style
   - vertical line
   - glow dots
======================================== */
.timeline {
  background: #000;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.timeline__container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.timeline__header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline__subtitle {
  color: #ffbf00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.timeline__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}

.timeline__desc {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

/* timeline wrapper */
.timeline__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
}

/* vertical line */
.timeline__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 170px;
  width: 2px;
  animation: glowLine 3s ease-in-out infinite;
}

@keyframes glowLine {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* each timeline row */
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 40px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 46px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.timeline__item.show {
  opacity: 1;
  transform: translateY(0);
}

/* year */
.timeline__year {
  font-size: 26px;
  font-weight: 800;
  color: #ffbf00;
  text-align: right;
  line-height: 1;
  padding-top: 4px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.timeline__item:hover .timeline__year {
  transform: scale(1.1);
  color: #ffd84d;
}

/* dot */
.timeline__dot {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe38a, #ffbf00 60%, #ff9f1a);
  margin-top: 4px;
  z-index: 2;
  box-shadow:
    0 0 10px rgba(255, 191, 0, 0.55),
    0 0 22px rgba(255, 191, 0, 0.28);
}

/* optional pulse */
.timeline__dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 191, 0, 0.22);
  animation: timelinePulse 2.8s ease-out infinite;
}

.timeline__item:hover .timeline__dot {
  box-shadow:
    0 0 15px rgba(255, 191, 0, 0.9),
    0 0 35px rgba(255, 191, 0, 0.4);
}

/* content card */
.timeline__content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 191, 0, 0.12);
  border-radius: 18px;
  padding: 22px 24px;
  backdrop-filter: blur(8px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.timeline__content:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 191, 0, 0.28);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.42),
    0 0 20px rgba(255, 191, 0, 0.12);
}

.timeline__content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.timeline__content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

/* dot pulse */
@keyframes timelinePulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* tablet */
@media (max-width: 900px) {
  .timeline__list::before {
    left: 145px;
  }

  .timeline__item {
    grid-template-columns: 110px 34px 1fr;
    gap: 18px;
  }

  .timeline__year {
    font-size: 22px;
  }

  .timeline__content h3 {
    font-size: 20px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .timeline {
    padding: 70px 16px;
  }

  .timeline__header {
    margin-bottom: 42px;
  }

  .timeline__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .timeline__list::before {
    left: 18px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 44px;
    margin-bottom: 34px;
  }

  .timeline__year {
    text-align: left;
    font-size: 20px;
    padding-top: 0;
  }

  .timeline__dot {
    position: absolute;
    left: 9px;
    top: 6px;
    width: 16px;
    height: 16px;
  }

  .timeline__content {
    padding: 18px 18px;
  }

  .timeline__content h3 {
    font-size: 18px;
  }

  .timeline__content p {
    font-size: 14px;
  }
}


/* ========================================
   STRENGTHS + GROUP SECTION
======================================== */
.group-strength {
  background: #000;
  padding: 70px 20px 30px;
}

.group-strength__container {
  width: min(1250px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

.group-strength__subtitle {
  color: #ffbf00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.group-strength__title {
  color: #fff;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.6px;
}

.group-strength__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 620px;
}

/* ========================================
   MSK GROUP HOVER TEXT OVERLAY
======================================== */
.group-logo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 15, 0, 0.82),
    rgba(255, 191, 0, 0.32)
  );
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.35s ease;
  border-radius: 18px;
  border: 1px solid rgba(255, 191, 0, 0.42);
  box-shadow:
    0 0 20px rgba(255, 191, 0, 0.28),
    0 0 50px rgba(255, 191, 0, 0.15),
    inset 0 0 30px rgba(255, 191, 0, 0.1);
  z-index: 3;
}

.group-logo-card__overlay-text {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  /* subtle glow */
  text-shadow: 0 0 10px rgba(255, 191, 0, 0.15);
}

.group-logo-card__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;

  background: linear-gradient(
    90deg,
    #ffbf00,
    #ffd84d,
    #ffbf00
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  opacity: 0.6;
}

.group-logo-card:hover .group-logo-card__overlay {
  opacity: 1;
  transform: scale(1);
   box-shadow:
    0 0 25px rgba(255,191,0,0.45),
    0 0 60px rgba(255,191,0,0.2);
}

.group-logo-card img,
.group-logo-card h3,
.group-logo-card p {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.group-logo-card:hover img,
.group-logo-card:hover h3,
.group-logo-card:hover p {
  opacity: 0;
  transform: scale(0.96);
}


.group-logo-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -120%;
  width: 70%;
  height: 140%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 230, 150, 0.12) 35%,
    rgba(255, 245, 200, 0.35) 50%,
    rgba(255, 230, 150, 0.12) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.group-logo-card:hover::before {
  opacity: 1;
  animation: groupCardSweep 1.1s ease forwards;
}

@keyframes groupCardSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 150%;
  }
}

/* ========================================
   MSK GROUP SPARKS
======================================== */
.group-strength__right {
  position: relative;
}

.group-strength__sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.group-logos {
  position: relative;
  z-index: 2;
}

/* spark base */
.group-spark {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe38a 0%, #ffbf00 55%, rgba(255,191,0,0) 100%);
  box-shadow:
    0 0 8px rgba(255, 191, 0, 0.45),
    0 0 18px rgba(255, 191, 0, 0.18);
  opacity: 0.7;
  animation: groupSparkFloat 7s ease-in-out infinite;
}

/* positions */
.group-spark--1 {
  width: 8px;
  height: 8px;
  top: 14%;
  left: 10%;
  animation-delay: 0s;
}

.group-spark--2 {
  width: 6px;
  height: 6px;
  top: 8%;
  right: 18%;
  animation-delay: 1s;
}

.group-spark--3 {
  width: 10px;
  height: 10px;
  top: 46%;
  right: 6%;
  animation-delay: 2s;
}

.group-spark--4 {
  width: 7px;
  height: 7px;
  bottom: 22%;
  left: 12%;
  animation-delay: 0.5s;
}

.group-spark--5 {
  width: 9px;
  height: 9px;
  bottom: 10%;
  right: 28%;
  animation-delay: 1.5s;
}

.group-spark--6 {
  width: 6px;
  height: 6px;
  top: 58%;
  left: 42%;
  animation-delay: 2.5s;
}

/* motion */
@keyframes groupSparkFloat {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.35;
  }
  25% {
    transform: translateY(-10px) translateX(4px) scale(1.08);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-18px) translateX(-4px) scale(1.18);
    opacity: 1;
  }
  75% {
    transform: translateY(-10px) translateX(3px) scale(1.05);
    opacity: 0.75;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.35;
  }
}

/* ========================================
   OUR STRENGTHS - ORBIT STYLE
======================================== */
.strength-orbit .group-strength__title {
  margin-bottom: 26px;
}

.strength-orbit__wrap {
  position: relative;
  min-height: 680px;
  margin-top: 20px;
  --orbit-size: 460px;
  --orbit-radius: 230px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}
.strength-orbit__wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 191, 0, 0.14);
  box-shadow:
    0 0 120px rgba(255, 191, 0, 0.08);
}

.strength-orbit__wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.7;
  background: radial-gradient(
    circle at center,
    rgba(255, 191, 0, 0.25),
    rgba(255, 191, 0, 0.12) 40%,
    rgba(255, 191, 0, 0.05) 60%,
    transparent 75%
  );
  filter: blur(40px);
  mask: radial-gradient(circle, transparent 62%, black 64%);
  animation: orbitGlowRotate 16s linear infinite;
  box-shadow:
    0 0 40px rgba(255, 191, 0, 0.25),
    0 0 80px rgba(255, 191, 0, 0.15),
    inset 0 0 30px rgba(255, 191, 0, 0.1);
}

/* center panel */
.strength-orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 191, 0, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 191, 0, 0.18);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  z-index: 3;
   box-shadow:
    0 0 40px rgba(255, 191, 0, 0.2),
    0 0 80px rgba(255, 191, 0, 0.1),
    0 20px 50px rgba(0, 0, 0, 0.6);
}

.strength-orbit__center h3 {
  text-shadow: 0 2px 10px rgba(255,255,255,0.2);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.strength-orbit__center p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.strength-orbit__ring {
  position: absolute;
  inset: 0;
  animation: orbitRotate 40s linear infinite;
  z-index: 2;
}

.strength-orbit__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(var(--orbit-radius) * -1));
  transform-origin: center center;
}

/* IMPORTANT */
.strength-orbit__card-rotate {
  transform: rotate(calc(-1 * var(--angle)));
  animation: orbitCounterRotate 40s linear infinite;
  transform-origin: center center;
}

.strength-orbit__card {
  width: 210px;
  min-height: 120px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 191, 0, 0.14);
  backdrop-filter: blur(12px);
  padding: 18px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.4),
    0 0 10px rgba(255, 191, 0, 0.08);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.strength-orbit__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,191,0,0.15),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.strength-orbit__card:hover::before {
  opacity: 1;
}

/* hover card only */
.strength-orbit__card:hover {
  transform: scale(1.08);
  border-color: rgba(255, 191, 0, 0.5);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 191, 0, 0.3);
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitCounterRotate {
  from { transform: rotate(calc(-1 * var(--angle))) rotate(0deg); }
  to { transform: rotate(calc(-1 * var(--angle))) rotate(-360deg); }
}


.strength-orbit__card:hover .strength-orbit__icon {
  box-shadow: 0 0 25px rgba(255, 191, 0, 0.6);
  transform: scale(1.1);
}

.strength-orbit__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd54a, #ffbf00);
  color: #111;
  font-size: 22px;
  box-shadow: 0 0 14px rgba(255, 191, 0, 0.25);
  animation: iconPulse 2.5s ease-in-out infinite;
}


@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(255, 191, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 191, 0, 0.6);
  }
}

.strength-orbit__card h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

/* ========================================
   ORBIT PARTICLES / LIGHT SPARKS
======================================== */
.strength-orbit__sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* base spark */
.spark {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe38a 0%, #ffbf00 55%, rgba(255,191,0,0) 100%);
  box-shadow:
    0 0 8px rgba(255, 191, 0, 0.45),
    0 0 18px rgba(255, 191, 0, 0.18);
  opacity: 0.7;
  animation: sparkFloat 7s ease-in-out infinite;
}

/* individual particle positions */
.spark--1 {
  width: 8px;
  height: 8px;
  top: 12%;
  left: 32%;
  animation-delay: 0s;
}

.spark--2 {
  width: 6px;
  height: 6px;
  top: 20%;
  right: 18%;
  animation-delay: 1s;
}

.spark--3 {
  width: 10px;
  height: 10px;
  top: 45%;
  right: 6%;
  animation-delay: 2s;
}

.spark--4 {
  width: 7px;
  height: 7px;
  bottom: 18%;
  right: 22%;
  animation-delay: 0.5s;
}

.spark--5 {
  width: 9px;
  height: 9px;
  bottom: 10%;
  left: 36%;
  animation-delay: 1.5s;
}

.spark--6 {
  width: 6px;
  height: 6px;
  bottom: 26%;
  left: 8%;
  animation-delay: 2.5s;
}

.spark--7 {
  width: 8px;
  height: 8px;
  top: 38%;
  left: 6%;
  animation-delay: 3s;
}

.spark--8 {
  width: 5px;
  height: 5px;
  top: 6%;
  left: 55%;
  animation-delay: 3.5s;
}

/* movement animation */
@keyframes sparkFloat {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.35;
  }
  25% {
    transform: translateY(-10px) translateX(4px) scale(1.08);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-18px) translateX(-4px) scale(1.18);
    opacity: 1;
  }
  75% {
    transform: translateY(-10px) translateX(3px) scale(1.05);
    opacity: 0.75;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.35;
  }
}


/* tablet */
@media (max-width: 1200px) {
  .strength-orbit__wrap {
    min-height: 700px;
  }

  .strength-orbit__center {
    width: 240px;
    height: 240px;
  }

  .strength-orbit__center h3 {
    font-size: 28px;
  }

  .strength-orbit__item {
    width: 180px;
    min-height: 110px;
  }

  .strength-orbit__item h4 {
    font-size: 16px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .strength-orbit__wrap {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .strength-orbit__center,
  .strength-orbit__item {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none !important;
    width: 100%;
  }

  .strength-orbit__center {
    height: auto;
    border-radius: 24px;
    padding: 26px 20px;
  }

  .strength-orbit__item {
    min-height: auto;
  }
}

/* right side logos */
.group-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 18px;
}

.group-logo-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 191, 0, 0.14);
  padding: 28px 18px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.group-logo-card.show {
  opacity: 1;
  transform: translateY(0);
}

.group-logo-card:hover {
  border-color: rgba(255, 191, 0, 0.28);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(255, 191, 0, 0.18);
}

.group-logo-card img {
  max-width: 130px;
  max-height: 95px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 191, 0, 0.08));
}

.group-logo-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.group-logo-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  margin: 0;
}

/* tablet */
@media (max-width: 992px) {
  .group-strength__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .group-strength {
    padding: 70px 16px;
  }

  .group-strength__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .strength-cards,
  .group-logos {
    grid-template-columns: 1fr;
  }

  .strength-card h3,
  .group-logo-card h3 {
    font-size: 18px;
  }

  .group-logo-card {
    min-height: auto;
  }
}


/* ======================================================================
   NEWSLETTER SECTION
====================================================================== */
.newsletter {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 60px 30px;
}

/* soft ambient background glow */
.newsletter::before,
.newsletter::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
}

.newsletter::before {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 40px;
  background: rgba(255, 210, 70, 0.18);
}

.newsletter::after {
  width: 360px;
  height: 360px;
  right: -100px;
  bottom: -60px;
  background: rgba(80, 110, 255, 0.18);
}

/* yellow card */
.newsletter__container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  background: linear-gradient(90deg, #fcff9e 0%, #c67700 100%);
  border-radius: 22px;
  padding: 42px 50px;
  animation: newsletterFloat 4.8s ease-in-out infinite;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(255, 210, 70, 0.18),
    0 0 70px rgba(255, 200, 0, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* hover lift */
.newsletter__container:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.24),
    0 0 36px rgba(255, 220, 90, 0.28),
    0 0 90px rgba(255, 190, 0, 0.18);
}

/* animated outline glow */
.newsletter__container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 220, 90, 0.18),
    rgba(255, 170, 0, 0.18),
    rgba(255, 255, 255, 0.08)
  );
  z-index: -1;
  filter: blur(14px);
  opacity: 0.9;
}

/* subtle shine sweep */
.newsletter__container::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 35%;
  height: 180%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(18deg) translateX(-220%);
  animation: newsletterShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.newsletter__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter__text {
  max-width: 520px;
}

.newsletter__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.15;
}

.newsletter__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.92);
  max-width: 420px;
}

.newsletter__form {
  flex: 1;
  max-width: 570px;
  display: flex;
  align-items: center;
  gap: 0;
}

.newsletter__form input {
  flex: 1;
  height: 52px;
  padding: 0 20px;
  border: none;
  border-radius: 14px 0 0 14px;
  background: #ececec;
  color: #1e2430;
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.newsletter__form input::placeholder {
  color: #5f6673;
}

.newsletter__form button {
  height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: 0 14px 14px 0;
  background: #6d3100;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 8px 18px rgba(2, 10, 54, 0.22);
}

.newsletter__form button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  box-shadow: 0 12px 24px rgba(2, 10, 54, 0.3);
}

/* floating animation */
@keyframes newsletterFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* shine animation */
@keyframes newsletterShine {
  0% {
    transform: rotate(18deg) translateX(-220%);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  40% {
    transform: rotate(18deg) translateX(520%);
    opacity: 0;
  }
  100% {
    transform: rotate(18deg) translateX(520%);
    opacity: 0;
  }
}


.newsletter__message {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #3f210b;
}

/* Responsive */
@media (max-width: 900px) {
  .newsletter__container {
    padding: 30px 24px;
  }

  .newsletter__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter__form {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .newsletter {
    padding: 40px 16px;
  }

  .newsletter__container {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .newsletter__title {
    font-size: 28px;
  }

  .newsletter__desc {
    font-size: 15px;
  }

  .newsletter__form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter__form input,
  .newsletter__form button {
    width: 100%;
    border-radius: 12px;
  }

  .newsletter__form button {
    justify-content: center;
  }
}

/* mobile reduce motion feel */
@media (max-width: 768px) {
  .newsletter__container {
    animation: newsletterFloatMobile 5.2s ease-in-out infinite;
  }

  .newsletter__container::after {
    animation-duration: 6.5s;
  }
}

@keyframes newsletterFloatMobile {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0px);
  }
}