body {
  font-family: "Inter", sans-serif;
}

/* =========================
   HERO SECTION
========================= */

/* .premium-hero-section {

  position: relative;

  min-height: 80vh;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  background:
  linear-gradient(
    180deg,
    #eef4ff 0%,
    #dff4ff 100%
  );
} */
.premium-hero-section {

  position: relative;

  height: 80vh;

  overflow: hidden;

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

  background:
    linear-gradient(180deg,
      #eef4ff 0%,
      #dff4ff 100%);
}

/* =========================
   MOVING BACKGROUND
========================= */

.hero-bg-slider {

  position: absolute;

  inset: 0;

  overflow: hidden;

  z-index: 1;
}

.hero-bg-slideshow {

  position: absolute;

  inset: 0;

  z-index: 1;
}

/* SINGLE SLIDE */

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;

  opacity: 0;

  transform: scale(1.08);

  transition:
    opacity 1.6s ease,
    transform 6s ease;

  z-index: 1;
}

.hero-slide-img {

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter: blur(1px) brightness(0.78);

  display: block;
}

/* ACTIVE */

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* TRACK */

.hero-track {

  display: flex;

  align-items: center;

  gap: 28px;

  width: max-content;

  position: absolute;

  top: 50%;

  transform: translateY(-50%);
}

/* IMAGES */

.hero-track img {

  width: 340px;

  height: 220px;

  object-fit: cover;

  border-radius: 24px;

  opacity: 1;

  filter:
    blur(0.2px) saturate(1.5);

  transform: scale(0.92);

  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.35);

  transition: all 0.5s ease;
}

/* CONTINUOUS LEFT MOVEMENT */

.hero-track-1 {

  animation:
    heroMarquee 55s linear infinite;
}

/* LOOP ANIMATION */

@keyframes heroMarquee {

  from {
    transform:
      translateY(-50%) translateX(0);
  }

  to {
    transform:
      translateY(-50%) translateX(-50%);
  }
}

/* =========================
   OVERLAY
========================= */

/* .hero-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(15, 23, 42, 0.38) 0%,
      rgba(15, 23, 42, 0.52) 100%);

  backdrop-filter: blur(3px);

  z-index: 2;
} */

/* .hero-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.38) 0%,
      rgba(255,255,255,0.50) 100%
    );

  backdrop-filter: blur(1px);

  z-index: 2;
} */

.hero-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(56, 56, 56, 0.45) 0%,
      rgba(19, 19, 19, 0.52) 100%);

  backdrop-filter: blur(1px);

  z-index: 3;
}

/* =========================
   CONTENT
========================= */

.hero-content {

  position: relative;

  z-index: 5;

  max-width: 900px;

  margin: auto;
}

/* BADGE */

.hero-badge {

  display: inline-flex;

  align-items: center;

  padding: 10px 22px;

  border-radius: 999px;

  background: rgba(110, 149, 184, 0.459);

  border: 1px solid rgba(162, 173, 179, 0.84);

  color: #ffffff;
  font-weight: 700;
  backdrop-filter: 20px blur(10px);

  font-size: 13px;

  letter-spacing: 2px;

  margin-bottom: 28px;

  backdrop-filter: blur(10px);
}

/* TITLE */

/* .premium-hero-title {

  font-size: 78px;

  line-height: 1.05;

  font-weight: 800;

  color: #ffffff;
  color: #0f1729;

  margin-bottom: 28px;

  letter-spacing: -3px;
} */

/* .premium-hero-title {

  font-size: 78px;

  line-height: 1.05;

  font-weight: 800;

  color: #dc7901;

  margin-bottom: 28px;

  letter-spacing: -3px;
} */

.premium-hero-title {

  font-size: 5rem;

  font-weight: 800;

  line-height: 1.05;

  letter-spacing: -3px;

  background:
    linear-gradient(135deg,
      #fff8d6 0%,
      #ffe58a 18%,
      #ffd54f 35%,
      #fff4b0 50%,
      #ffcf33 65%,
      #fff1a8 82%,
      #d4a017 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  color: transparent;

  text-shadow:
    0 2px 10px rgba(255, 215, 0, 0.18),
    0 4px 30px rgba(255, 193, 7, 0.12);

  position: relative;
}

.premium-hero-title::after {

  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 60%;

  height: 100%;

  background:
    linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.75) 50%,
      transparent 100%);

  transform: skewX(-20deg);

  animation: goldShine 4s linear infinite;
}

@keyframes goldShine {

  0% {
    left: -120%;
  }

  100% {
    left: 140%;
  }
}

/* SUBTITLE */

/* .premium-hero-subtitle {

  font-size: 21px;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.78);
  color: #4b5563;

  max-width: 760px;

  margin:
    0 auto 40px;
} */
.premium-hero-subtitle {

  font-size: 21px;

  line-height: 1.8;

  color: #ffffff;

  max-width: 760px;

  margin:
    0 auto 40px;
}

/* BUTTON */

.premium-hero-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 34px;

  border-radius: 14px;

  background: #2563eb;

  color: white;

  font-size: 16px;

  font-weight: 600;

  text-decoration: none;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;

  box-shadow:
    0 20px 40px rgba(37, 99, 235, 0.30);
}

.premium-hero-btn:hover {

  background: #1d4ed8;

  color: #fff;

  transform: translateY(-4px);

  text-decoration: none;

  box-shadow:
    0 25px 50px rgba(37, 99, 235, 0.45);
}

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

@media (max-width: 1200px) {

  .premium-hero-title {

    font-size: 64px;
  }
}

@media (max-width: 991px) {

  .premium-hero-section {

    min-height: 90vh;

    padding: 100px 0;
  }

  .premium-hero-title {

    font-size: 52px;
  }

  .premium-hero-subtitle {

    font-size: 18px;
  }

  .hero-track img {

    width: 260px;
    height: 170px;
  }
}

@media (max-width: 767px) {

  .premium-hero-title {

    font-size: 40px;

    line-height: 1.15;
  }

  .premium-hero-subtitle {

    font-size: 16px;

    line-height: 1.7;
  }

  .hero-track img {

    width: 200px;
    height: 140px;

    border-radius: 18px;
  }

  .premium-hero-btn {

    padding: 14px 28px;
  }
}

@media (max-width: 480px) {

  .premium-hero-title {

    font-size: 32px;
  }

  .hero-track img {

    width: 170px;
    height: 120px;
  }
}

/* Section Background */
.journey-section {
  position: relative;
  padding: 40px 0 50px;
  background: linear-gradient(94.29deg, #EDE3FF 0%, #AAF0FD 100%);
  overflow: hidden;
}


/* ============= TOP: BADGE + HEADING + PARA (FIXED) ============= */
/* Fixed text block sits on the RIGHT half, just like the Figma */
.journey-top {
  padding-left: 38%;
  padding-right: 0;
  margin-bottom: 0;
}

.journey-badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 999px;
  background: #0066FF1A;
  color: #0066FF;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  margin-bottom: 22px;
  border: 1px solid #0066FF33;
}

.journey-heading {
  font-size: 54px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 18px;
  letter-spacing: -0.9px;
  color: #0F1729;
}

.journey-paragraph {
  font-size: 18px;
  color: #000000;
  line-height: 29.25px;
  max-width: 720px;
  margin: 0;
}

/* ============= MAIN STAGE (image + big year) ============= */
.journey-stage {
  position: relative;
  min-height: 420px;
  margin-top: -120px;
  /* polaroid overlaps the top text area */
}

/* Polaroid image */
.journey-photo-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  max-width: 42%;
  padding: 14px 14px 14px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow:
    0 18px 40px -12px rgba(20, 30, 80, 0.28),
    0 6px 14px rgba(20, 30, 80, 0.12);
  transform: rotate(-4deg);
  z-index: 3;
}

.journey-photo-wrap .photo-inner {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #d8d8d8;
}

/* .journey-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

.journey-photo-wrap .photo-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #d8d8d8;
}

/* BOTH IMAGES STACKED */

.journey-img {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 4s ease;

  transform: scale(1.03);

  will-change:
    opacity,
    transform;

  backface-visibility: hidden;
}

/* ACTIVE IMAGE */

.journey-img.active {

  opacity: 1;

  transform: scale(1);
}

/* Big year typography */
.journey-year {
  position: absolute;
  top: 130px;
  left: 38%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 240px;
  font-weight: 800;
  letter-spacing: -6px;
  line-height: 1;
  /* background: linear-gradient(180deg, #2057ff 0%, #6aa2ff 60%, #cfe0ff 100%); */
  background: linear-gradient(180deg, #0066FF 43.75%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  z-index: 2;
  user-select: none;
  pointer-events: none;
}

/* Bottom small heading + text (right side) */
.journey-detail {
  position: absolute;
  left: 38%;
  bottom: 4px;
  max-width: 520px;
  z-index: 4;
}

/* .journey-detail .detail-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--journey-text);
      margin-bottom: 6px;
    } */

.journey-detail .detail-text {
  font-size: 15px;
  color: #0066FF;
  line-height: 1.5;
  font-weight: 500;
}

/* ============= TIMELINE ============= */
.journey-timeline-wrap {
  position: relative;
  margin-top: 40px;
  padding: 0 10px;
}

.journey-timeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 18px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #0066FF;
  transform: translateY(-50%);
  z-index: 1;
}

.journey-dot {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000000;
  border: 0;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: transform 0.25s ease, background 0.25s ease,
    box-shadow 0.25s ease;
}

.journey-dot:focus {
  outline: none;
}

.journey-dot:hover {
  transform: scale(1.15);
}

.journey-dot.is-active {
  background: #0066FF;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.18);
  transform: scale(1.05);
}

.journey-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  position: relative;
}

.journey-label {
  width: 16px;
  display: flex;
  justify-content: center;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  transform: translateX(-50%);
  transition:
    color 0.25s ease,
    font-weight 0.25s ease;
}

.journey-label.is-active {
  color: #0F1729;
  font-weight: 700;
}

/* ============= ANIMATIONS ============= */
/* Image: fades + slides DOWN from above */
@keyframes journeyImageIn {
  0% {
    opacity: 0;
    transform: translateY(-290px) rotate(-4deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(-4deg);
  }
}

/* Year: slides from LEFT */
@keyframes journeyYearIn {
  0% {
    opacity: 0;
    transform: translateX(-620px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Detail text: slides from RIGHT */
@keyframes journeyDetailIn {
  0% {
    opacity: 0;
    transform: translateX(520px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.anim-photo {
  animation: journeyImageIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-year {
  animation: journeyYearIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-detail {
  animation: journeyDetailIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-paragraph {
  animation:
    journeyDetailIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1199px) {
  .journey-year {
    font-size: 200px;
    top: 120px;
  }

  .journey-photo-wrap {
    width: 320px;
  }

  .journey-heading {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .journey-section {
    padding: 60px 0 70px;
  }

  .journey-top {
    padding-left: 42%;
  }

  .journey-heading {
    font-size: 28px;
  }

  .journey-paragraph {
    font-size: 14px;
  }

  .journey-stage {
    min-height: 360px;
    margin-top: -80px;
  }

  .journey-photo-wrap {
    width: 280px;
    max-width: 45%;
  }

  .journey-year {
    font-size: 150px;
    left: 42%;
    top: 100px;
    letter-spacing: -4px;
  }

  .journey-detail {
    left: 42%;
    max-width: 56%;
  }

  .journey-detail .detail-title {
    font-size: 15px;
  }

  .journey-detail .detail-text {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .journey-section {
    padding: 50px 0 60px;
  }

  /* Top text becomes centered & full-width on mobile */
  .journey-top {
    padding-left: 0;
    text-align: center;
  }

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

  .journey-paragraph {
    font-size: 14px;
    margin: 0 auto;
  }

  /* Stage stacks vertically on mobile */
  .journey-stage {
    min-height: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Reset positioning so they stack */
  .journey-photo-wrap,
  .journey-year,
  .journey-detail {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .journey-photo-wrap {
    width: 78%;
    max-width: 320px;
    margin: 0 auto;
  }

  .journey-photo-wrap img {
    will-change: transform, opacity;
    backface-visibility: hidden;
  }

  .journey-photo-wrap img {
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .journey-year {
    font-size: 110px;
    margin-top: 18px;
    text-align: center;
    letter-spacing: -3px;
  }

  .journey-detail {
    max-width: 100%;
    margin-top: 4px;
    text-align: center;
  }

  .journey-label {
    font-size: 11px;
  }

  /* Animations on mobile use slightly smaller offsets */
  @keyframes journeyImageIn {
    0% {
      opacity: 0;
      transform: translateY(-50px) rotate(-4deg);
    }

    100% {
      opacity: 1;
      transform: translateY(0) rotate(-4deg);
    }
  }

  @keyframes journeyYearIn {
    0% {
      opacity: 0;
      transform: translateX(-60px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes journeyDetailIn {
    0% {
      opacity: 0;
      transform: translateX(60px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@media (max-width: 480px) {
  .journey-year {
    font-size: 84px;
  }
}

.gallery-section {
  background: #f3f4f6;
  padding: 30px 0;
}

/* HEADING */

.gallery-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #3b82f6;
  font-weight: 600;
}

.gallery-title {
  font-size: 38px;
  font-weight: 700;
  margin: 10px 0 30px;
  color: #111827;
}

/* FILTERS */

.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gallery-filters button {
  border: none;
  background: #e5e7eb;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-filters button.active {
  background: #2563eb;
  color: white;
}

/* GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


/* CARD */

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGE WRAP */

.gallery-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #f2f2f2;
}

/* SLIDER */

.gallery-flip-slider {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
}

/* IMAGES */

.gallery-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  transform:
    rotateY(90deg) scale(0.95);

  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease;

  backface-visibility: hidden;

  will-change:
    transform,
    opacity;
}

/* ACTIVE */

.gallery-slide.active {
  opacity: 1;

  transform:
    rotateY(0deg) scale(1);
}

/* HOVER */

.gallery-card:hover {
  transform: translateY(-5px);
  transition: 0.4s ease;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-img-wrap {
    height: 240px;
  }
}

@media (max-width: 768px) {

  .gallery-title {
    font-size: 30px;
  }

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

  .gallery-filters {
    justify-content: center;
  }

  .gallery-img-wrap {
    height: 220px;
  }
}

@media (max-width: 576px) {

  .gallery-img-wrap {
    height: 200px;
  }

  .gallery-title {
    font-size: 26px;
  }
}

/* CARD */
.card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* OVERLAY (MATCH IMAGE STYLE) */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(37, 99, 235, 0.95) 0%,
      rgba(37, 99, 235, 0.6) 40%,
      transparent 80%);
  opacity: 0;
  transition: 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.card:hover .overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
  transform: translateY(20px);
  transition: 0.3s;
}

.card:hover .overlay-content {
  transform: translateY(0);
}

.overlay h4 {
  font-size: 18px;
  margin: 0 0 5px;
}

.overlay p {
  font-size: 13px;
  opacity: 0.9;
}

/* PAGINATION */
.pagination {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.pagination button {
  border: none;
  background: #2563eb;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

#pageInfo {
  font-size: 14px;
  color: #6b7280;
}

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

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filters {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.img-loading {
  filter: blur(8px);
  transform: scale(1.05);
}

.card img {
  transition: 0.4s ease;
}

/* SECTION */
.awards-section {
  padding: 30px 0;
  text-align: center;
  background: linear-gradient(94deg, #EDE3FF 0%, #AAF0FD 100%);
  overflow: hidden;
}

.section-subtitle {
  font-size: 14px;
  color: #0066FF;
  letter-spacing: 1.4px;
  line-height: 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0F1729;
  margin-bottom: 40px;
}

/* SLIDER */
.awards-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.awards-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.awards-track {
  display: flex;
  align-items: center;
  gap: 22px;
  will-change: transform;
  backface-visibility: hidden;
}

/* CARD */
/* .award-item {
  flex: 0 0 calc(20% - 18px);
  transition:
    transform 0.6s ease,
    width 0.6s ease,
    flex 0.6s ease;
  position: relative;
  z-index: 1;
  transform: scale(0.92);
}

.award-item img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
} */

.award-item {
  flex: 0 0 calc(20% - 18px);
  position: relative;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease;
  transform-origin: center center;
  z-index: 1;
}

/* IMAGE */
.award-item img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition:
    box-shadow 0.7s ease,
    transform 0.7s ease;
}

/* CENTER ACTIVE SCALE */
.award-item.active {
  transform: scale(1.21);
  z-index: 20;
}

.award-item.active img {
  box-shadow:
    0 25px 60px rgba(88, 74, 74, 0.22),
    0 10px 25px rgba(72, 143, 214, 0.15);
}

/* =========================
   LEVEL 1
   (1st & 5th)
========================= */
.level-1 {
  transform: scale(0.76);
  opacity: 0.75;
  z-index: 1;
}

/* =========================
   LEVEL 2
   (2nd & 4th)
========================= */
.level-2 {
  transform: scale(0.94);
  opacity: 0.92;
  z-index: 5;
}

/* =========================
   LEVEL 3
   CENTER IMAGE
========================= */
.level-3 {
  transform: scale(1.16);
  z-index: 20;
}

.level-3 img {
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.20),
    0 12px 30px rgba(37, 99, 235, 0.14);
}

.awards-track {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 35px 0;
  will-change: transform;
}

/* TABLET */
@media (max-width: 991px) {

  .award-item {
    flex: 0 0 calc(33.333% - 15px);
  }

  .section-title {
    font-size: 30px;
  }
}

/* MOBILE */

@media (max-width: 767px) {

  .award-item {
    flex: 0 0 calc(50% - 12px);
  }

  .award-item img {
    height: 140px;
  }

  .section-title {
    font-size: 24px;
  }
}

/* ================================
   TEAM & CULTURE
================================ */

.culture-card {
  border: none;
  background: transparent;
}

.culture-card img {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
  display: block;
}


/* ================================
   CULTURE IMAGE FLIP SLIDER
================================ */

.img-container {

  position: relative;

  border-radius: 18px;

  overflow: hidden;

  height: 280px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12);

  background: #f2f2f2;
}

/* SLIDER */

.culture-flip-slider {

  position: relative;

  width: 100%;
  height: 100%;

  perspective: 1200px;
}

/* ALL IMAGES */

.culture-slide {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  display: block;

  transform:
    rotateY(90deg) scale(0.95);

  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;

  backface-visibility: hidden;

  will-change:
    transform,
    opacity;
}

/* ACTIVE IMAGE */

.culture-slide.active {

  opacity: 1;

  transform:
    rotateY(0deg) scale(1);
}

/* PREMIUM HOVER */

.img-container:hover {

  transform: translateY(-4px);

  transition: 0.4s ease;
}

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

@media (max-width: 991px) {

  .img-container {

    height: 240px;
  }
}

@media (max-width: 767px) {

  .img-container {

    height: 220px;
  }

  .section-title {

    font-size: 30px;
  }
}

@media (max-width: 575px) {

  .img-container {

    height: 200px;
  }

  .section-title {

    font-size: 26px;
  }

  .section-subtitle {

    font-size: 12px;
  }
}






.subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 50px 0;
  color: #111827;
}

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

.milestone-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  border: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.milestone-card:hover {
  background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
  border: none;
}

.card-content {
  display: flex;
  align-items: center;
  text-align: left;
}

.icon-container {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.icon-container i {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.first-card .icon-container i,
.first-card .number {
  color: #2563eb;
}

.second-card .icon-container i,
.second-card .number {
  color: #0ea5e9;
}

.third-card .icon-container i,
.third-card .number {
  color: #8b5cf6;
}

.fourth-card .icon-container i,
.fourth-card .number {
  color: #f97316;
}

.fifth-card .icon-container i,
.fifth-card .number {
  color: #06b6d4;
}

.text-container {
  display: flex;
  flex-direction: column;
}

.number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.description {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

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

@media (max-width: 768px) {
  .milestone-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .title {
    font-size: 28px;
  }

  .milestone-card {
    justify-content: flex-start;
    padding: 20px;
  }
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #d7e3ff 0%, #dbfeff 50%, #dfe9ff 100%);
  border-radius: 20px;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1e2a;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 16px;
  color: #5f6672;
  margin-bottom: 35px;
}

.btn-group-custom {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary-custom {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.2s;
}

.btn-primary-custom:hover {
  background-color: #0056b3;
  text-decoration: none;
  color: #fff;
}

.btn-outline-custom {
  background-color: transparent;
  color: #4a5568;
  border: 1px solid #cbd5e0;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-outline-custom:hover {
  background-color: #f7fafc;
  border-color: #a0aec0;
  text-decoration: none;
  color: #1a202c;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 28px;
  }

  .btn-group-custom {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    max-width: 250px;
  }
}