/* ============================================================
   LAYOUT.CSS - Page Structure & Grid Systems
   AVGC XR Solutions Design System v3.0
   ============================================================ */

/* ---------- Container ---------- */
.container {
  max-width: var(--page-inner);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 80%;
  height: 100%;
}

.hero .container {
  display: flex;
  align-items: center;
}

/* Mobile: horizontal scroll band karo */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  img,
  video,
  iframe,
  svg,
  canvas,
  table {
    max-width: 100%;
  }

  .container {
    width: 80% !important;
    padding-left: var(--gutter) !important;
    padding-right: var(--gutter) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.container--fluid {
  max-width: 100%;
  padding: 0;
}

.container--narrow {
  max-width: 1200px;
}

/* ---------- Section ---------- */
.section {
  padding: var(--section-padding-y) 0;
  padding-bottom: 4rem;
  position: relative;
}

.section--sm {
  padding: var(--section-padding-y-sm) 0;
}

.section--lg {
  padding: var(--section-padding-y-lg) 0;
}

.section--no-padding {
  padding: 0;
}

.section--alt {
  background-color: var(--color-surface-alt);
  /* color: var(--color-white); */
}

.section--dark {
  background-color: #1a2744;
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 860px;
  /* FIX: 800px se badha ke 860px — wide screens pe title wrap nahi hoga */
  margin: 0 auto var(--spacing-12);
  width: 100%;
  /* FIX: ensure it doesn't overflow on narrow screens */
}

@media (min-width: 1400px) {
  .section__header {
    max-width: 1100px;
  }
}

.section__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-regular);
  max-width: 750px;
  margin: 0 auto;
}

/* ---------- Grid System ---------- */
.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid--2cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5cols {
  grid-template-columns: repeat(5, 1fr);
}

.grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Grid Responsive */
@media (max-width: 1200px) {
  .grid--5cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .grid--4cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid--2cols,
  .grid--3cols,
  .grid--4cols,
  .grid--5cols {
    grid-template-columns: 1fr;
  }

  .grid--auto-fit {
    grid-template-columns: 1fr;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 91vh;
  min-height: unset;
  padding: clamp(30px, 4vh, 60px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-sizing: border-box;
}

/* index page */
.hero--centered {
  background: var(--color-surface);
}

/* Service / sub-pages (2D, 3D, Junior, Workshops, etc.) */
.hero--sub .hero__content {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 0;
}

.hero--sub .container {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero--sub .hero__content {
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 70% at 85% 40%, rgba(42, 122, 122, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(245, 166, 35, 0.05) 0%, transparent 60%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-20);
  align-items: center;
  justify-items: start;
  position: relative;
  z-index: var(--z-elevate);
  min-height: calc(91vh - clamp(60px, 8vh, 120px));
  height: 100%;
  width: 100%;
}

.hero__content {
  max-width: 100%;
  width: 100%;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-self: left;
  align-items: flex-start;
  gap: 0;
}

.hero--centered.hero--centered--left {
  text-align: left;
}

.hero--centered.hero--centered--left .hero__content {
  margin: 0;
  align-items: flex-start;
}

.hero--centered.hero--centered--left .hero__stats {
  justify-content: flex-start;
}

.hero--centered.hero--centered--left .hero__breadcrumb {
  justify-content: flex-start;
}

.hero--centered.hero--centered--left .hero__title,
.hero--centered.hero--centered--left .hero__subtitle,
.hero--centered.hero--centered--left .hero__description {
  text-align: left;
}

.hero__title {
  margin-bottom: var(--spacing-4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #fff;
  width: fit-content;
  max-width: 90vw;
}

.hero__subtitle {
  margin-bottom: var(--spacing-4);
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  color: #fff;
  width: fit-content;
  max-width: 90vw;
}

.hero--sub .hero__title,
.hero--sub .hero__subtitle {
  width: fit-content;
  max-width: 90vw;
}

.hero__headline {
  margin-bottom: 0;
}

/* .hero__description {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.8rem 1rem;
} */

.hero__stats {
  display: flex;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-8);
}

.hero__stat-number {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: var(--spacing-1);
}

.hero__cta-mobile {
  display: none;
}

@media (max-width: 480px) {
  .hero--index {
    height: auto !important;
    min-height: 100vh;
    padding-top: calc(var(--header-h, 72px) + 1.5rem);
    padding-bottom: 3rem;
  }

  .hero--index .hero__title {
    margin-top: 1rem;
  }

  .hero--index .hero__slide-dots {
    bottom: 1.7rem;
  }

  .hero--index .hero__slide-label {
    bottom: 0.2rem;
  }
}


/* Hero Responsive */
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: var(--spacing-8);
    justify-items: center;
    /* ← hero content horizontally centre */
  }

  .hero__content {
    max-width: 600px;
    /* ← too wide nahi hoga, readable rahega */
    width: 100%;
    align-items: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__cta-mobile {
    display: inline-flex;
    margin-top: var(--spacing-4);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero__title {
    font-size: var(--font-size-xl);
  }

  .hero__subtitle {
    font-size: var(--font-size-lg);
  }

  .hero__stats {
    gap: var(--spacing-4);
    flex-wrap: wrap;
  }
}

@media (min-width: 1400px) {
  .hero--centered .hero__title {
    max-width: min(1100px, 90vw);
    text-align: center;
  }
}

@media (min-width: 1600px) {
  .hero--centered .hero__title {
    max-width: min(1300px, 90vw);
  }
}

/* Centered Hero (Service Pages) */
.hero--centered {
  text-align: center;
}

.hero--centered .hero__content {
  margin: 0 auto;
}

.hero--centered .hero__stats {
  justify-content: center;
}

.hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.4rem 1rem;
}

.hero__breadcrumb a {
  color: #fff;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.hero__breadcrumb a:hover {
  opacity: 1;
}

/* ---------- Page Content Wrapper ---------- */
.page-content {
  padding-top: 4rem;
  position: relative;
  z-index: var(--z-elevate);
}

@media (max-width: 768px) {
  .page-content {
    padding-top: 2rem;
    /* mobile pe hero khud handle karta hai */
  }
}

/* ---------- Services Grid Section ---------- */
.services-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Flip Grid (Service Details) ---------- */
.flip-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
}

.flip-grid__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-12);
  align-items: stretch;
  /* ← 'center' se 'stretch' karo */
}

.flip-grid__row--reverse .flip-grid__media {
  order: -1;
}

.flip-grid__row--reverse .flip-grid__content {
  direction: ltr;
  /* safety ke liye rakha */
  order: 1;
}

.flip-grid__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

.flip-grid__number {
  font-size: var(--font-size-7xl);
  font-weight: var(--font-weight-extrabold);
  color: rgba(26, 39, 68, 0.06);
  line-height: 1;
  margin-bottom: var(--spacing-2);
}

.flip-grid__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-tight);
}

.flip-grid__description {
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.flip-grid__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2);
  margin-top: var(--spacing-2);
}

@media (max-width: 768px) {
  .flip-grid__row {
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
    width: 100%;
    overflow: hidden;
  }

  .flip-grid__row--reverse {
    direction: ltr;
  }

  /* Mobile pe hamesha: content pehle, card baad mein */
  .flip-grid__row--reverse .flip-grid__media {
    order: 1;
  }

  .flip-grid__row--reverse .flip-grid__content {
    order: 0;
  }

  .flip-grid__title {
    font-size: var(--font-size-2xl);
    white-space: normal;
    word-break: break-word;
  }

  .flip-grid__tags {
    flex-wrap: wrap;
    overflow: hidden;
  }

  .flip-grid__content,
  .flip-grid__media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .card--service-detail {
    width: 100%;
    max-width: 100%;
  }

  .card__footer {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .services-section .container,
  .services-section [class*="container"] {
    width: 80% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
  }
}

/* ---------- Punchline Section ---------- */
.punchline {
  text-align: center;
  padding: var(--section-padding-y);
  background-size: cover;
  background-position: center;
}

.punchline__text {
  font-size: var(--font-size-7xl);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}

.punchline__text em {
  color: var(--color-secondary);
  font-style: normal;
}

@media (max-width: 768px) {
  .punchline__text {
    font-size: var(--font-size-4xl);
  }
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: var(--spacing-8) 0;
}

.cta-card {
  background-color: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-12) var(--spacing-16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-8);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(42, 122, 122, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(245, 166, 35, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.cta-card__content {
  position: relative;
  text-align: left;
}

.cta-card__tag {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: var(--spacing-3);
  text-align: left;
}

.cta-card__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  margin-bottom: var(--spacing-3);
  line-height: 1.1;
  text-align: left;
}

.cta-card__description {
  font-size: var(--font-size-md);
  color: #ffffff;
  max-width: 500px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.cta-card__button {
  position: relative;
  z-index: var(--z-elevate);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-8);
  }

  .cta-card__description {
    max-width: 100%;
  }
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  padding: var(--spacing-12) 0 var(--spacing-6);
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-8);
  padding-bottom: var(--spacing-8);
  border-bottom: 1px solid var(--color-border-light);
}

.footer__logo {
  max-width: 180px;
  margin-bottom: var(--spacing-4);
}

.footer__col-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  margin-bottom: var(--spacing-4);
}

.footer__col-link {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-2);
  transition: color var(--transition-fast);
}

.footer__col-link:hover {
  color: var(--color-secondary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-6);
  font-size: var(--font-size-xs);
  color: var(--color-text-tertiary);
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-6);
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo {
    margin: 0 auto var(--spacing-4);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--spacing-3);
    text-align: center;
  }
}

/* ============================================================
   FILTER BUTTONS (Training Pages)
   ============================================================ */
.card--training-card {
  background: var(--color-white);
  /* border: 1.5px solid;
  border-radius: var(--radius-lg); */
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card--training-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card--training-card .card--training-card {
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.card--training-card .card--training-card:hover {
  transform: none;
  box-shadow: none;
}

/* Card Labels */
.card__path-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-1);
}

.card__course-name {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: var(--spacing-1);
}

.card__meta {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
}

/* Card Bottom Section */
.card--training-card .card__bottom {
  padding: var(--spacing-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card--training-card .card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2);
  margin-top: auto;
}

/* Card Footer */
.card--training-card .card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-3) var(--spacing-4);
  border-top: 1px solid var(--color-border-light);
  background: var(--color-white);
}

.card__price {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-secondary);
}

/* card__cta-btn → neeche "CARD ARROW" section mein define hai */

/* ============================================================
   SIMPLE FILTER BUTTONS (No animation on buttons)
   ============================================================ */

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3);
  justify-content: center;
  margin-bottom: var(--spacing-8);
}

.filter-btn {
  padding: var(--spacing-2) var(--spacing-5);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family-primary);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  /* color: var(--color-text-secondary); */
  cursor: pointer;
  transition: all var(--transition-fast);
}

/* ============================================================
   CARD ARROW - NO BACKGROUND
   ============================================================ */

.card__cta-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.card__cta-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-primary);
  transition: fill var(--transition-fast);
}

.card__cta-btn:hover {
  background: transparent;
  transform: translateX(4px);
}

.card__cta-btn:hover svg {
  fill: var(--color-secondary);
}

.card--training-card:hover .card__cta-btn svg {
  transform: translateX(4px);
  fill: var(--color-secondary);
}

/* ══ WORKSHOP SELECTOR — Split-screen topic switcher ══ */

.ws-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f9f7f4;
}

/* Main split layout */
.ws-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border: 1.7px solid rgba(26, 39, 68, .10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* border-radius ke liye zaroori */
  background: #fff;
  min-height: 560px;
}

.ws-list {
  border-right: 1px solid rgba(26, 39, 68, .09);
  display: flex;
  flex-direction: column;
  background: #fff;
}

.ws-list__head {
  padding: 1.4rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(26, 39, 68, .08);
}

.ws-list__items {
  flex: 1;
  overflow-y: auto;
}

.ws-detail {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  overflow-y: auto;
  /* content scroll kare, clip nahi ho */
  min-width: 0;
}

.ws-panel {
  display: none;
  flex-direction: column;
  height: 100%;
  animation: wsFadeIn .25s ease;
}

.ws-panel.active {
  display: flex;
}

@keyframes wsFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ws-panel__band {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
}

.ws-panel__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-width: 0;
  /* overflow: hidden removed — content cut hone se bachao */
}

.ws-panel__left {
  padding: 2rem 2rem 2rem 2.5rem;
  border-right: 1px solid rgba(26, 39, 68, .07);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: visible;
  /* hidden se visible — content wrap hoga, clip nahi */
}

.ws-panel__right {
  display: flex;
  flex-direction: column;
}

.ws-panel__img-wrap {
  height: 210px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.ws-panel__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s;
}

.ws-panel__img-wrap img.loaded {
  opacity: 1;
}

.ws-panel__img-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-panel__benefits {
  flex: 1;
  padding: 1.5rem 2rem 2rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .ws-layout {
    grid-template-columns: 260px 1fr;
  }
}

@media (max-width: 991px) {
  .ws-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ws-list {
    border-right: none;
    border-bottom: 1px solid rgba(26, 39, 68, .09);
    max-height: none;
  }

  /* Pill tabs: component.css handles the item styling */
  .ws-panel__inner {
    grid-template-columns: 1fr;
  }

  .ws-panel__left {
    padding: 1.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(26, 39, 68, .07);
    min-width: 0;
    overflow: visible;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .ws-panel__title {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .ws-panel__desc {
    font-size: var(--font-size-sm);
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .ws-panel__img-wrap {
    height: 180px;
  }

  .ws-panel__benefits {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 575px) {
  .ws-layout {
    border-radius: var(--radius-lg);
  }

  .ws-panel__left {
    padding: 1rem;
  }
}

/* ── Stats bar (like Regent / Unimrkt counter row) ── */
.stats-bar {
  padding: 2.5rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stats-bar__number {
  font-size: 2.2rem;
  font-weight: var(--font-weight-extrabold);
  color: #fff;
  line-height: 1;
}

.stats-bar__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.35rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FAQ section */
@media(max-width:768px) {
  .faq-split {
    display: none !important;
  }

  .faq-mobile {
    display: block !important;
  }

  .faq-mob-item {
    border: 1.7px solid #e0e0da;
    border-radius: var(--radius-lg);
    margin-bottom: 8px;
    overflow: hidden;
  }

  .faq-mob-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    background: #fff;
    gap: 12px;
  }

  .faq-mob-q {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: #111;
    font-family: var(--font-family-base);
    flex: 1;
  }

  .faq-mob-icon {
    font-size: var(--font-size-lg);
    color: #999;
    transition: transform .2s;
  }

  .faq-mob-item.open .faq-mob-icon {
    transform: rotate(45deg);
    color: #111;
  }

  .faq-mob-body {
    display: none;
    padding: 0 16px 14px;
    font-size: var(--font-size-xs);
    color: #555;
    line-height: 1.7;
    font-family: var(--font-family-base);
  }

  .faq-mob-item.open .faq-mob-body {
    display: block;
  }
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   CONTACT PAGE — Layout
   ============================================================ */

.contact-section {
  /* padding: clamp(3rem, 6vw, 7rem) 0; */
  background: #fff;
}

.contact-container {
  max-width: var(--page-inner, 1400px);
  width: 80%;
  margin: 0 auto;
  padding: 0 var(--gutter, 24px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-container {
    width: 88%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .contact-container {
    width: 92%;
  }
}

/* ============================================================
   OUR TEAM PAGE — Layout
   ============================================================ */

.section-wrap {
  max-width: var(--page-inner, 1400px);
  width: 80%;
  margin: 0 auto;
  padding-left: var(--gutter, 24px);
  padding-right: var(--gutter, 24px);
}

/* Carousel wrapper */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.team-carousel {
  display: flex;
  gap: 28px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Culture grid */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* CTA band */
.cta-band-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.cta-band-sub {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Team page responsive */
@media (max-width: 1100px) {
  .team-member-card {
    flex: 0 0 calc((100% - 56px) / 3);
  }
}

@media (max-width: 768px) {
  .team-member-card {
    flex: 0 0 calc((100% - 28px) / 2);
  }

  .carousel-control.prev {
    left: -12px;
  }

  .carousel-control.next {
    right: -12px;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .section-wrap {
    width: 92%;
  }
}

@media (max-width: 480px) {
  .team-member-card {
    flex: 0 0 85vw;
  }
}

/* ============================================================
   OUR STORY PAGE — NEW PILLARS & MILESTONES SECTION
   ============================================================ */

/* ===== OUR PILLARS SECTION ===== */
.pillars-layout {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 2rem;
}

.pillars-cards {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 39, 68, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  width: 100%;
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
}

.card__number.pillar {
  font-size: 3rem;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 12px;
  opacity: 1 !important;
}

.pillar-card .card__title {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  color: #1a2744;
  margin: 0;
}

.pillars-logo-wrap {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.pillars-logo {
  max-width: 100%;
  width: 450px;
  height: auto;
}

/* ===== MILESTONES TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(91, 94, 166, 0.35) 8%,
      rgba(224, 90, 132, 0.35) 92%,
      transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-content-left,
.tl-content-right {
  width: 45%;
}

.tl-content-left {
  text-align: right;
  padding-right: 2rem;
}

.tl-content-right {
  text-align: left;
  padding-left: 2rem;
}

.tl-center {
  width: 10%;
  display: flex;
  justify-content: center;
  position: relative;
}

.tl-dot {
  width: 14px;
  height: 14px;
  background: #5b5ea6;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(91, 94, 166, 0.25);
  z-index: 2;
  margin-top: 4px;
}

.tl-item:nth-child(even) .tl-dot {
  background: #e05a84;
  box-shadow: 0 0 0 3px rgba(224, 90, 132, 0.25);
}

.empty {
  visibility: hidden;
}

.tl-card {
  background: #fff;
  border: 1.7px solid rgba(26, 39, 68, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  height: 100%;
}

.tl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.tl-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

.tl-tag.blue {
  background: #e8eaf6;
  color: #5c6bc0;
}

.tl-tag.pink {
  background: #fce8ec;
  color: #e05a84;
}

.tl-tag.green {
  background: #e6f4ea;
  color: #2e7d52;
}

.tl-tag.yellow {
  background: #fff8e1;
  color: #b7820a;
}

.tl-card .card__title {
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  color: #1a2744;
  margin-bottom: 0.5rem;
}

.tl-card .card__description {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* Large Tablet (1200px and below) */
@media (max-width: 1200px) {
  .pillars-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {

  /* --- Pillars --- */
  .pillars-layout {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .pillars-cards {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pillars-logo-wrap {
    flex: unset;
    width: 100%;
    text-align: center;
    overflow: hidden;
  }

  .pillars-logo {
    width: 100%;
    max-width: 320px;
  }

  .pillar-card {
    padding: 20px 16px;
  }

  .card__number.pillar {
    font-size: var(--font-size-2xl);
  }

  .pillar-card .card__title {
    font-size: var(--font-size-sm);
  }

  /* --- Milestones --- */
  .timeline::before {
    left: 20px;
    transform: none;
  }

  .tl-item {
    flex-direction: column;
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
  }

  .tl-content-left,
  .tl-content-right {
    width: 100%;
    text-align: left;
    padding: 0;
  }

  .tl-content-left.empty,
  .tl-content-right.empty {
    display: none;
  }

  .tl-center {
    position: absolute;
    left: 12px;
    top: 0;
    width: auto;
  }

  .tl-card {
    margin-bottom: 0;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {

  /* --- Pillars --- */
  .pillars-cards {
    gap: 15px;
  }

  .pillar-card {
    padding: 16px 12px;
  }

  .card__number.pillar {
    font-size: var(--font-size-xl);
  }

  .pillar-card .card__title {
    font-size: var(--font-size-xs);
  }

  .pillars-logo-wrap {
    overflow: hidden;
  }

  .pillars-logo {
    width: 100%;
    max-width: 180px;
  }

  /* --- Milestones --- */
  .tl-card {
    padding: 1rem;
  }

  .tl-card .card__title {
    font-size: var(--font-size-md);
  }

  .tl-card .card__description {
    font-size: var(--font-size-xs);
  }

  .tl-tag {
    font-size: var(--font-size-xs);
    padding: 3px 8px;
  }
}

/* Small Mobile (375px and below) */
@media (max-width: 375px) {

  /* --- Pillars --- */
  .pillars-cards {
    gap: 12px;
  }

  .pillar-card {
    padding: 14px 10px;
  }

  .card__number.pillar {
    font-size: var(--font-size-xl);
  }

  .pillar-card .card__title {
    font-size: var(--font-size-xs);
  }

  .pillars-logo {
    max-width: 160px;
  }
}

/* People grid (existing - keep as is) */
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* How it began */
.how-began-section {
  padding: 5px 8px;
  overflow: hidden;
}

.top-box {
  padding: 90px 8px;
}

/* ── Row ── */
.bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 2.5rem;
}

/* ── Image Column (col-lg-5) ── */
.col-lg-5 {
  flex: 0 0 calc(41.666% - 1.25rem);
  max-width: calc(41.666% - 1.25rem);
  min-width: 0;
}

.image-box {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ── Content Column (col-lg-7) ── */
.col-lg-7 {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
}

.content-box {
  width: 100%;
}

/* Our story existing responsive (keep as is but don't conflict) */
@media (max-width: 1200px) {
  .people-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box {
    padding: 30px 10px;
  }

  .info-card {
    padding: 40px 30px;
  }

  /* col-lg stack on tablet */
  .col-lg-5,
  .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .image-box {
    min-height: 260px;
    max-height: 380px;
  }

  .content-box {
    min-height: auto;
    padding: 0;
  }

  .top-box {
    padding: 40px 30px;
  }

  .custom-img {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .people-grid {
    grid-template-columns: 2fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: var(--font-size-2xl);
  }

  .top-box {
    padding: 26px 18px;
  }

  .bottom-row {
    gap: 1.5rem;
  }

  .image-box {
    min-height: 260px;
    max-height: auto;
  }

  .content-box {
    padding: 0;
  }

  .custom-img {
    height: 260px;
  }

  .right-heading {
    font-size: var(--font-size-lg);
  }
}

/* ============================================================
   INDEX PAGE — Inline styles (moved from demoIndex.html)
   Block 1: Hero slideshow, sections, forms, scroll-reveal
   ============================================================ */
/* ── Variables fix (base.css missing hone pe) ── */
:root {
  /* --page-inner: 1400px; */
  /* --gutter: 2rem; */
  --grid-gap: 1.5rem;
  /* --outline-var: rgba(255, 255, 255, 0.1); */
  /* --z-elevate: 1; */
}

/* White space fix — hero navbar ke neeche se shuru ho */
.page-content {
  padding-top: 0 !important;
}

body {
  background-image: url('Image/home BG.jpeg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  /* ← yahi scroll rokta hai */
  background-repeat: no-repeat;
}

.hero--centered {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slide.active {
  opacity: 1;
  animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 14, 30, 0.72) 0%, rgba(10, 14, 30, 0.55) 50%, rgba(10, 14, 30, 0.75) 100%);
  z-index: 1;
}

.hero--centered .container {
  position: relative;
  z-index: 2;
  max-width: var(--page-inner);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 80%;
}

.hero__slide-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero__slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__slide-dot.active {
  width: 28px;
  border-radius: 4px;
  background: #f5a100;
}

.hero__slide-label {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 3;
  font-family: var(--font-family-base);
  font-size: 0.72rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.hero__slide-prev,
.hero__slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.hero__slide-prev {
  left: 1.5rem;
}

.hero__slide-next {
  right: 1.5rem;
}

.hero__slide-prev:hover,
.hero__slide-next:hover {
  background: rgba(245, 161, 0, 0.2);
  border-color: rgba(245, 161, 0, 0.5);
  color: #f5a100;
}

@media (max-width: 768px) {

  .hero__slide-prev,
  .hero__slide-next {
    display: none;
  }

  .hero--centered .container {
    width: 90%;
  }
}

.hero__description {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ========== CRAFTING THE FUTURE SECTION (EXACTLY AS IMAGE) ========== */
.crafting-section,
.svc-section,
.us-section,
.talent-section {
  background-color: rgba(255, 255, 255, 0.9);
}

.crafting-characters {
  display: block;
  width: 70%;
  max-width: 900px;
  margin: 2rem auto -4px auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .crafting-characters {
    width: 95%;
  }
}

.crafting-container {
  max-width: 800px;
  margin: 0 auto;
}

.crafting-eyebrow {
  display: none;
}

.section__title span {
  color: #f5a100;
  font-style: italic;
}

.crafting-description {
  font-family: var(--font-family-base);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: #111111;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.crafting-description:last-of-type {
  margin-bottom: 0;
}

/* ========== SERVICES CARDS ========== */


.svc-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: #111;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.svc-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}

.svc-card:hover .svc-card__img {
  transform: scale(1.06);
}

.svc-card__base-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.svc-card:hover .svc-card__base-overlay {
  opacity: 0;
}

.svc-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.4rem;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.svc-card:hover .svc-card__label {
  opacity: 0;
  transform: translateY(10px);
}

.svc-card__tag {
  display: block;
  font-size: 0.65rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5a100;
  margin-bottom: 0.35rem;
}

.svc-card__title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.svc-card__hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  background: linear-gradient(160deg, rgba(72, 52, 180, 0.96) 0%, rgba(40, 30, 110, 0.98) 100%);
  padding: 1.75rem 1.4rem 1.6rem;
  z-index: 3;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.svc-card:hover .svc-card__hover {
  transform: translateY(0%);
}

.svc-card__hover-tag {
  font-size: 0.65rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5a100;
  margin-bottom: 0.6rem;
}

.svc-card__hover-title {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin: 0 0 1rem 0;
}

.svc-card__hover-desc {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== WHY SECTION ========== */
.why-section {
  background: #ffffff;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: 'AVGCXR';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: var(--font-weight-extrabold);
  color: rgba(10, 30, 90, 0.04);
  white-space: nowrap;
  pointer-events: none;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-heading {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.why-heading h2 {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  color: #0a1e5a;
  line-height: 1.15;
}

.why-heading .sub {
  display: block;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: var(--font-weight-extrabold);
  font-style: italic;
  text-transform: uppercase;
  color: #1a4fd6;
}

.why-cards,
.why-cards-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.why-card {
  border: 1.7px solid #0a1e5a;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  box-shadow: 4px 4px 0 rgba(10, 30, 90, 0.12);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 8px 0 rgba(10, 30, 90, 0.18);
}

.why-card__num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: var(--font-weight-extrabold);
  color: #0a1e5a;
  line-height: 1;
  flex-shrink: 0;
}

.why-card__text {
  font-size: clamp(0.84rem, 1.1vw, 1rem);
  font-weight: var(--font-weight-medium);
  color: #1a2340;
  line-height: 1.5;
}

.why-card--cta {
  background: #0a1e5a;
  border-color: #0a1e5a;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.why-card--cta .why-card__cta-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  color: #ffffff;
}

.why-card--cta .why-card__cta-btn {
  background: #f5a100;
  color: #0a1e5a;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: 0.82rem;
  transition: 0.25s;
  display: inline-block;
}

.why-card--cta .why-card__cta-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {

  .why-cards,
  .why-cards-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {

  .why-cards,
  .why-cards-bottom {
    grid-template-columns: 1fr;
  }
}

/* ========== PROCESS SECTION ========== */
.process-eyebrow {
  font-size: 0.72rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f5a100;
  margin-bottom: 0.75rem;
  display: block;
}

.process-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  color: #0a1e5a;
}

.process-title em {
  font-style: italic;
  color: #1a4fd6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.process-card {
  background: #ffffff;
  border: 1.7px solid #e2e8f4;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.35s;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: #1a4fd6;
}

.process-card__step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0a1e5a;
  color: #fff;
  font-weight: var(--font-weight-extrabold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s;
}

.process-card:hover .process-card__step {
  background: #f5a100;
  transform: scale(1.1);
}

.process-card__title {
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  color: #0a1e5a;
  margin-bottom: 0.75rem;
}

.process-card__desc {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* TALENT SECTION */
.talent-section {
  position: relative;
  /* min-height: 520px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* TOP CUT */
/* .talent-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 42px;
      background: #f5f5f5;

      clip-path: polygon(0 100%, 4% 100%, 4.5% 0, 8% 0, 8.5% 100%,
          12% 100%, 12.5% 0, 16% 0, 16.5% 100%,
          20% 100%, 20.5% 0, 24% 0, 24.5% 100%,
          28% 100%, 28.5% 0, 32% 0, 32.5% 100%,
          36% 100%, 36.5% 0, 40% 0, 40.5% 100%,
          44% 100%, 44.5% 0, 48% 0, 48.5% 100%,
          52% 100%, 52.5% 0, 56% 0, 56.5% 100%,
          60% 100%, 60.5% 0, 64% 0, 64.5% 100%,
          68% 100%, 68.5% 0, 72% 0, 72.5% 100%,
          76% 100%, 76.5% 0, 80% 0, 80.5% 100%,
          84% 100%, 84.5% 0, 88% 0, 88.5% 100%,
          92% 100%, 92.5% 0, 96% 0, 96.5% 100%,
          100% 100%);

      z-index: 2;
    } */

/* BOTTOM CUT */
/* .talent-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 42px;
      background: #f5f5f5;

      clip-path: polygon(0 0, 4% 0, 4.5% 100%, 8% 100%, 8.5% 0,
          12% 0, 12.5% 100%, 16% 100%, 16.5% 0,
          20% 0, 20.5% 100%, 24% 100%, 24.5% 0,
          28% 0, 28.5% 100%, 32% 100%, 32.5% 0,
          36% 0, 36.5% 100%, 40% 100%, 40.5% 0,
          44% 0, 44.5% 100%, 48% 100%, 48.5% 0,
          52% 0, 52.5% 100%, 56% 100%, 56.5% 0,
          60% 0, 60.5% 100%, 64% 100%, 64.5% 0,
          68% 0, 68.5% 100%, 72% 100%, 72.5% 0,
          76% 0, 76.5% 100%, 80% 100%, 80.5% 0,
          84% 0, 84.5% 100%, 88% 100%, 88.5% 0,
          92% 0, 92.5% 100%, 96% 100%, 96.5% 0,
          100% 0);

      z-index: 2;
    } */

.talent-section .container {
  position: relative;
  z-index: 5;
}

.talent-counter {
  color: #111;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2rem;
}

.talent-heading {
  font-size: var(--font-size-7xl);
  font-weight: var(--font-weight-extrabold);
  color: #111;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-family-base);
}

.talent-description {
  color: #111;
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.talent-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.8vh, 16px) clamp(20px, 3vw, 36px);
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 60px;
  color: #fff;
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  backdrop-filter: blur(8px);
  transition: .3s;
}

.talent-link:hover {
  background: #fff;
  color: #000;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  /* background: transparent !important; */
  /* padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem); */
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(245, 161, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-main-title {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-main-title h2 {
  font-family: var(--font-family-base);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.contact-main-title .highlight {
  color: #f5a100;
}

.contact-main-title p {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.7px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 161, 0, 0.3);
}

.contact-card .card-label {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5a100;
  margin-bottom: 0.6rem;
  display: block;
}

.contact-card .card-content {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-card .card-content a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}

.contact-card .card-content a:hover {
  color: #f5a100;
}

.contact-cta-box {
  background: linear-gradient(135deg, rgba(245, 161, 0, 0.12) 0%, rgba(245, 161, 0, 0.03) 100%);
  border: 1.7px solid rgba(245, 161, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.contact-cta-box p {
  font-family: var(--font-family-base);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5a100;
  color: #0a0c14;
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-cta-btn:hover {
  background: #ffb82e;
  transform: translateY(-2px);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: #f5a100;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  color: #ffffff;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f5a100;
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  background: #f5a100;
  color: #0a0c14;
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: #ffb82e;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Scroll Reveal */
.crafting-reveal,
.wp-reveal,
.talent-reveal,
.contact-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.crafting-reveal.visible,
.wp-reveal.visible,
.talent-reveal.visible,
.contact-reveal.visible {
  opacity: 1;
  transform: none;
}