@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New&display=swap");

:root {
  --brand-red: #a31e39;
  --brand-red-dark: #7a1224;
  --brand-pink: #fde2e2;
  --brand-pink-light: #fff5f5;
  --brand-gold: #c29d53;
  --brand-gold-dark: #a5803a;
  --brand-gray-light: #f7f7f7;
  --brand-yellow: #ffee58;
  --bg-light: #f5f5f5;
  --text-dark: #2d3142;
  --text-muted: #6c757d;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-soft: 0 8px 32px rgba(45, 49, 66, 0.06);
  --shadow-card: 0 12px 40px rgba(163, 30, 57, 0.08);
  --radius-md: 10px;
  --radius-lg: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.font-english {
  font-family: "Montserrat", sans-serif;
}

.fw-black {
  font-weight: 900 !important;
}

/* Utilities */
.bg-light-gray {
  background-color: var(--brand-gray-light);
}

.text-brand-red {
  color: var(--brand-red) !important;
}

.text-brand-gold {
  color: var(--brand-gold) !important;
}

.bg-brand-red {
  background-color: var(--brand-red) !important;
}

.bg-brand-gold {
  background-color: var(--brand-gold) !important;
}

.accent-underline {
  position: relative;
  display: inline-block;
}

.accent-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg,
      rgba(194, 157, 83, 0.45),
      rgba(194, 157, 83, 0.25));
  z-index: -1;
  border-radius: 2px;
}

.accent-underline-yellow {
  position: relative;
  display: inline;
  z-index: 1;
}

.accent-underline-yellow::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 8px;
  background: linear-gradient(90deg, #ffe166, #ffe082);
  z-index: -1;
}

/* Header & Navbar */
.navbar-premium {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-gold) !important;
  transition: var(--transition-smooth);
}

.navbar-premium.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
  border-bottom-color: rgba(0, 0, 0, 0.04);
}

.navbar-toggler {
  border: none !important;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.navbar-premium .navbar-toggler-icon {
  background-image: url("images/ham-menu.svg") !important;
  width: 30px;
  height: 28px;
  background-size: contain;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: var(--transition-smooth);
  padding: 0.5rem 0.67rem !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1.7rem);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-red) !important;
}

.btn-contact {
  position: relative;
  background: linear-gradient(135deg,
      var(--brand-red) 0%,
      var(--brand-red-dark) 100%);
  color: #ffffff !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.3rem 1.6rem;
  border: 2px solid var(--brand-red);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 18px rgba(163, 30, 57, 0.25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-contact:hover {
  background: #ffffff;
  color: var(--brand-red) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(163, 30, 57, 0.3);
}

.btn-contact .badge-top {
  background-color: #ffffff;
  color: var(--brand-red);
  font-size: 0.58rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0px 9px;
  border-radius: 4px;
  border: 1px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.02em;
}

/* Full-width Hero (index) */
.hero-full {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.88) 42%,
      rgba(255, 255, 255, 0.15) 100%);
  z-index: 1;
}

.hero-full .container {
  position: relative;
  z-index: 2;
}

.hero-full h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  line-height: 1.35;
  font-weight: 900;
}

.hero-full .hero-lead {
  font-size: 1.25rem;
  line-height: 1.85;
  font-weight: 600;
  /* max-width: 560px; */
}

@media (max-width: 767.98px) {
  .hero-lead {
    font-size: 0.7rem !important;
  }
}

.hero-full .hero-lead strong {
  background-color: var(--brand-yellow);
  padding: 0.1rem 0.3rem;
  border-radius: 2px;
  font-weight: 900 !important;
}

/* Laurel wreath badges */
.hero-badge-container {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-badge img {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-badge-inner {
  border: 1.5px dashed rgba(122, 18, 36, 0.35);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

/* Directors bar below hero - Redesigned */
.directors-section {
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
  width: 100%;
}

.directors-bg-dark {
  display: none;
}

.directors-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.directors-left-pane {
  padding: 1.5rem;
  background-color: #f8f9fa;
  z-index: 2;
}

.directors-left-content {
  width: 100%;
  margin: 0 auto;
  max-width: 540px;
}

.directors-left-content .badge-quote {
  background: #526189;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  border: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.directors-left-content .director-quote {
  white-space: nowrap;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1c2030;
  line-height: 1.6;
}

.directors-left-content .director-subquote {
  font-size: 0.95rem;
  color: #4a5060;
  line-height: 1.8;
  font-weight: 500;
}

.directors-left-content .marker-yellow {
  background: linear-gradient(transparent 80%, #ffe166 80%);
}

.directors-right-pane {
  display: flex;
  flex-direction: row;
  background: radial-gradient(circle at 50% 50%, #302624 0%, #111113 100%);
  overflow: hidden;
}

.director-slanted-card {
  flex: 1 1 0;
  min-width: 0;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.director-photo-wrapper {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.director-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .director-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
} */

.director-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 15px;
}

.director-info-text-wrapper {
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.director-info-text-wrapper .company-name {
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.director-info-text-wrapper .director-name {
  font-size: 0.75rem;
  font-weight: 700;
  /* margin-top: 2px; */
}

/* CTA Bar - Redesigned */
.cta-bar {
  background: linear-gradient(90deg, #9f1641 0%, #ab2e56 100%);
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 1.4rem 1.5rem;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(163, 30, 57, 0.15);
}

.cta-bar:hover {
  opacity: 0.95;
  color: #ffffff;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.cta-line-1 {
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.cta-highlight-box {
  background-color: #ffffff;
  opacity: 80%;
  color: var(--brand-red-dark);
  padding: 4px 6px;
  font-weight: 900;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1.1em;
}

.cta-line-2 {
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* Desktop Styles for Directors */
@media (min-width: 992px) {
  .directors-bg-dark {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60vw;
    background: radial-gradient(circle at 60% 40%, #2f2725 0%, #121010 100%);
    transform: skewX(-12deg);
    transform-origin: top right;
    z-index: 1;
  }

  .directors-wrapper {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
  }

  .directors-left-pane {
    /* flex: 0 0 45%; */
    width: 50%;
    background-color: transparent;
    display: flex;
    /* justify-content: flex-end; */
    align-items: center;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    /* padding-right: 3rem; */
  }

  .directors-left-content {
    margin: 0;
    width: 100%;
    /* max-width: 500px; */
  }

  .directors-right-pane {
    /* flex: 0 0 55%; */
    width: 50%;
    flex-direction: row;
    align-items: stretch;
    background: transparent;
    overflow: visible;
  }

  .director-slanted-card {
    flex: 1;
    height: 100%;
    transform: skewX(-12deg);
    position: relative;
  }

  .director-slanted-card:nth-child(1) {
    z-index: 3;
  }

  .director-slanted-card:nth-child(2) {
    z-index: 2;
  }

  .director-slanted-card:nth-child(3) {
    z-index: 1;
  }

  .director-slanted-card:last-child {
    border-right: none;
    transform: none;
    margin-left: -50px;
  }

  .director-photo-wrapper {
    transform: skewX(12deg) scale(1.4);
  }

  .director-slanted-card:last-child .director-photo-wrapper {
    transform: scale(1.4);
  }

  .director-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* .director-photo-wrapper img {
    object-position: center 15%;
  } */

  .director-slanted-card:hover .director-photo-wrapper {
    transform: skewX(12deg) scale(1.4);
  }

  .director-slanted-card:last-child:hover .director-photo-wrapper {
    transform: scale(1.4);
  }

  .director-info-overlay {
    padding: 5px 15px;
  }

  .director-info-text-wrapper {
    transform: skewX(12deg);
  }

  .director-slanted-card:last-child .director-info-text-wrapper {
    transform: none;
    padding-left: 35px;
  }
}

/* Media Query Helper for Directors Left Pane Grid Alignment */
/* @media (min-width: 1400px) {
  .directors-left-pane {
    padding-left: calc((100vw - 1320px) / 2 + 15px);
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .directors-left-pane {
    padding-left: calc((100vw - 1140px) / 2 + 15px);
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .directors-left-pane {
    padding-left: calc((100vw - 960px) / 2 + 15px);
  }
} */

/* Sections */
.section-padding {
  padding: 2.5rem 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-gold);
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.2rem;
  font-weight: 900;
  line-height: 1.45;
}

/* India map watermark */
.india-map-bg,
.india-map-strength-bg,
.india-map-flow-costs-bg,
.india-map-about-us-bg {
  position: relative;
}

.india-map-bg::before {
  content: "";
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 420px;
  height: 80%;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/d/d0/India_outline.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  pointer-events: none;
  z-index: 0;
  opacity: 10%;
}

.india-map-about-us-bg::before {
  content: "";
  position: absolute;
  left: 3%;
  top: 20%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 344px;
  height: 40%;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/d/d0/India_outline.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  pointer-events: none;
  z-index: 0;
  opacity: 10%;
}

.india-map-about-us-bg>.container {
  position: relative;
  z-index: 1;
}

.india-map-bg>.container {
  position: relative;
  z-index: 1;
}

.india-map-strength-bg::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 420px;
  height: 420px;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/d/d0/India_outline.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.india-map-strength-bg>.container {
  position: relative;
  z-index: 1;
}

.india-map-flow-costs-bg::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 420px;
  height: 420px;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/d/d0/India_outline.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.india-map-flow-costs-bg>.container {
  position: relative;
  z-index: 1;
}

.about-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.hover-label {
  color: #ff2d2d;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.about-action-btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 14px;
  background: #f4efef;
  border: 1px solid #d94b6b;
  text-decoration: none;
  color: #222;
  font-size: 12px;
  font-weight: 700;
}

.about-action-btn-simple {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 14px;
  background: #f4efef;
  text-decoration: none;
  color: #222;
  font-size: 12px;
  font-weight: 700;
}

.about-action-outside-arrow {
  position: absolute;
  top: 50%;
  right: -22px;
  /* Outside the button */
  transform: translateY(-50%);

  color: #d94b6b;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}

.about-action-outside-arrow-simple {
  position: absolute;
  top: 50%;
  right: -22px;
  /* Outside the button */
  transform: translateY(-50%);
  color: #cccacb;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.about-action-btn:hover .about-action-outside-arrow {
  right: -28px;
  /* Small animation */
}

.about-action-btn-simple:hover .about-action-outside-arrow {
  right: -28px;
  /* Small animation */
}

/* 


/* Redesigned ABOUT Section Layout */
.about-lead-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #1c2030;
  line-height: 1.45;
  margin-bottom: 40px;
}

.about-text {
  font-size: 0.8rem;
  line-height: 1.85;
  color: #4a5060;
}

.about-btn {
  background-color: #f0f2f5;
  color: #1c2030;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.about-btn .btn-arrow {
  color: #8c96a8;
  font-size: 1rem;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  margin-left: 2px;
}

.about-btn:hover {
  background-color: var(--brand-pink);
  border-color: var(--brand-red);
  color: #1c2030;
}

.about-btn:hover .btn-arrow {
  color: var(--brand-red);
  transform: translateX(4px);
}

/* Overlapping Layered Images */
.about-layered-images {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 620px;
  margin-left: auto;
}

.about-mandala-bg {
  position: absolute;
  right: 90px;
  top: 40px;
  width: 380px;
  height: 380px;
  background-image: url(images/circle-background.jpeg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
  /*opacity: .15;*/
}

.about-pink-box {
  position: absolute;
  left: 33%;
  top: 39%;
  width: 34%;
  height: 25%;
  background-color: rgba(253, 226, 226, 0.65);
  z-index: 3;
  /* border-radius: 4px; */
}

.about-img-wrapper {
  position: absolute;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-top {
  top: 0;
  left: 0;
  width: 50%;
  height: 59%;

  z-index: 2;
}

.about-img-bottom {
  /* right: -50px; */
  position: absolute;
  height: 35%;
  top: 43%;
  right: -73px;
  bottom: 10px;
  z-index: 4;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); */
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .about-img-bottom {
    right: -35px;
  }
}

.about-img-wrapper:hover {
  transform: translateY(-4px) scale(1.02);
}

/* Mobile responsive fixes */
@media (max-width: 575.98px) {

  .about-lead-title {
    font-size: 1.35rem;
  }

  .about-layered-images {
    height: 280px;
    max-width: 320px;
  }

  .about-mandala-bg {
    width: 200px;
    height: 200px;
  }

  .about-img-bottom {
    right: 0;
  }

  .india-map-flow-costs-bg::before {
    bottom: -120px;
  }

  .india-map-strength-bg::before {
    width: 200px;
    ;
  }

  .mandala-bg::before {
    bottom: 0;
    left: 50% !important;
    width: 140px;
    height: 140px;
  }

  .reason-content {
    padding-right: 0 !important;
  }

  .directors-left-content .director-quote {
    font-size: 1rem;
  }

  .director-info-text-wrapper .company-name {
    font-size: 0.45rem;
  }

  .director-info-text-wrapper .director-name {
    font-size: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .directors-left-content .marker-yellow {
    display: block;
    margin-top: 0.15rem;
  }
}

/* Mandala bg for video */
.mandala-bg {
  position: relative;
  padding-bottom: 80px;
}

.mandala-bg::before {
  content: "";
  position: absolute;
  left: 75%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background-image: url("images/circle-background.jpeg");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.mandala-bg>.container {
  position: relative;
  z-index: 1;
}

/* Pain Point Box */
.pain-section {
  position: relative;
  overflow: hidden;
}

/* .pain-section::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 70%;
  background: linear-gradient(90deg, transparent, rgba(248, 249, 250, 0.3));
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?q=80&w=600');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
} */

.pain-divider {
  width: 2px;
  height: 60px;
  background-color: var(--brand-red);
  margin: 0 auto 2rem auto;
  opacity: 0.6;
}

.pain-box {
  background-color: #ffffff;
  padding: 2.5rem 2.75rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.pain-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./images/Asset\ 15-100.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

.pain-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.pain-item:last-child {
  margin-bottom: 0;
}

.pain-icon {
  color: var(--brand-red);
  font-size: 1.1rem;
  margin-right: 1rem;
  line-height: 1.6;
  flex-shrink: 0;
}

.pain-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.pain-highlight {
  background: linear-gradient(transparent 65%, var(--brand-yellow) 65%);
}

/* Reason / zigzag numbering */
.reason-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #c7b49a;
  font-family: "Montserrat", sans-serif;
}

.zigzag-block {
  padding: 2rem 0;
}

.zigzag-block+.zigzag-block {
  /* border-top: 1px solid rgba(0, 0, 0, 0.04); */
}

.img-premium {
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.img-premium:hover {
  box-shadow: var(--shadow-card);
}

.img-premium img {
  width: 100%;
  display: block;
}

/* Student Cards */
.student-card {
  background-color: transparent;
  border-radius: 0;
  border: none;
  overflow: visible;
  height: 100%;
  box-shadow: none;
}

.student-card .student-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.student-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.student-badge-container {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.student-badge-graduated {
  background-color: transparent;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  display: inline-block;
  letter-spacing: 0.05em;
}

.student-badge-training {
  background-color: var(--brand-red);
  border: 1px solid var(--brand-red);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  display: inline-block;
  letter-spacing: 0.05em;
}

.student-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* News & Column Section */
.news-badge-bubble {
  position: relative;
  background-color: var(--brand-pink);
  color: var(--brand-red);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 8px 35px;

  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(163, 30, 57, 0.04);
}

.news-badge-bubble::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--brand-pink);
}

.news-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x;
}

.news-track::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex: 0 0 calc(20% - 1rem);
  min-width: 180px;
  scroll-snap-align: start;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: var(--transition-smooth);
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card:hover {
  color: inherit;
}

.news-card .news-thumb {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  background: #ffffff;
  border: 1px solid var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.news-card .news-thumb .news-logo-svg {
  width: 80%;
  height: auto;
  max-height: 80%;
  transition: transform 0.5s ease;
}

.news-card:hover .news-thumb .news-logo-svg {
  transform: scale(1.04);
}

.news-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  z-index: 2;
}

.news-card .news-body {
  padding: 0.75rem 0 0 0;
}

.news-card .news-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .news-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--brand-red);
  padding: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.news-dot.active {
  background: var(--brand-red);
}

.news-nav-btn {
  background: none;
  border: none;
  color: var(--brand-red);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.news-nav-btn:hover {
  opacity: 0.7;
}

/* Genre cards (candidates) */
.genre-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  height: 100%;
}

.genre-card-photo {
  position: relative;
  z-index: 2;
  text-align: start;
  /* margin-bottom: -40px; */
}

.genre-card-photo img {
  width: calc(100% - 12px);
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  object-position: top left;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  /* box-shadow: var(--shadow-soft); */
  /* padding-left: 15px; */
}

@media (max-width: 767.98px) {
  .genre-card-photo img {
    width: calc(100% - 40px);
    max-width: 180px;
    height: 110px;
  }
}

.genre-card-header {
  background: var(--brand-red);
  color: #ffffff;
  text-align: center;
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  z-index: 1;
}

.genre-card-header h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.genre-card-body {
  background: var(--brand-pink);
  border: 2px solid var(--brand-red);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 1.75rem 1.5rem 2rem;
}

.genre-card-body .genre-label {
  font-weight: 700;
  color: #754C24;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.genre-card-body .genre-label::before {
  content: "■";
  font-size: 0.7rem;
}

.genre-card-body .genre-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
}

.genre-card-body .genre-list .hand-icon {
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Order-made flow cards */
.order-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.7rem;
}

.order-flow-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid var(--brand-red);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  height: 100%;
}

.order-flow-card:hover {
  box-shadow: var(--shadow-card);
}

.order-flow-card .ofc-header {
  background: var(--brand-red);
  color: #ffffff;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.45;
  /* Height fix and text centering */
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-flow-card .ofc-body {
  background: #ffffff;
  border: none;
  padding: 0.85rem;
  font-weight: 600;
  flex: 1;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.order-flow-card .ofc-chevron {
  text-align: center;
  margin-bottom: 0.5rem;
}

.order-flow-card .ofc-chevron i {
  color: var(--brand-red);
  font-size: 0.85rem;
}

.order-flow-card .ofc-footer {
  background: var(--brand-pink);
  border-top: 2px solid var(--brand-red);
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.45;
}

/* Flow step cards (flow-costs) */
.flow-steps-wrap {
  max-width: 802px;
  margin: 0 auto;
}

.flow-step-card {
  border: 1px solid var(--brand-red);
  border-radius: 28px;
  overflow: hidden;
  min-height: 110px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.flow-step-card:hover {
  box-shadow: var(--shadow-card);
}

.flow-step-card .fsc-header {
  background: var(--brand-red);
  color: #ffffff;
  text-align: center;
  padding: 0.54rem 1.5rem;
  font-weight: 700;
  font-size: 1.3rem;
}

.flow-step-card .fsc-body {
  padding: 0.25rem 2.5rem;
  font-size: 0.85rem;
  line-height: 1.7;
}

.flow-step-card.is-gold .fsc-header {
  background: var(--brand-gold);
}

.flow-chevron {
  text-align: center;
  /* color: var(--brand-gold); */
  font-size: 1.25rem;
  padding: 0.5rem 0;
  padding-top: 0;
}

/* Cost Table */
.cost-table-container {
  padding: 0 85px;
}

.cost-table-wrap {
  border-radius: 30px;
  overflow: hidden;
  /* box-shadow: var(--shadow-soft); */
  /* border: 1px solid #eaeaea; */
}

.cost-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}

.cost-table th {
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 0.6rem 0.95rem;
  font-size: 1.098rem;
  border: 1px solid #eaeaeb;
}

.cost-table td {
  padding: 0.3rem 0.5rem;
  border: 1px solid #fff;
  vertical-align: middle;
  font-size: 0.88rem;
  line-height: 1.65;
  font-weight: 900;
}

.cost-table td.cost-process {
  background-color: #e6e6e6;
  font-weight: 700;
  text-align: start;
  vertical-align: middle;
}

.cost-table td.cost-price {
  color: #7d5631;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.cost-table td.cost-remarks {
  font-size: 0.5rem;
  font-weight: 900;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
}

.video-wrapper img {
  width: 100%;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 230px;
  height: 182px;

  background: rgba(255, 255, 255, 0.12);
  border: 12px solid rgba(255, 255, 255, 0.95);
  border-radius: 42px;

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

  cursor: pointer;
  transition: 0.35s ease;
}

.video-play-btn i {
  font-size: 88px;
  color: transparent;
  -webkit-text-stroke: 8px #fff;
}

/* Company hero banner */
.company-hero-banner {
  background: linear-gradient(135deg, #1c2030 0%, #0f121c 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.company-hero-banner img.hero-team {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

/* Partner zigzag */
.partner-block {
  padding: 2.5rem 0;
}

.partner-block+.partner-block {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Cards premium (legacy) */
.card-premium {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  height: 100%;
  overflow: hidden;
}

.card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card-premium-gold {
  border-top: 4px solid var(--brand-gold);
}

.card-premium-red {
  border-top: 4px solid var(--brand-red);
}

/* Footer */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
}

@media (max-width: 991.98px) {
  .footer-links {
    flex-direction: column;
    align-items: start;
    gap: 0.75rem !important;
  }
}

.footer-link {
  color: var(--text-dark);
  text-decoration: underline;
  transition: var(--transition-smooth);
  font-size: 0.65rem;
}

.footer-link:hover {
  color: var(--brand-red);
}

footer {
  background: var(--bg-light) !important;
}

/* Bracket list for strength page */
.bracket-list {
  margin-top: 0.3rem;
}

.bracket-item {
  font-size: 0.95rem;
  line-height: 1.7;
}

.bracket-item strong {
  color: var(--brand-red);
}

/* Map bg decor (legacy) */
.map-bg-decor {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240' fill='%23c29d53' opacity='0.06'%3E%3Cpath d='M95 10c-5 8-12 15-18 22-8 10-15 22-12 35 2 10 10 18 18 24 8 6 14 14 16 24 2 12-2 24-8 34-6 10-14 18-22 26-4 4-8 10-6 16 2 6 8 10 14 12 6 2 12 0 18-2 10-4 18-12 26-20 8-8 16-16 26-20 10-4 22-2 30 4 8 6 12 16 10 26-2 10-8 18-14 26-6 8-12 16-14 26-2 10 2 20 8 28 6 8 14 14 22 18 4 2 8 6 6 10-2 4-8 4-12 2-8-4-14-10-20-16-6-6-12-12-20-14-8-2-16 2-22 8-6 6-10 14-12 22-2 8 0 16 4 24 4 8 10 14 16 20 2 2 4 6 2 8-2 2-6 0-8-2-10-8-18-18-24-28-6-10-10-22-8-34 2-12 10-22 18-30 8-8 16-16 20-26 4-10 2-22-4-32-6-10-16-18-26-22-10-4-20-4-28 2-8 6-14 14-18 22-4 8-6 16-10 24-4 8-10 14-18 18-8 4-18 4-26 0-8-4-14-12-16-20-2-8 0-16 6-22 6-6 14-10 22-10 8 0 16 4 22 10 6 6 10 14 12 22 2 8 0 16-4 24-4 8-10 14-18 18z'/%3E%3C/svg%3E");
  background-position: left 5% center;
  background-repeat: no-repeat;
  background-size: 280px;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .order-flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-card {
    flex: 0 0 calc(33.333% - 0.85rem);
    min-width: 200px;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 4rem 0;
  }

  .navbar-nav {
    gap: 1.5rem !important;
    margin-bottom: 1rem;
  }

  .hero-badge-container {
    justify-content: flex-start;
  }

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

  .news-card {
    flex: 0 0 calc(50% - 0.65rem);
    min-width: 220px;
  }

  .cost-table-container {
    padding: 0 !important;
  }

  .cost-table-wrap {
    overflow-x: visible !important;
    border-radius: 16px;
  }

  .cost-table {
    min-width: auto !important;
    width: 100% !important;
    table-layout: fixed;
  }

  .cost-table thead tr {
    white-space: normal !important;
  }

  .cost-table th {
    font-size: 0.85rem !important;
    padding: 0.5rem 0.3rem !important;
    word-break: break-all;
  }

  .cost-table td {
    font-size: 0.78rem !important;
    padding: 0.5rem 0.3rem !important;
    word-break: break-all;
  }

  .cost-table td.cost-price {
    white-space: normal !important;
  }

  .cost-table td.cost-remarks {
    font-size: 0.65rem !important;
  }
}

@media (max-width: 767.98px) {
  .cost-table-wrap {
    border-radius: 12px;
  }

  .cost-table th {
    font-size: 0.65rem !important;
    padding: 0.4rem 0.2rem !important;
  }

  .cost-table td {
    font-size: 0.62rem !important;
    padding: 0.4rem 0.25rem !important;
  }

  .cost-table td.cost-remarks {
    font-size: 0.55rem !important;
  }
}

@media (max-width: 575.98px) {
  .order-flow-grid {
    grid-template-columns: 1fr;
  }

  .hero-full {
    min-height: 480px;
  }

  .hero-badge {
    width: 100px;
    height: 100px;
    font-size: 0.65rem;
  }

  .news-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .flow-step-card .fsc-body {
    font-size: 0.65rem;
  }
}

.reveal-stagger>.col-lg-6 {
  display: flex;
}

.genre-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.genre-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.genre-card-body>div:last-child {
  flex: 1;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-stagger>*,
  .order-flow-card .ofc-chevron {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.header-logo img {
  width: 135px;
  height: 70px;
}

.web-logo {
  width: 140px;
  height: 70px;
}

.swiper-logo {
  width: 130px;
  height: 70px;
}

.reason-row {
  padding: 2rem 0;
}

.reason-row+.reason-row {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.reason-content {
  padding-right: 2.6rem;
}

.reason-content-right {
  padding-right: 0;
}

.img-premium {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.img-premium img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  transition: transform 0.4s ease;
}

.reason-item {
  overflow: hidden;
}

.reason-image {
  position: relative;
}

.reason-image img {
  width: calc(100% + ((100vw - 1320px) / 2));
  max-width: none;
  height: 380px;
  object-fit: cover;
}

.flex-lg-row-reverse .reason-image img {
  margin-left: calc(-1 * ((100vw - 1320px) / 2));
}

.reason-content {
  max-width: 500px;
  margin-left: auto;
  text-align: left;
}

.reason-content-right {
  max-width: 500px;
  text-align: left;
}

.reason-heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

@media (max-width: 991.98px) {
  .reason-heading .text-nowrap {
    white-space: normal !important;
  }
}

@media (max-width: 575.98px) {

  .reason-heading h3,
  .reason-heading .h3 {
    font-size: 1.25rem !important;
  }

  .reason-heading h4,
  .reason-heading .h4 {
    font-size: 1rem !important;
  }
}

.reason-number {
  color: #c2a57b;
  line-height: 1;
  flex-shrink: 0;
}

.reason-title h5 {
  margin: 0;
}

.reason-title h4 {
  margin: 0;
}

.reason-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
  padding-left: 64px;
  /* aligns paragraph under heading */
}

.reason-heading-wrap {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.reason-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.reason-title-top {
  margin: 0;
}

.reason-title-bottom {
  margin: 0;
}

.reason-description {
  max-width: 620px;
  font-size: 0.8rem;
  line-height: 1.8;
  color: #555;
  color: #555;
}

.video-section-text {
  max-width: 1054px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #2d2d2d;
}

.video-section-text br {
  content: "";
}