* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background-color: #0631b3;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  height: 100vh;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background-color: transparent !important;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
}

.logo-img {
  height: 35px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

/* On light backgrounds (like unanswered page light navigation), make logo dark blue (#0631b3) */
.light-nav .logo-img {
  filter: brightness(0) invert(16%) sepia(86%) saturate(2853%) hue-rotate(224deg) brightness(97%) contrast(106%);
}

@media screen and (max-width: 768px) {
  .logo-img {
    height: 30px !important;
  }
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 45px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.8;
}

.nav-links a.active {
  opacity: 1;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}

.cta-button {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 1px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 850px;
  max-width: 1440px;
  margin: 0 auto;
  background-color: #0631b3;
}

.lang-selector {
  position: absolute;
  left: 1170px;
  top: 80px;
  font-size: 12px;
  letter-spacing: 1px;
}

.card {
  position: absolute;
  overflow: hidden;
  filter: grayscale(100%);
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bust-card {
  left: 60px;
  top: 60px;
  width: 190px;
  height: 240px;
  filter: none;
}

.zoe-card {
  left: 100px;
  top: 370px;
  width: 130px;
  height: 180px;
}

.leon-card {
  left: 920px;
  top: 20px;
  width: 210px;
  height: 270px;
}

.starry-card {
  left: 780px;
  top: 460px;
  width: 340px;
  height: 220px;
}

.news-card {
  left: 1170px;
  top: 160px;
  width: 240px;
  height: 340px;
  background-color: transparent;
  filter: none;
}
.news-card img {
  object-fit: contain;
}

.name-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: #fff;
}

.center-content {
  position: absolute;
  left: 300px;
  top: 100px;
}

.who-we-are {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}

.headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  line-height: 0.92;
  font-weight: 400;
  margin-bottom: 35px;
  letter-spacing: -1px;
}

.divider {
  width: 280px;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 25px;
}

.sub-text {
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 40px;
}

.explore-link {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 6px;
  display: inline-block;
}

.desc-text {
  position: absolute;
  left: 920px;
  top: 310px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 260px;
}
.desc-text em {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}

.scroll-btn {
  position: absolute;
  left: 0px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Script Section */
.script-section {
  background-color: #fdfaf3;
  padding: 150px 20px;
  text-align: center;
  color: #0631b3;
}

.script-headline {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.script-subheadline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 60px;
}

.seal-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
}

.seal-icon svg {
  width: 100%;
  height: 100%;
}

/* Services Section */
.services-section {
  background-color: #0631b3;
  padding: 80px 20px 150px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  min-height: 800px;
}

.services-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 120px;
  z-index: 2;
}

.services-labels {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 10px;
  letter-spacing: 2px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 2;
}

.services-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  width: 100%;
}

.services-bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 840px;
  z-index: -1;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.services-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.service-item {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  /* Default hidden */
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  pointer-events: none;
}

.service-item.pos-0 {
  font-size: 140px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
}

.service-item.pos-1 {
  font-size: 100px;
  color: #4a75ff;
  transform: translate(-50%, calc(-50% + 140px)) scale(1);
  opacity: 0.9;
  z-index: 2;
}

.service-item.pos-minus-1 {
  font-size: 100px;
  color: #4a75ff;
  transform: translate(-50%, calc(-50% - 140px)) scale(1);
  opacity: 0.9;
  z-index: 2;
}

.service-item.pos-2 {
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  transform: translate(-50%, calc(-50% + 240px)) scale(1);
  opacity: 0.4;
  z-index: 1;
}

.service-item.pos-minus-2 {
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  transform: translate(-50%, calc(-50% - 240px)) scale(1);
  opacity: 0.4;
  z-index: 1;
}


/* Work Section */
.work-section {
  background-color: #fdfaf3;
  color: #0631b3;
  padding: 40px;
}

.stats-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px 40px;
  font-size: 55px;
}

.stat-bold {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  justify-self: start;
}

.stat-star {
  font-family: sans-serif;
  font-weight: 300;
  font-size: 60px;
  justify-self: center;
  transform: translateY(6px);
}

.stat-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1px;
  justify-self: end;
}

.blue-line {
  border: none;
  border-top: 1px solid #0631b3;
  margin: 0;
  opacity: 0.5;
}

.work-content {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 20px;
  position: relative;
}

.work-left {
  width: 50%;
  padding-left: 40px;
}

.work-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.work-headline {
  margin: 0;
  line-height: 0.85;
}

.work-headline .bold-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 110px;
  text-transform: uppercase;
  display: block;
}

.work-headline .italic-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 110px;
  display: block;
  margin-top: -5px;
  padding-left: 5px;
}

.work-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 50%;
}

.work-section .work-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 2.2;
  text-align: center;
  letter-spacing: 1px;
  max-width: 450px;
  margin-bottom: 60px;
}

.scroll-pill {
  position: absolute;
  bottom: -65px;
  right: 20px;
  width: 40px;
  height: 90px;
  border: 1px solid #0631b3;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 15px 0;
  font-size: 14px;
  background-color: #fdfaf3;
  z-index: 10;
}

/* Chandi Section */
.chandi-section {
  background-color: #fdfaf3;
  padding: 60px 40px;
  color: #0631b3;
}

.chandi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.chandi-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 160px;
  line-height: 0.8;
  margin: 0;
  letter-spacing: -2px;
}

.chandi-top-right {
  text-align: right;
  padding-bottom: 10px;
}

.chandi-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 50px;
  margin: 0 0 15px 0;
  line-height: 1;
}

.chandi-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 0;
}

.chandi-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 600px;
}

.chandi-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #0631b3;
}

.chandi-item img, .chandi-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chandi-item.tall {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.chandi-item.wide {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.chandi-item.square.sq-1 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.chandi-item.square.sq-2 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.chandi-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #fff;
  color: #0631b3;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 2;
}

.chandi-item:not(.tall) .chandi-label {
  top: auto;
  bottom: 20px;
  left: 20px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

/* Hacked Section */
.hacked-section {
  display: flex;
  background-color: #0631b3;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hacked-grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(400px, auto);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.grid-box {
  background-color: #0631b3;
  position: relative;
  overflow: hidden;
}

.box-large-title {
  grid-column: span 2;
  padding: 80px 50px;
  display: flex;
  align-items: center;
}

.box-large-title h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 78px;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -2px;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
}

.box-text {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hacked-header {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hacked-line {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.4);
  width: 100%;
  margin: 0 0 35px 0;
}

.box-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.box-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0 0 20px 0;
  font-weight: 400;
}

.box-text .hacked-sub {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  opacity: 1;
}

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

.hacked-sidebar {
  width: 60px;
  background-color: #fdfaf3;
  color: #0631b3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 40px 0;
}

.sidebar-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* Web Section */
.web-section {
  padding: 80px 40px;
  background-color: #fdfaf3;
  color: #0631b3;
}

.web-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.web-title {
  font-size: 80px;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.web-title .web-bold {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -2px;
}

.web-title .web-italic {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  border: 1px solid #0631b3;
  border-radius: 50px;
  color: #0631b3;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: #0631b3;
  color: #fff;
}

.web-grid {
  display: grid;
  grid-template-columns: 28% 44% 28%;
  gap: 15px;
  height: 700px;
}

.web-col-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}

.web-col-middle, .web-col-right {
  display: flex;
  flex-direction: column;
}

.web-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.web-img-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-inner-border {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(6, 49, 179, 0.4);
  z-index: 1;
  pointer-events: none;
}

.web-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 40px;
}

.web-solid-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 40px;
}

.web-overlay h3, .web-solid-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.web-overlay p, .web-solid-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  margin: 0 0 30px 0;
  opacity: 0.9;
  line-height: 1.5;
}

.web-overlay h3, .web-overlay p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.web-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.web-btn:hover {
  transform: translateX(-50%) scale(1.05);
}

.blue-btn {
  background-color: #0631b3;
  color: #fff;
}

.blue-btn svg, .transparent-btn svg {
  width: 18px;
  height: 18px;
}

.web-solid-card {
  background-color: #0631b3;
}

.web-vertical-line {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 15px 0 25px 0;
}

.transparent-btn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

/* ============================================
   VIRAL SHORT-FORM SECTION  
   ============================================ */

.vs-wrap {
  position: relative;
  background-color: #0631b3;
  padding: 80px 80px 80px 60px; /* aligns left content padding directly at the vertical centerline */
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  color: #fff;
  box-sizing: border-box;
}

/* Horizontal line at top of section spanning across */
.vs-wrap::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

/* Faint giant watermark */
.vs-watermark {
  position: absolute;
  top: -20px;
  right: -50px;
  font-size: 260px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.035);
  letter-spacing: -6px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transform: rotate(-12deg);
}

/* Left sidebar (vertical axis) */
.vs-sidebar {
  position: absolute;
  left: 60px; /* Centerline of vertical line */
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 3;
}

.vs-sidebar-plus {
  position: absolute;
  top: 48px;
  left: 0; /* relative to border-left at left: 60px */
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  background-color: #0631b3; /* cover the intersection */
  padding: 4px;
  line-height: 1;
  z-index: 4;
}

.vs-sidebar-text {
  position: absolute;
  top: 45%;
  left: 0;
  transform: translate(-50%, -50%) rotate(90deg); /* rotated 90deg to read top-to-bottom */
  font-size: 9px;
  letter-spacing: 3px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #0631b3;
  padding: 0 18px; /* horizontal padding creates vertical gap when rotated */
  z-index: 4;
}

.vs-sidebar-dots {
  position: absolute;
  bottom: 80px;
  left: 0;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: #0631b3;
  padding: 12px 0; /* vertical padding creates vertical gap */
  z-index: 4;
}

.vs-sidebar-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.vs-sidebar-dots span:nth-child(1) {
  background-color: #ffffff;
}

.vs-sidebar-dots span:nth-child(2) {
  background-color: rgba(255, 255, 255, 0.5);
}

.vs-sidebar-dots span:nth-child(3) {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Main content wrapper */
.vs-content {
  position: relative;
  z-index: 1;
}

/* ---- HEADER ---- */
.vs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align title and stat at top */
  margin-bottom: 12px;
}

.vs-header-left {
  flex: 1;
  max-width: 60%;
}

.vs-title {
  font-family: 'Inter', sans-serif;
  font-size: 68px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0 0 16px 40px; /* indented 40px from vertical centerline */
  text-transform: uppercase;
  color: #fff;
}

.vs-tbox {
  display: inline-block;
  background-color: #fff;
  color: #0631b3;
  padding: 0 10px;
  margin: 0 4px;
  border-radius: 2px;
}

.vs-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  margin-left: 0; /* starts exactly at vertical centerline */
}

.vs-hline {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

.vs-sparkle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.vs-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0 40px; /* indented 40px from vertical centerline */
}

.vs-desc strong {
  font-weight: 700;
  color: #fff;
}

/* Right stat block */
.vs-header-right {
  flex-shrink: 0;
  text-align: right;
  width: 160px;
}

.vs-stat-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  line-height: 1;
}

.vs-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.9;
  color: #fff;
}

.vs-stat-star {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

.vs-stat-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 12px 0 8px 0;
  width: 100%;
}

.vs-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-transform: uppercase;
}

/* Lines above/below grid */
.vs-grid-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.18);
  width: 100%;
  margin: 36px 0;
}

/* ---- CARDS GRID ---- */
.vs-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: calc(100% - 40px); /* subtract indent */
  margin-left: 40px; /* indented 40px from vertical centerline */
}

/* Card item */
.vs-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14.5;
  border-radius: 4px;
  overflow: hidden;
  background-color: #031680;
  min-width: 0;
}

/* Image / Video */
.vs-card img, .vs-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.vs-card:hover img, .vs-card:hover video {
  transform: scale(1.06);
}

/* Zoom effect for reel3 to crop out top/bottom black letterboxes */
.vs-card video.vs-reel3-zoom {
  transform: scale(1.92);
  transform-origin: center center;
}

.vs-card:hover video.vs-reel3-zoom {
  transform: scale(2.04); /* 1.92 * 1.06 = 2.0352 */
}

/* Gradient Overlay */
.vs-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(
    to bottom,
    rgba(6, 49, 179, 0.1) 0%,
    rgba(6, 49, 179, 0.35) 45%,
    rgba(6, 49, 179, 0.8) 75%,
    rgba(6, 17, 89, 0.96) 100%
  );
}

/* Centered play button */
.vs-play {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: rgba(6, 49, 179, 0.2);
  backdrop-filter: blur(2px);
  cursor: pointer;
  z-index: 3;
}

.vs-play svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  margin-left: 2.5px;
  display: block;
}

.vs-card:hover .vs-play {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

/* Card Content Blocks */
.vs-card-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: auto;
  margin-bottom: 36px;
}

.vs-reel-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.vs-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
}

.vs-card-bottom {
  position: relative;
  text-align: left;
  padding-bottom: 4px;
}

.vs-footer-txt {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

/* L-shaped Corner bracket */
.vs-corner-bracket {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

/* Responsive queries */
@media (max-width: 1024px) {
  .vs-wrap {
    padding: 60px 40px 60px 40px;
  }
  .vs-sidebar {
    left: 40px;
  }
  .vs-title {
    margin-left: 30px;
    font-size: 54px;
  }
  .vs-desc {
    margin-left: 30px;
  }
  .vs-cards {
    margin-left: 30px;
    width: calc(100% - 30px);
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .vs-wrap {
    padding: 40px 20px 40px 20px;
  }
  .vs-sidebar, .vs-wrap::before {
    display: none;
  }
  .vs-title {
    margin-left: 0;
    font-size: 44px;
  }
  .vs-desc {
    margin-left: 0;
  }
  .vs-cards {
    margin-left: 0;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .vs-header-left {
    max-width: 100%;
  }
  .vs-header-right {
    text-align: left;
    width: 100%;
  }
  .vs-stat-block {
    justify-content: flex-start;
  }
}

/* ============================================
   TROPHIES & TRIUMPHS SECTION  
   ============================================ */

.tt-wrap {
  position: relative;
  background: linear-gradient(180deg, #0631b3 0%, #052380 100%);
  padding: 100px 80px 80px 80px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  color: #fff;
  box-sizing: border-box;
}

/* Background elements */
.tt-dot-grid {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 200px;
  height: 300px;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 0;
}

.tt-bg-waves {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 900px;
  height: 900px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.tt-bg-waves svg {
  width: 100%;
  height: 100%;
}

/* Header */
.tt-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.tt-header-left {
  flex: 1;
  max-width: 25%;
}

.tt-logo-wrapper {
  display: inline-flex;
}

.tt-trophy-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tt-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.tt-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1;
}

.tt-logo-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
}

.tt-header-center {
  flex: 2;
  text-align: center;
}

.tt-main-title {
  font-size: 68px;
  font-weight: 900;
  letter-spacing: -2px;
  margin: 0 0 8px 0;
  line-height: 1;
  text-transform: uppercase;
}

.tt-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 34px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.tt-header-right {
  flex: 1;
  max-width: 25%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.tt-header-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 20px;
}

.tt-badge-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.6;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.tt-badge-sparkle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: -2px;
}

.tt-star-large {
  position: absolute;
  top: 0px;
  right: -50px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 28px;
}

.tt-star-small {
  position: absolute;
  top: 30px;
  right: -20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

/* Tabs list */
.tt-interactive-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0; /* No gaps to allow precise negative margin overlap */
  margin: 60px auto;
  max-width: 1200px;
  position: relative;
  z-index: 2;
  min-height: 440px;
}

.tt-tab {
  position: relative;
  width: 140px;
  height: 380px;
  border-radius: 50%; /* Perfect ellipse shape */
  border: 1px solid #ffffff;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  margin-left: -48px; /* Negative margin for overlapping capsules */
  z-index: 1;
}

.tt-tab:nth-child(1) { z-index: 10; }
.tt-tab:nth-child(2) { z-index: 9; }
.tt-tab:nth-child(3) { z-index: 8; }
.tt-tab:nth-child(4) { z-index: 7; }
.tt-tab:nth-child(5) { z-index: 6; }
.tt-tab:nth-child(6) { z-index: 5; }

.tt-tab:first-child {
  margin-left: 0;
}

.tt-tab:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  z-index: 2; /* Lift hovered tab above adjacent ovals */
}

.tt-tab.active {
  width: 390px;
  height: 390px;
  border-radius: 50%; /* Expand to perfect circle */
  background-color: #ffffff;
  border-color: #ffffff;
  cursor: default;
  color: #0631b3;
  justify-content: center;
  z-index: 20 !important; /* Sit on top of overlapping neighboring ovals */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22); /* Premium depth shadow */
}

/* Inactive content */
.tt-tab-inactive {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 24px 0;
  transition: opacity 0.3s ease;
  opacity: 1;
  pointer-events: auto;
}

.tt-tab.active .tt-tab-inactive {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.tt-tab-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #002cf3;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0, 44, 243, 0.2);
}

.tt-tab-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  writing-mode: vertical-rl;
  margin: auto 0;
  white-space: nowrap;
}

/* Active content */
.tt-tab-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease 0.2s;
  text-align: center;
  display: none;
}

.tt-tab.active .tt-tab-active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.tt-circle-logo {
  color: #002cf3;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-circle-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #002cf3;
  margin-bottom: 12px;
  opacity: 0.95;
}

.tt-circle-title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #002cf3;
  margin: 0 0 18px 0;
}

.tt-circle-year-label {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 12px;
  color: #002cf3;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.tt-year-star {
  width: 14px;
  height: 14px;
  color: #002cf3;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -2px;
}

.tt-circle-years {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #002cf3;
  margin-bottom: 20px;
}

.tt-circle-wreath {
  color: #002cf3;
}

/* Dashboard Box */
.tt-results-box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 45px 36px 36px 36px;
  margin-top: 60px;
  background-color: transparent;
  z-index: 2;
}

.tt-box-badge-left {
  position: absolute;
  top: -12px;
  left: 36px;
  background-color: #0631b3; /* Match section background gradient */
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tt-box-badge-right {
  position: absolute;
  top: -12px;
  right: 36px;
  background-color: #0631b3; /* Match section background gradient */
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Stat grid */
.tt-results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 1.2fr;
  gap: 24px;
  align-items: stretch;
}

/* Stat column */
.tt-stat-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 16px;
}

.tt-stat-num-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.tt-stat-num {
  font-size: 42px; /* Increased from 38px for bold presence */
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
}

.tt-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #60a5fa; /* Soft blue */
  margin-bottom: 6px;
}

.tt-stat-desc {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

/* Checklist column */
.tt-checklist-col {
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.tt-check-item {
  display: flex;
  align-items: center;
}

.tt-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #002cf3; /* Match brand blue */
  color: #ffffff; /* White checkmark */
  font-size: 11px;
  font-weight: 900;
  margin-right: 10px;
  flex-shrink: 0;
}

.tt-check-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.tt-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.tt-footer-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.tt-action-btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #002cf3;
  margin-right: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 44, 243, 0.25);
  cursor: pointer;
  flex-shrink: 0;
}

.tt-action-btn-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 44, 243, 0.4);
}

.tt-action-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-transform: uppercase;
}

.tt-footer-center {
  display: flex;
  justify-content: center;
  flex: 1.2;
}

.tt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  background-color: transparent;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.tt-cta-btn:hover {
  background-color: #ffffff;
  color: #0631b3;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.tt-footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 20px;
}

.tt-fstat {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.tt-fstat-val {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.tt-fstat-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 3px;
}

.tt-fdivider {
  width: 1px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE QUERIES FOR TT SECTION
   ============================================ */

@media (max-width: 1024px) {
  .tt-wrap {
    padding: 80px 40px 60px 40px;
  }

  .tt-main-title {
    font-size: 52px;
  }

  .tt-subtitle {
    font-size: 28px;
  }

  .tt-interactive-container {
    min-height: 400px;
    gap: 0;
  }

  .tt-tab {
    width: 110px;
    height: 320px;
    margin-left: -32px;
  }

  .tt-tab:first-child {
    margin-left: 0;
  }

  .tt-tab.active {
    width: 350px;
    height: 350px;
    margin-left: -32px;
  }

  .tt-results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }

  .tt-stat-col:nth-child(3) {
    border-right: none;
  }

  .tt-checklist-col {
    grid-column: span 3;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
    gap: 12px;
  }

  .tt-check-item {
    width: 48%;
  }

  .tt-footer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .tt-footer-left {
    justify-content: center;
    width: 100%;
  }

  .tt-footer-center {
    width: 100%;
  }

  .tt-footer-right {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .tt-wrap {
    padding: 60px 24px 50px 24px;
  }

  .tt-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-bottom: 40px;
  }

  .tt-header-left, .tt-header-right {
    max-width: 100%;
    justify-content: center;
  }

  .tt-header-badge {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 0;
    padding-top: 12px;
    align-items: center;
  }

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

  .tt-main-title {
    font-size: 38px;
  }

  .tt-subtitle {
    font-size: 24px;
  }

  .tt-interactive-container {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 10px 0 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    gap: 8px; /* Restores vertical spacing/gaps in scroll view */
  }

  .tt-interactive-container::-webkit-scrollbar {
    height: 4px;
  }

  .tt-interactive-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
  }

  .tt-tab {
    width: 120px;
    height: 300px;
    margin-left: 0; /* Clear negative margin overlap on mobile */
    flex-shrink: 0;
  }

  .tt-tab:first-child {
    margin-left: 0;
  }

  .tt-tab.active {
    width: 300px;
    height: 300px;
    margin-left: 0; /* Clear negative margin overlap on mobile */
    flex-shrink: 0;
  }

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

  .tt-stat-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 0;
    padding-bottom: 16px;
  }

  .tt-stat-col:nth-child(5) {
    border-bottom: none;
  }

  .tt-checklist-col {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
    margin-top: 0;
  }

  .tt-check-item {
    width: 100%;
  }

  .tt-box-badge-right {
    display: none;
  }
}

/* ============================================
   TESTIMONIAL SECTION Styles
   ============================================ */

.testi-wrap {
  position: relative;
  background-color: #f2f5fb; /* Cool light blue/grey background matching mockup */
  color: #002cf3; /* Brand royal blue color */
  padding: 120px 80px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.testi-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 120px;
  position: relative;
  z-index: 1;
}

/* Left Column: Media & Stats */
.testi-media-col {
  position: relative;
  width: 440px;
  height: 440px;
  flex-shrink: 0;
}

.testi-blue-box {
  position: absolute;
  left: 0;
  top: 45px;
  width: 280px;
  height: 350px;
  background-color: #002cf3;
  color: #ffffff;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0, 44, 243, 0.08);
}

.testi-dot-pattern {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background-image: radial-gradient(rgba(3, 22, 128, 0.4) 1.2px, transparent 1.2px);
  background-size: 11px 11px;
  pointer-events: none;
  z-index: 0;
}

.testi-stats-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 120px; /* Do not overlap with the video card */
}

.testi-stats-badge {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3.5px 10px;
  text-align: center;
  text-transform: uppercase;
}

.testi-stats-number {
  font-size: 58px; /* Increased for matching mockup's bold stats */
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
}

.testi-stats-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.testi-video-card {
  position: absolute;
  left: 170px;
  top: 0;
  width: 270px;
  height: 420px;
  background-color: #031680;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 44, 243, 0.12);
  z-index: 2;
}

.testi-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1);
}

.testi-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12) 0%,
    transparent 30%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 3;
}

.testi-video-badge {
  align-self: flex-start;
  background-color: #ffffff;
  color: #002cf3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.testi-video-sparkle {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #ffffff;
  width: 16px;
  height: 16px;
}

.testi-video-play {
  align-self: center;
  margin-bottom: 24px;
  width: 56px; /* Sized to match mockup perfectly */
  height: 56px;
  border-radius: 50%;
  border: 2px solid #ffffff; /* 2px solid white border */
  background-color: transparent; /* No blue tint, matches mockup */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.testi-video-play svg {
  width: 18px;
  height: 18px;
  transform: translateX(1.5px); /* Shift slightly right to center visual weight of triangle */
}

.testi-video-play:hover {
  transform: scale(1.08);
}

/* Right Column: Quote & Info */
.testi-quote-col {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-quote-mark {
  position: absolute;
  top: -85px;
  right: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 210px;
  color: rgba(0, 44, 243, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testi-quote-text {
  font-size: 52px; /* Increased for premium typographic layout */
  line-height: 1.15;
  color: #002cf3;
  margin: 0 0 36px 0;
  letter-spacing: -0.5px;
}

.font-serif-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

.font-outline-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px #002cf3;
}

.font-serif-bold-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.testi-divider {
  border: none;
  border-top: 1px solid rgba(0, 44, 243, 0.15);
  margin: 0 0 30px 0;
  width: 100%;
}

.testi-client-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testi-client-logo {
  width: 68px;
  height: 68px;
  border: 1px solid #002cf3; /* Solid royal blue border matching mockup */
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Left-aligned icon and text */
  justify-content: space-between; /* Icon top, text bottom */
  color: #002cf3;
  box-sizing: border-box;
  padding: 10px;
  position: relative;
}

.testi-client-logo-icon {
  width: 14px;
  height: 14px;
}

.testi-client-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  text-transform: none; /* Renders as Client Logo (mixed case) */
  line-height: 1.15;
  letter-spacing: 0.1px;
}

.testi-client-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testi-client-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #002cf3;
}

.testi-client-company {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #002cf3;
}

.testi-client-role {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(0, 44, 243, 0.7);
}


/* ============================================
   RESPONSIVE Styles for Testimonial Section
   ============================================ */

@media (max-width: 1024px) {
  .testi-wrap {
    padding: 100px 40px;
  }

  .testi-container {
    flex-direction: column;
    align-items: center;
    gap: 80px;
    text-align: center;
  }

  .testi-media-col {
    width: 440px;
    height: 440px;
  }

  .testi-quote-col {
    align-items: center;
    width: 100%;
    max-width: 650px;
  }

  .testi-quote-text {
    font-size: 42px;
  }

  .testi-quote-mark {
    left: 50%;
    transform: translateX(-50%);
    top: -95px;
    right: auto;
  }

  .testi-client-card {
    justify-content: center;
  }

}

@media (max-width: 768px) {
  .testi-wrap {
    padding: 80px 20px;
  }

  .testi-container {
    text-align: left;
    align-items: flex-start;
    gap: 60px;
  }

  .testi-media-col {
    width: 100%;
    max-width: 320px;
    height: 380px;
    margin: 0 auto;
  }

  .testi-blue-box {
    width: 63%;
    height: 280px;
    top: 40px;
    left: 0;
    padding: 24px 16px;
  }

  .testi-dot-pattern {
    height: 100px;
  }

  .testi-stats-content {
    width: 100%;
  }

  .testi-stats-number {
    font-size: 42px;
  }

  .testi-stats-label {
    font-size: 11px;
  }

  .testi-video-card {
    width: 61%;
    height: 340px;
    left: auto;
    right: 0;
  }

  .testi-video-overlay {
    padding: 16px;
  }

  .testi-video-badge {
    font-size: 8px;
    padding: 5px 10px;
  }

  .testi-video-sparkle {
    top: 14px;
    right: 16px;
    font-size: 14px;
  }

  .testi-video-play {
    width: 42px;
    height: 42px;
  }

  .testi-video-play svg {
    width: 14px;
    height: 14px;
    transform: translateX(1px);
  }

  .testi-quote-col {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    align-items: flex-start;
    padding-left: 0;
  }

  .testi-quote-text {
    font-size: 32px;
    text-align: left;
    margin-bottom: 24px;
  }

  .testi-quote-mark {
    font-size: 120px;
    top: -65px;
    left: auto;
    right: 0;
    transform: none;
  }

  .testi-client-card {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 16px;
  }
}

/* ============================================
   UNANSWERED CTA BANNER SECTION Styles
   ============================================ */

.unanswered-wrap {
  background-color: #f2f5fb; /* Matches testimonial section background */
  padding: 80px 80px 140px 80px;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.unanswered-container {
  max-width: 1200px;
  margin: 0 auto;
}

.unanswered-card {
  position: relative;
  background-color: #ffffff; /* Pure white card */
  border: 1px solid rgba(0, 44, 243, 0.22);
  border-radius: 24px;
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 44, 243, 0.04);
  box-sizing: border-box;
}

/* Absolute top right badge */
.unanswered-top-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #002cf3;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Left Column: Art and Headings */
.unanswered-art-col {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.unanswered-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #002cf3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.unanswered-star-icon {
  flex-shrink: 0;
}

.unanswered-heading-wrapper {
  position: relative;
  display: inline-block; /* Shrink-wraps to letters so overlay centers perfectly */
}

.unanswered-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 146px; /* Sized for bold condensed look */
  font-weight: 900;
  line-height: 0.85;
  color: #002cf3;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  z-index: 0;
}

.unanswered-overlay-img {
  position: absolute;
  left: 50%;
  top: 66%; /* Centered vertically relative to the letters */
  transform: translate(-50%, -50%);
  width: 68%; /* Covers letters A through R perfectly */
  height: auto;
  mix-blend-mode: multiply; /* Blends white background out and merges texture */
  pointer-events: none;
  z-index: 1;
}

.unanswered-sub-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.unanswered-sub-txt {
  color: #002cf3;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

/* Vertical Divider */
.unanswered-divider {
  width: 1px;
  height: 180px;
  background-color: rgba(0, 44, 243, 0.15);
  flex-shrink: 0;
}

/* Right Column: CTA Info and Button */
.unanswered-cta-col {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-left: 40px;
  box-sizing: border-box;
}

.unanswered-cta-heading {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #002cf3;
  line-height: 1.45;
  letter-spacing: 1.2px;
  margin: 0;
}

.unanswered-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #002cf3;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 44, 243, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.unanswered-cta-btn:hover {
  transform: translateY(-2px);
  background-color: #031680;
  box-shadow: 0 12px 28px rgba(0, 44, 243, 0.22);
}

.unanswered-arrow-icon {
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE Styles for Unanswered CTA Section
   ============================================ */

@media (max-width: 1024px) {
  .unanswered-wrap {
    padding: 80px 40px;
  }

  .unanswered-card {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 50px 40px;
  }

  .unanswered-art-col {
    width: 100%;
    align-items: center;
  }

  .unanswered-tag {
    justify-content: center;
  }

  .unanswered-heading-wrapper {
    display: inline-block;
    text-align: center;
  }

  .unanswered-heading {
    font-size: 110px;
    text-align: center;
  }

  .unanswered-overlay-img {
    width: 68%;
  }

  .unanswered-sub-row {
    justify-content: center;
    gap: 40px;
  }

  .unanswered-divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }

  .unanswered-cta-col {
    width: 100%;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .unanswered-wrap {
    padding: 40px 16px;
  }

  .unanswered-card {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 20px 32px 20px;
    gap: 20px;
    text-align: left;
  }

  /* Art column: full width, centered */
  .unanswered-art-col {
    width: 100%;
    align-items: center;
    gap: 12px;
  }

  .unanswered-tag {
    justify-content: center;
    font-size: 9px;
    letter-spacing: 1px;
  }

  /* Heading wrapper: inline-block shrink-wraps the text so the % based image perfectly aligns to the text boundaries just like on PC */
  .unanswered-heading-wrapper {
    display: inline-block;
    text-align: center;
    width: auto;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .unanswered-heading {
    font-size: clamp(80px, 28vw, 115px);
    letter-spacing: -2px;
    text-align: center;
    line-height: 0.85;
    white-space: nowrap;
  }

  /* Composite image: perfectly mimics PC proportion to the text */
  .unanswered-overlay-img {
    width: 68%;
    left: 50%;
    top: 66%;
  }

  .unanswered-sub-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-top: 4px;
  }

  .unanswered-sub-txt {
    font-size: 7px;
    letter-spacing: 0.4px;
  }

  /* Divider becomes a thin horizontal line */
  .unanswered-divider {
    width: 100%;
    height: 1px;
    margin: 4px 0;
  }

  /* CTA column: full width, centered, compact */
  .unanswered-cta-col {
    width: 100%;
    padding-left: 0;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .unanswered-cta-heading {
    font-size: 22px;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.4;
  }

  .unanswered-cta-btn {
    font-size: 11px;
    padding: 14px 22px;
    gap: 10px;
    margin: 0 auto;
  }

  /* Badge: smaller on mobile */
  .unanswered-top-badge {
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
  }

  .unanswered-top-badge svg {
    width: 11px;
    height: 11px;
  }
}

/* ============================================
   UNANSWERED PAGE SPECIFIC Styles & Light Nav
   ============================================ */

.unanswered-page-body {
  background-color: #f2f5fb;
  color: #002cf3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.unanswered-page-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 100px 80px;
  box-sizing: border-box;
}

/* Light navbar styles for light background pages */
.light-nav .nav-logo {
  color: #002cf3;
}

.light-nav .logo-star {
  color: #002cf3;
}

.light-nav .nav-links a {
  color: #002cf3;
  opacity: 0.8;
}

.light-nav .nav-links a:hover {
  opacity: 1;
}

.light-nav .nav-links a.active {
  opacity: 1;
  border-bottom: 1.5px solid #002cf3;
}

.light-nav .cta-button {
  color: #002cf3;
  border-color: rgba(0, 44, 243, 0.45);
}

.light-nav .cta-button:hover {
  background-color: rgba(0, 44, 243, 0.05);
}

@media (max-width: 1024px) {
  .unanswered-page-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .unanswered-page-content {
    padding: 24px;
  }
}

/* ============================================
   CONTACT PAGE SPECIFIC Styles
   ============================================ */

html {
  scroll-behavior: smooth;
}

.contact-page-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background-color: #f2f5fb;
}

.contact-page-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100vh;
  width: 100%;
}

/* Left Column: Branding and Editorial Header */
.contact-left-col {
  width: 42%;
  background-color: #002cf3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 80px;
  box-sizing: border-box;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 0 30px rgba(0, 44, 243, 0.12);
  z-index: 10;
}

/* Right Column: Abstract BG and Form Card */
.contact-right-col {
  width: 58%;
  background-color: #f2f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Custom Header inside Left Column */
.contact-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.contact-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-logo .logo-star {
  color: #ffffff;
  font-size: 16px;
}

.contact-logo .logo-text {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.contact-connect-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.3s;
  opacity: 0.85;
}

.contact-connect-link:hover {
  opacity: 1;
}

/* Headline Content Center Left */
.contact-content-center {
  margin: auto 0;
  padding: 40px 0;
}

.contact-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 108px;
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -2.5px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}

.contact-title .serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-size: 102px;
  font-weight: 400;
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: -1px;
  display: inline-block;
}

.contact-tagline-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}

.logo-grid-icon {
  margin-right: 8px;
  flex-shrink: 0;
}

.contact-sparkle {
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-tagline-text {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  letter-spacing: 0.8px;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.contact-tagline-text strong {
  color: #ffffff;
  font-weight: 700;
}

/* Bottom Rotating Seal (Left Column) */
.contact-seal-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  margin-top: 40px;
  margin-bottom: 24px;
  left: -8px;
}

.contact-seal-svg {
  width: 100%;
  height: 100%;
  animation: contact-rotate-seal 20s linear infinite;
}

.contact-seal-center-star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.25);
}

@keyframes contact-rotate-seal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Bottom Contact Rows */
.contact-info-footer {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  margin-top: auto;
  z-index: 5;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

.contact-info-val {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.contact-info-val:hover {
  opacity: 0.85;
}

/* Right Column Abstract Background Graphics */
.contact-bg-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(rgba(0, 44, 243, 0.08) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.contact-bg-curves {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(0, 44, 243, 0.06);
  background: radial-gradient(circle, rgba(0, 44, 243, 0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.contact-bg-curves::before {
  content: '';
  position: absolute;
  top: 40px; left: 40px; right: 40px; bottom: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 44, 243, 0.04);
}

/* Floating Dark Card inside Right Column */
.contact-card {
  position: relative;
  z-index: 5;
  background: radial-gradient(circle at top, #091552 0%, #060b27 75%);
  width: 100%;
  max-width: 530px;
  padding: 48px 48px 36px 48px;
  border-radius: 24px;
  border: 1px solid rgba(0, 44, 243, 0.22);
  box-shadow: 0 32px 64px rgba(6, 11, 39, 0.25);
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
}

/* Top Glow Orbit Header Icon */
.contact-card-header-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-glow-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #002cf3;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 44, 243, 0.7);
  z-index: 3;
}

.contact-card-orbit {
  position: absolute;
  border: 1px solid rgba(0, 44, 243, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-card-orbit-1 {
  width: 56px;
  height: 56px;
  border-style: dashed;
  animation: contact-rotate-seal 40s linear infinite;
}

.contact-card-orbit-2 {
  width: 74px;
  height: 74px;
  opacity: 0.6;
}

.contact-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #ffffff;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.contact-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 32px 0;
}

/* Interactive Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  margin: 0;
}

.input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 44, 243, 0.25);
  border-radius: 8px;
  padding: 13px 40px 13px 16px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  box-sizing: border-box;
  transition: all 0.3s;
}

.input-wrapper textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 44, 243, 0.25);
  border-radius: 8px;
  padding: 13px 40px 13px 16px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  box-sizing: border-box;
  height: 90px;
  resize: vertical;
  transition: all 0.3s;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.input-wrapper input:hover,
.input-wrapper textarea:hover {
  border-color: rgba(0, 44, 243, 0.50);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #002cf3;
  box-shadow: 0 0 12px rgba(0, 44, 243, 0.20);
  background: rgba(0, 44, 243, 0.05);
}

.input-icon {
  position: absolute;
  right: 16px;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  transition: color 0.3s;
}

.input-wrapper input:focus + .input-icon,
.input-wrapper textarea:focus + .input-icon {
  color: #60a5fa;
}

/* Dashed Attach Box Styling */
.attach-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed rgba(0, 44, 243, 0.28);
  border-radius: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.12);
  transition: all 0.3s;
}

.attach-box:hover {
  border-color: #002cf3;
  background: rgba(0, 44, 243, 0.05);
}

.attach-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.attach-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 44, 243, 0.18);
  color: #60a5fa;
}

.attach-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.attach-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.attach-label .muted {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.attach-desc {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.attach-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.drag-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}

.browse-link {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.browse-link a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

/* ========================================= */
/* Form Focus & Hover States */
/* ========================================= */
.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: #4a75ff;
  outline: none;
}
.input-wrapper input:focus + .input-icon,
.input-wrapper textarea:focus + .input-icon {
  color: #4a75ff;
}

.submit-btn:hover {
  background-color: #fff;
  color: #0631b3;
}

.attach-right .browse-link a:hover {
  text-decoration: underline;
}

/* Submit Button */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #002cf3;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 15px 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 8px 24px rgba(0, 44, 243, 0.20);
  width: 100%;
}

.submit-btn:hover {
  background-color: #031680;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 44, 243, 0.32);
}

.btn-arrow-icon {
  transition: transform 0.3s;
}

.submit-btn:hover .btn-arrow-icon {
  transform: translateX(4px);
}

/* Secure Notice Footer */
.contact-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10.5px;
  font-family: 'Inter', sans-serif;
}

.lock-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   RESPONSIVE Styles for Contact Page
   ============================================ */

@media (max-width: 1200px) {
  .contact-left-col {
    padding: 60px 50px;
  }

  .contact-right-col {
    padding: 60px 50px;
  }

  .contact-title {
    font-size: 96px;
  }

  .contact-title .serif-italic {
    font-size: 90px;
  }
}

@media (max-width: 1024px) {
  .contact-page-wrap {
    flex-direction: column;
    align-items: center;
  }

  .contact-left-col {
    width: 100%;
    min-height: auto;
    padding: 80px 40px 60px 40px;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 44, 243, 0.12);
  }

  .contact-right-col {
    width: 100%;
    min-height: auto;
    padding: 60px 40px 80px 40px;
  }

  .contact-content-center {
    margin: 40px 0;
  }

  .contact-tagline-wrap {
    justify-content: center;
    margin-top: 36px;
  }

  .contact-seal-wrap {
    position: static;
    margin: 40px auto 20px auto;
  }

  .contact-info-footer {
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }

  .contact-card {
    max-width: 600px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .contact-left-col {
    padding: 60px 24px 40px 24px;
    align-items: flex-start;
    text-align: left;
  }

  .contact-right-col {
    padding: 40px 24px 60px 24px;
  }

  .contact-title {
    font-size: clamp(45px, 13vw, 68px);
    letter-spacing: -1.5px;
    text-align: left;
  }

  .contact-title .serif-italic {
    font-size: clamp(40px, 12vw, 64px);
  }

  .contact-tagline-wrap {
    justify-content: flex-start;
  }

  .contact-info-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 30px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .attach-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .attach-right {
    align-items: center;
  }

  .contact-card {
    padding: 32px 20px;
  }
}

/* ========================================= */
/* GLOBAL TRANSITIONS & ANIMATIONS           */
/* ========================================= */

/* Smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* Global hover transitions on interactive elements */
a, button, .cta-button, .explore-link, .tt-cta-btn,
.unanswered-cta-btn, .btn-view-all, .web-btn {
  transition: color 0.3s ease, background-color 0.3s ease,
              border-color 0.3s ease, transform 0.3s ease,
              box-shadow 0.3s ease, opacity 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.explore-link:hover {
  opacity: 1;
  border-bottom-color: rgba(255,255,255,0.8);
}

.nav-links a:hover {
  opacity: 1;
}

/* Image cards: hover lift & un-grayscale */
.card {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease, box-shadow 0.5s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  filter: grayscale(0%) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Chandi grid items: zoom on hover */
.chandi-item {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.chandi-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.chandi-item img, .chandi-item video {
  transition: transform 0.6s ease;
}

.chandi-item:hover img, .chandi-item:hover video {
  transform: scale(1.08);
}

/* Web section cards: hover lift */
.web-card, .web-img-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.web-card:hover, .web-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.web-img-card img {
  transition: transform 0.6s ease;
}

.web-img-card:hover img {
  transform: scale(1.05);
}

/* Grid boxes hover */
.grid-box {
  transition: background-color 0.4s ease;
}

.grid-box.box-text:hover {
  background-color: #0842d0;
}

/* Reel cards hover */
.vs-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vs-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

/* Scroll-down button pulse */
.scroll-btn {
  transition: border-color 0.3s ease, transform 0.3s ease;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}

.scroll-btn:hover {
  border-color: rgba(255,255,255,0.7);
  animation-play-state: paused;
}

/* Play button pulse */
.play-btn, .vs-play, .testi-video-play {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-btn:hover, .vs-play:hover, .testi-video-play:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Contact seal rotation */
.contact-seal-svg {
  animation: sealSpin 20s linear infinite;
}

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

/* Sparkle/star gentle pulse */
.logo-star, .star-icon, .tt-star-large, .tt-star-small {
  animation: starPulse 3s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}

/* Trophies CTA button */
.tt-cta-btn {
  transition: background-color 0.3s ease, transform 0.3s ease,
              box-shadow 0.3s ease, letter-spacing 0.3s ease;
}

.tt-cta-btn:hover {
  transform: translateY(-2px);
  letter-spacing: 2.5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Unanswered CTA button */
.unanswered-cta-btn {
  transition: background-color 0.3s ease, transform 0.3s ease,
              box-shadow 0.3s ease;
}

.unanswered-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ========================================= */
/* SCROLL-REVEAL ANIMATION SYSTEM            */
/* ========================================= */

/* Fade up */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="fade-left"] {
  transform: translateX(-40px);
}

[data-reveal="fade-right"] {
  transform: translateX(40px);
}

[data-reveal="zoom-in"] {
  transform: scale(0.92);
}

/* Revealed state */
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays for children */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }


/* ==========================================================================
   Scribed7 RESPONSIVE PATCH
   ========================================================================== */



/* TABLET & MOBILE (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  /* Global Resets */
  body, html {
    overflow-x: hidden;
    width: 100%;
  }

  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Typography Scaling */
  h1, .hero-title, .headline { font-size: clamp(40px, 8vw, 80px) !important; line-height: 1.1 !important; }
  h2 { font-size: clamp(30px, 6vw, 60px) !important; }
  h3 { font-size: clamp(24px, 5vw, 40px) !important; }
  p, .sub-text, .desc-text { font-size: clamp(14px, 3vw, 18px) !important; }

  /* Hero Section */
  .hero-section {
    padding: 100px 20px !important;
    min-height: auto !important;
  }
  .hero-content { width: 100% !important; margin: 0 auto !important; }

  /* Grids to 2 Columns */
  .services-grid, 
  .vs-cards, 
  .grid-2, 
  .grid-3, 
  .grid-4 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Specific Adjustments */
  .web-col-left, .web-col-middle, .web-col-right {
    width: 100% !important;
    height: 300px !important;
  }
  .web-card img, .chandi-card img {
    object-fit: cover !important;
  }

  /* Flexbox Layouts */
  .flex-row, .work-header-row, .vs-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  
  .work-header-left, .work-header-right, .vs-header-left {
    width: 100% !important;
    padding-left: 0 !important;
  }

  /* Footer & Navbar */
  .footer-container {
    flex-direction: column !important;
    gap: 40px !important;
  }
}

/* MOBILE ONLY (max-width: 768px) */
@media screen and (max-width: 768px) {
  /* Grids to 1 Column */
  .services-grid, 
  .vs-cards, 
  .grid-2, 
  .grid-3, 
  .grid-4 {
    grid-template-columns: 1fr !important;
  }

  /* Card Heights */
  .web-col-left, .web-col-middle, .web-col-right,
  .service-card, .web-card, .chandi-card {
    height: 250px !important;
    width: 100% !important;
    min-width: 100% !important;
  }

  /* Mobile Navbar */
  .nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
    width: 100% !important;
    margin-top: 10px !important;
  }
  .navbar {
    flex-direction: column !important;
    height: auto !important;
    padding: 20px !important;
  }
  .cta-button {
    margin-top: 15px !important;
  }
}

/* ==========================================================================
   MOBILE LAYOUT EMERGENCY FIXES (Appended)
   ========================================================================== */

@media screen and (max-width: 1024px) {
  /* Fix Absolute Positioning Overflows */
  .hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    padding: 100px 20px 40px !important;
  }
  
  .center-content {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    margin: 40px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Handle absolute cards in Hero */
  .card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 15px auto !important;
    transform: none !important;
    max-width: 100% !important;
  }
  
  /* Script Section */
  .script-headline { font-size: clamp(24px, 6vw, 42px) !important; text-align: center; }
  .script-subheadline { font-size: clamp(18px, 4vw, 24px) !important; text-align: center; }
  .seal-icon { margin-top: 30px !important; }
  
  /* Services Section */
  .services-labels {
    position: relative !important;
    top: auto !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
  }
  .service-item {
    font-size: clamp(35px, 10vw, 80px) !important;
    white-space: normal !important;
    line-height: 1.1 !important;
    text-align: center !important;
  }
  .services-bg-image {
    width: 100% !important;
    height: auto !important;
    opacity: 0.2 !important; /* Make it subtle so text is readable */
  }

  /* Work Section - Massive Text Fixes */
  .work-headline {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .work-headline .bold-text {
    font-size: clamp(40px, 13vw, 150px) !important;
    line-height: 0.9 !important;
    display: block !important;
  }
  .work-headline .italic-text {
    font-size: clamp(35px, 10vw, 120px) !important;
    display: block !important;
    margin-top: 10px !important;
  }
  .work-label { justify-content: center !important; width: 100% !important; margin-bottom: 20px !important; }
  .work-header-left { align-items: center !important; text-align: center !important; }
  
  /* Portfolio (Chandi) */
  .chandi-title { font-size: clamp(30px, 10vw, 60px) !important; text-align: center !important; }
  .chandi-desc { text-align: center !important; }
  .chandi-header {
    flex-direction: column-reverse !important; 
    align-items: center !important;
    gap: 20px !important;
  }

  /* Force word wrapping on anything that tries to escape */
  * {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
}

/* ==========================================================================
   ADVANCED MOBILE GRID REWRITE (User Screenshots)
   ========================================================================== */

@media screen and (max-width: 768px) {
  
  /* --- HERO SECTION --- */
  .hero {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: auto !important;
    gap: 15px !important;
    padding-top: 100px !important;
    align-items: center !important;
  }
  
  .card, .center-content, .desc-text {
    position: relative !important;
    left: auto !important; right: auto !important; top: auto !important;
    margin: 0 !important; width: 100% !important; transform: none !important;
  }
  
  .center-content { display: contents !important; }
  
  .bust-card { grid-column: 1 / 2; grid-row: 1 / 4; align-self: start; }
  
  .who-we-are { grid-column: 2 / 3; grid-row: 1; align-self: end; margin-bottom: 5px !important; }
  .headline { grid-column: 2 / 3; grid-row: 2; font-size: clamp(35px, 10vw, 60px) !important; margin-bottom: 5px !important; }
  .divider { grid-column: 2 / 3; grid-row: 3; margin-bottom: 5px !important; }
  .desc-text { grid-column: 2 / 3; grid-row: 4; margin-bottom: 20px !important; align-self: start; }
  
  .news-card { grid-column: 1 / 2; grid-row: 4 / 6; align-self: end; }
  .zoe-card { grid-column: 1 / 2; grid-row: 6 / 8; }
  
  .starry-card { grid-column: 2 / 3; grid-row: 5 / 7; align-self: start; margin-top: 20px !important; }
  
  .sub-text { grid-column: 1 / 3; grid-row: 8; margin-top: 30px !important; }
  .explore-link { grid-column: 1 / 3; grid-row: 9; }
  
  .leon-card { display: none !important; }
  

  /* --- SCRIPT SECTION --- */
  .script-section { padding: 60px 20px !important; }
  .script-content { display: flex !important; flex-direction: column !important; align-items: center !important; }
  .script-headline { text-align: center !important; font-size: clamp(26px, 7vw, 42px) !important; }
  .script-subheadline { text-align: center !important; font-size: clamp(18px, 5vw, 24px) !important; font-style: italic !important; }
  .seal-icon { margin-top: 50px !important; width: 90px !important; height: 90px !important; }
  
  
  /* --- WEB EXPERIENCES SECTION --- */
  .web-section { padding-top: 40px !important; }
  .web-header {
    flex-direction: row !important;
    align-items: flex-start !important;
    position: relative !important;
    margin-bottom: 25px !important;
  }
  .web-title-wrapper {
    display: flex !important;
    flex-direction: column !important;
    max-width: 65% !important;
  }
  .web-title {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0px !important;
  }
  .web-title .web-bold {
    font-size: clamp(40px, 15vw, 65px) !important;
    line-height: 1 !important;
  }
  .web-title .web-italic {
    font-size: clamp(30px, 12vw, 50px) !important;
    margin-top: -5px !important;
    line-height: 1 !important;
  }
  
  .btn-view-all {
    position: absolute !important;
    top: 5px !important;
    right: 0px !important;
    font-size: 9px !important;
    padding: 12px 16px !important;
    white-space: nowrap !important;
    border-radius: 30px !important;
  }

  .web-mobile-subtext {
    display: block !important;
    margin-top: 20px !important;
  }
  .web-line-star {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
  }
  .web-line-star hr.blue-line {
    flex-grow: 1 !important;
    border: none !important;
    border-top: 1px solid #0631b3 !important;
    margin: 0 !important;
  }
  .star-icon {
    color: #0631b3 !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }
  .web-sub-p {
    color: #0631b3 !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    font-family: 'Inter', sans-serif !important;
  }

  /* Card Styles */
  .web-card {
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  
  /* Make whole card clickable and hide overlay icon */
  .web-overlay {
    background: transparent !important;
    padding: 0 !important;
  }
  .web-overlay .web-btn {
    opacity: 0 !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    bottom: auto !important;
    right: auto !important;
    transform: none !important;
    border-radius: 0 !important;
  }

  .web-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }
  .web-col-left, .web-col-middle, .web-col-right {
    display: contents !important; 
  }
  .web-col-middle .web-card {
    grid-column: 1 / 3 !important;
    grid-row: 1 !important;
    height: 380px !important;
  }
  .web-col-left .web-card:nth-child(1) { /* Chandi */
    grid-column: 1 / 2 !important;
    grid-row: 2 / 4 !important;
    height: 100% !important; 
    min-height: 250px !important;
  }
  .web-col-left .web-card:nth-child(2) { /* Kite */
    grid-column: 2 / 3 !important;
    grid-row: 2 !important;
    height: 130px !important;
  }
  .web-col-right .web-card { /* Lakshmi */
    grid-column: 2 / 3 !important;
    grid-row: 3 !important;
    height: 130px !important;
  }


  /* --- CHANDI PORTFOLIO SECTION --- */
  .chandi-top {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .chandi-title {
    font-size: clamp(50px, 15vw, 100px) !important;
    line-height: 1 !important;
    width: 100% !important;
    text-align: left !important;
  }
  .chandi-top-right {
    align-self: flex-end !important;
    width: 85% !important;
    text-align: right !important;
  }
  .chandi-subtitle { text-align: right !important; font-size: clamp(18px, 5vw, 24px) !important; }
  .chandi-desc { text-align: right !important; }
  
  .chandi-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 200px 130px 130px !important;
    gap: 10px !important;
    height: auto !important;
    margin-bottom: 30px !important;
  }
  .chandi-item.wide { grid-column: 1 / 3 !important; grid-row: 1 / 2 !important; height: 100% !important; }
  .chandi-item.tall { grid-column: 1 / 2 !important; grid-row: 2 / 4 !important; height: 100% !important; }
  .chandi-item.square.sq-1 { grid-column: 2 / 3 !important; grid-row: 2 / 3 !important; height: 100% !important; }
  .chandi-item.square.sq-2 { grid-column: 2 / 3 !important; grid-row: 3 / 4 !important; height: 100% !important; }
}

/* ==========================================================================
   SPECIFICITY BULLETPROOFING & CACHE BUST
   ========================================================================== */
@media screen and (max-width: 768px) {
  .service-item,
  .service-item.pos-0,
  .service-item.pos-1,
  .service-item.pos-2,
  .service-item.pos-3,
  .service-item.pos-4 {
    font-size: clamp(35px, 9vw, 80px) !important;
    white-space: normal !important;
    position: relative !important;
  }
  
  .work-headline .bold-text {
    font-size: clamp(35px, 11vw, 110px) !important;
    line-height: 1 !important;
    display: block !important;
  }
  
  .work-headline .italic-text {
    font-size: clamp(30px, 9vw, 100px) !important;
    display: block !important;
  }
  
  /* Hard reset for Script text */
  .script-headline {
    color: #002b80 !important; /* Force to dark blue if needed */
  }
}

/* ==========================================================================
   PHOTO 1 MOBILE LAYOUT REWRITE (Hero & Stacked Cards)
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* HERO LAYOUT */
  .hero {
    display: grid !important;
    grid-template-columns: 60% 40% !important;
    grid-auto-rows: auto !important;
    gap: 15px 0 !important;
    padding: 100px 20px 40px !important;
    align-items: start !important;
  }
  
  .card, .center-content, .desc-text {
    position: relative !important;
    left: auto !important; right: auto !important; top: auto !important;
    margin: 0 !important; width: 100% !important; transform: none !important;
  }
  
  .center-content { display: contents !important; }
  
  .who-we-are { grid-column: 1 / 2; grid-row: 1; align-self: end; margin-bottom: 5px !important; }
  .headline { grid-column: 1 / 2; grid-row: 2; font-size: clamp(35px, 9vw, 60px) !important; line-height: 1 !important; margin-bottom: 5px !important; }
  .divider { display: none !important; }
  
  /* Sub-text matches the layout "We build digital presence..." */
  .sub-text {
    grid-column: 1 / 2; grid-row: 3;
    margin-top: 15px !important; margin-bottom: 15px !important;
    font-size: 14px !important; opacity: 0.8 !important; line-height: 1.4 !important; text-transform: none !important;
  }
  .explore-link { grid-column: 1 / 2; grid-row: 4; font-size: 12px !important; }
  
  /* Bust Image on the Right */
  .bust-card { grid-column: 2 / 3; grid-row: 1 / 5; align-self: start; margin-top: 40px !important; }
  .bust-card img { width: 100% !important; height: auto !important; transform: scale(1.1) !important; }
  
  /* Hide the loose desc-text */
  .desc-text { display: none !important; }
  
  /* STACKED CARDS BELOW HERO (Right Mockup Pattern) */
  .leon-card { grid-column: 1 / 3; grid-row: 5; margin-top: 40px !important; width: 100% !important; }
  .zoe-card { grid-column: 1 / 3; grid-row: 6; margin-top: 20px !important; width: 100% !important; }
  .news-card { grid-column: 1 / 3; grid-row: 7; margin-top: 20px !important; width: 100% !important; }
  .starry-card { grid-column: 1 / 3; grid-row: 8; margin-top: 20px !important; width: 100% !important; }
  
  /* Ensure images in the stacked cards span fully and look neat */
  .leon-card img, .zoe-card img, .news-card img, .starry-card img {
    width: 100% !important; height: auto !important; border-radius: 10px !important; object-fit: cover !important;
  }
}

/* ==========================================================================
   PHOTO 1 LAYOUT HEIGHT FIXES
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* Fix giant gaps by removing fixed heights on the Hero */
  .hero {
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 60px !important;
  }
  
  /* Fix hidden images by removing hardcoded heights on the cards */
  .card, .leon-card, .zoe-card, .news-card, .starry-card {
    height: auto !important;
    min-height: 200px !important; /* give them some room to breathe */
    overflow: visible !important;
  }
  
  .card img {
    height: auto !important;
    object-fit: contain !important;
  }
}

/* ==========================================================================
   PHOTO 1 FINE TUNING (Navbar, Proportions, Alignment)
   ========================================================================== */

/* Hamburger menu default hidden on desktop */
.hamburger { display: none; }

@media screen and (max-width: 768px) {
  /* 1. Navbar cleanup */
  .nav-links, .cta-button { display: none !important; }
  .hamburger { 
    display: block !important; 
    font-size: 28px !important; 
    color: #fff !important; 
    cursor: pointer !important; 
  }
  .navbar { 
    justify-content: space-between !important; 
    padding: 20px 25px !important; 
  }
  
  /* 2. Hero Text alignment and compact size */
  .who-we-are { 
    justify-content: flex-start !important; 
    text-align: left !important; 
    margin-bottom: 10px !important;
  }
  .headline { 
    text-align: left !important; 
    font-size: clamp(30px, 9vw, 50px) !important; 
  }
  .sub-text {
    text-align: left !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
    padding-right: 10px !important; /* prevent bumping into bust */
    margin-top: 10px !important;
  }
  .explore-link {
    text-align: left !important;
    display: block !important;
  }
  
  /* 3. Bust Scaling */
  .bust-card {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    margin-top: 10px !important;
  }
  .bust-card img {
    width: 140% !important; /* Make it significantly larger */
    height: auto !important;
    transform: translateX(10px) translateY(20px) !important;
    object-fit: contain !important;
  }
  
  /* 4. Inset cards */
  .leon-card, .zoe-card, .news-card, .starry-card {
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ==========================================================================
   PHOTO 2 EXACT PATTERN REWRITE (Staggered Masonry)
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* Logo adjustments */
  .logo-text { 
    text-transform: lowercase !important; 
    font-family: 'Cormorant Garamond', serif !important; 
    font-size: 28px !important; 
    font-weight: 500 !important; 
    letter-spacing: 0 !important; 
  }

  /* Hide unused cards */
  .leon-card, .zoe-card { display: none !important; }
  
  /* Reset defaults */
  .card, .center-content, .desc-text {
    position: relative !important; 
    left: auto !important; right: auto !important; top: auto !important;
    margin: 0 !important; width: 100% !important; transform: none !important;
    height: auto !important; overflow: visible !important;
  }
  .center-content { display: contents !important; }
  
  /* --- THE NEW MASONRY GRID --- */
  .hero {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: min-content !important; 
    gap: 15px 20px !important;
    padding: 60px 20px 80px !important;
    align-items: start !important;
    height: auto !important;
    min-height: auto !important;
  }
  
  /* --- TOP LEFT: BUST --- */
  .bust-card { 
    grid-column: 1 / 2; grid-row: 1 / 5; 
    display: flex !important; justify-content: flex-start !important; align-items: flex-start !important;
  }
  .bust-card img { 
    width: 140% !important; height: auto !important; 
    transform: translateX(-15px) !important; /* Shift it slightly left */
    object-fit: contain !important;
  }
  
  /* --- TOP RIGHT: TEXT BLOCK --- */
  .who-we-are { 
    grid-column: 2 / 3; grid-row: 1; 
    align-self: end; margin-bottom: 0 !important; justify-content: flex-start !important;
  }
  .headline { 
    grid-column: 2 / 3; grid-row: 2; 
    font-size: clamp(32px, 10vw, 50px) !important; line-height: 1 !important; 
    text-align: left !important;
  }
  .divider { 
    grid-column: 2 / 3; grid-row: 3; 
    display: block !important; margin: 15px 0 !important; 
    border-top: 1px solid rgba(255,255,255,0.2) !important; 
    width: 100%; position: relative !important; 
  }
  .divider::after { 
    content: '✦'; position: absolute; left: 50%; top: -10px; transform: translateX(-50%); 
    font-size: 14px; color: #fff; background: #0631b3; padding: 0 10px; 
  }
  .desc-text { 
    grid-column: 2 / 3; grid-row: 4; 
    display: block !important; font-size: 13px !important; line-height: 1.5 !important; 
    opacity: 0.9; text-align: left !important; margin-top: 5px !important;
  }
  
  /* --- MIDDLE: STAGGERED CARDS --- */
  .news-card { 
    grid-column: 1 / 2; grid-row: 5; 
    margin-top: 30px !important; width: 100% !important; 
  }
  .starry-card { 
    grid-column: 2 / 3; grid-row: 5 / 7; 
    align-self: center; margin-top: 80px !important; width: 100% !important; 
  }
  .news-card img, .starry-card img { 
    width: 100% !important; height: auto !important; 
    border-radius: 8px !important; object-fit: contain !important; 
  }
  
  /* --- BOTTOM LEFT: SUB-TEXT --- */
  .sub-text {
    grid-column: 1 / 2; grid-row: 6;
    font-size: 10px !important; opacity: 0.9 !important; line-height: 1.6 !important; 
    text-align: left !important; max-width: 100% !important;
    border-top: 1px solid rgba(255,255,255,0.3) !important;
    padding-top: 15px !important; margin-top: 20px !important;
    position: relative !important; text-transform: uppercase !important;
  }
  .sub-text::before {
    content: '✦'; position: absolute; left: 0; top: -10px; 
    background: #0631b3; padding-right: 10px; color: #fff; font-size: 14px;
  }
  .explore-link { 
    grid-column: 1 / 2; grid-row: 7; 
    text-align: left !important; display: inline-block !important; 
    font-size: 11px !important; margin-top: 15px !important; 
    border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 5px; width: max-content; 
  }
}

/* ==========================================================================
   PHOTO 2 BUG FIXES (Navbar & Text Overflow)
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* 1. Fix Navbar stacking (override flex-direction: column) */
  .navbar {
    flex-direction: row !important; /* Force items side-by-side */
    align-items: center !important;
  }
  
  /* 2. Fix Grid overflow causing chopped content */
  .hero {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%) !important; /* Allow the text column to be slightly wider */
    gap: 15px 10px !important; /* Reduce horizontal gap to give more room */
    padding-left: 15px !important; 
    padding-right: 15px !important;
  }
  
  /* Prevent any grid item from breaking the grid width */
  .bust-card, .who-we-are, .headline, .divider, .desc-text, .news-card, .starry-card, .sub-text, .explore-link {
    min-width: 0 !important; 
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }
  
  /* 3. Fix Headline size to prevent "CREDIBILITY" from bleeding off the edge */
  .headline {
    font-size: clamp(22px, 7.5vw, 40px) !important; 
    word-break: break-word !important;
    hyphens: auto !important;
  }
}

/* ==========================================================================
   PHOTO 2 EXACT SPACING & COLOR TWEAKS
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* 1. Reduce massive gap below header */
  .hero {
    padding-top: 10px !important; /* Drastically pull everything up */
  }

  /* 2. Fix the divider line (shorter, tighter gap, brighter) */
  .divider {
    width: 80% !important;
    margin: 10px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
  }
  
  /* 3. Pull description text tighter to the divider */
  .desc-text {
    margin-top: 5px !important; 
    line-height: 1.4 !important;
  }
  
  /* 4. Pull Daily News up closer to the Bust */
  .news-card {
    margin-top: 15px !important;
  }
  
  /* 5. REMOVE grayscale filter so Starry Night is in full beautiful color! */
  .card, .starry-card {
    filter: none !important;
  }
}

/* ==========================================================================
   PHOTO 2 BUST NUDGE
   ========================================================================== */
@media screen and (max-width: 768px) {
  .bust-card img {
    transform: translateX(-35px) !important; /* Move the bust further to the left */
  }
}

/* ==========================================================================
   FUNCTIONAL MOBILE MENU
   ========================================================================== */
@media screen and (max-width: 768px) {
  .navbar { position: relative !important; z-index: 9999 !important; }
  
  /* When Active */
  .navbar.mobile-active .nav-links {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 70px !important; /* height of navbar approx */
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #0631b3 !important;
    padding: 80px 40px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 40px !important;
    z-index: 9998 !important;
  }
  .navbar.mobile-active .nav-links li {
    width: 100%;
    text-align: center;
  }
  .navbar.mobile-active .nav-links li a {
    font-size: 28px !important;
    color: #fff !important;
    text-decoration: none !important;
    display: block;
    font-weight: 300 !important;
    letter-spacing: 2px;
  }
  
  .navbar.mobile-active .cta-button {
    display: inline-flex !important;
    position: fixed !important;
    bottom: 80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9999 !important;
    background: #fff !important;
    color: #0631b3 !important;
    border: none !important;
  }
}

/* ==========================================================================
   PHOTO 3: SCRIPT SECTION EXACT PATTERN
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* 1. The Angled Cut */
  .script-section {
    position: relative;
    padding: 60px 20px 80px !important;
    background-color: #fcfcfc !important; /* Slightly lighter off-white to match photo */
    clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%) !important;
    margin-top: -10px !important; /* Overlap hero slightly */
  }

  /* 2. Headline Typography */
  .script-headline {
    font-size: clamp(28px, 9vw, 36px) !important;
    line-height: 1.2 !important;
    color: #0631b3 !important;
    max-width: 280px !important;
    margin: 0 auto 20px !important;
    letter-spacing: -0.5px !important;
  }

  /* 3. The New Divider */
  .script-divider {
    display: block !important;
    width: 140px !important;
    height: 1px !important;
    background-color: rgba(6, 49, 179, 0.2) !important;
    margin: 30px auto !important;
    position: relative !important;
  }
  .script-divider::after {
    content: '✦'; /* Diamond star */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fcfcfc; /* Match section background */
    padding: 0 12px;
    color: #0631b3;
    font-size: 14px;
    line-height: 1;
  }

  /* 4. Sub-headline Typography */
  .script-subheadline {
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.2 !important;
    color: #0631b3 !important;
    margin-bottom: 60px !important;
    max-width: 280px !important;
    margin: 0 auto 60px !important;
  }
  
  /* 5. Badge */
  .seal-icon {
    width: 100px !important;
    height: 100px !important;
    color: #0631b3 !important;
    margin-top: 40px !important;
  }
  .seal-svg text {
    letter-spacing: 2px !important;
    font-weight: 500 !important;
  }
}

/* ==========================================================================
   PHOTO 4: SCRIPT SECTION EXACT PROPORTIONS & ANGLE
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* 1. Reverse the Angle (High on left, low on right) & Add top spacing */
  .script-section {
    clip-path: polygon(0 0, 100% 6vw, 100% 100%, 0 100%) !important; 
    padding-top: 140px !important; /* Give it much more breathing room at the top */
    margin-top: -20px !important;
  }

  /* 2. Headline Adjustments (Bolder, slightly larger, wider wrap) */
  .script-headline {
    font-size: clamp(34px, 10.5vw, 42px) !important;
    font-weight: 800 !important;
    max-width: 340px !important;
    letter-spacing: -0.2px !important;
  }

  /* 3. Shorter, more delicate Divider */
  .script-divider {
    width: 90px !important;
    margin: 40px auto !important; /* More space above and below */
  }

  /* 4. Subheadline Tweak */
  .script-subheadline {
    font-size: clamp(34px, 10vw, 46px) !important;
  }
  
  /* 5. Badge Proportions (Larger ring, thinner elegant text) */
  .seal-icon {
    width: 140px !important; 
    height: 140px !important;
    margin-top: 80px !important;
    margin-bottom: 40px !important;
  }
  .seal-svg text {
    font-weight: 400 !important; 
    letter-spacing: 5px !important;
  }
}

/* ==========================================================================
   PHOTO 5: SERVICES SECTION MOBILE SLIDER (Exact Pattern)
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* 1. Main container */
  .services-section {
    padding: 40px 0 60px !important; 
    min-height: auto !important; 
  }
  .services-top {
    margin-bottom: 40px !important;
    justify-content: center !important;
  }

  /* 2. The Dark Panel */
  .services-center {
    width: 82% !important; /* Leaves room for side labels */
    height: 520px !important;
    margin: 0 auto 40px !important;
    border-radius: 16px !important;
    overflow: hidden !important; 
    position: relative !important;
    background-color: #031346 !important; /* Very dark moody blue */
  }
  .services-bg-image {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important; 
    z-index: 0 !important;
    opacity: 0.65 !important;
    mix-blend-mode: hard-light !important; /* Better contrast for dark image */
  }
  .services-bg-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* 3. The Side Labels */
  .services-labels {
    position: absolute !important;
    top: 55% !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important; 
    padding: 0 !important;
    opacity: 1 !important;
    z-index: 2 !important;
  }
  .left-label {
    position: absolute !important;
    left: 8px !important;
    top: -80px !important; 
    writing-mode: vertical-rl !important;
    transform: rotate(180deg) !important;
    color: #fff !important;
    font-size: 11px !important;
  }
  .right-label {
    position: absolute !important;
    right: 8px !important;
    top: -80px !important;
    writing-mode: vertical-rl !important;
    color: #fff !important;
    font-size: 11px !important;
  }

  /* 4. The Vertical Slider Items */
  .slider-wrapper {
    height: 100% !important;
    position: relative !important;
    z-index: 2 !important;
  }
  .service-item.pos-0 {
    font-size: 52px !important;
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
    transform: translate(-50%, -50%) scale(1) !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
  }
  .service-item.pos-1 {
    font-size: 28px !important;
    color: #2659ff !important; /* Bright blue */
    transform: translate(-50%, calc(-50% + 75px)) scale(1) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
  }
  .service-item.pos-minus-1 {
    font-size: 28px !important;
    color: #2659ff !important;
    transform: translate(-50%, calc(-50% - 75px)) scale(1) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
  }
  .service-item.pos-2 {
    font-size: 20px !important;
    color: transparent !important;
    -webkit-text-stroke: 1px rgba(255,255,255,0.4) !important;
    transform: translate(-50%, calc(-50% + 130px)) scale(1) !important;
    opacity: 0.8 !important;
    font-weight: 700 !important;
  }
  .service-item.pos-minus-2 {
    font-size: 20px !important;
    color: transparent !important;
    -webkit-text-stroke: 1px rgba(255,255,255,0.4) !important;
    transform: translate(-50%, calc(-50% - 130px)) scale(1) !important;
    opacity: 0.8 !important;
    font-weight: 700 !important;
  }

  /* 5. Slider Dots */
  .slider-dots {
    position: absolute !important;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 8px !important;
    z-index: 3 !important;
  }
  .slider-dots .dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
  }
  .slider-dots .dot.active {
    background-color: #2659ff !important; 
  }

  /* 6. Footer Text */
  .services-bottom-text {
    text-align: center !important;
    color: #fff !important;
    font-size: 11px !important;
    letter-spacing: 3px !important;
    font-weight: 600 !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   PHOTO 6: SERVICES SECTION SLIDER PERFECT FIX
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* Reset everything for slider items */
  .service-item {
    width: 100% !important;
    white-space: nowrap !important;
    text-align: center !important;
    left: 50% !important;
    top: 50% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Font scales perfectly for mobile widths */
  .service-item.pos-0 {
    font-size: clamp(32px, 9vw, 46px) !important;
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
    transform: translate(-50%, -50%) scale(1) !important;
    font-weight: 900 !important;
    letter-spacing: 0px !important;
  }
  .service-item.pos-1 {
    font-size: clamp(20px, 6vw, 28px) !important;
    color: #2659ff !important; /* Bright blue */
    transform: translate(-50%, calc(-50% + 65px)) scale(1) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
  }
  .service-item.pos-minus-1 {
    font-size: clamp(20px, 6vw, 28px) !important;
    color: #2659ff !important;
    transform: translate(-50%, calc(-50% - 65px)) scale(1) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
  }
  .service-item.pos-2 {
    font-size: clamp(14px, 4.5vw, 20px) !important;
    color: transparent !important;
    -webkit-text-stroke: 1px #2659ff !important; /* Blue outline */
    transform: translate(-50%, calc(-50% + 115px)) scale(1) !important;
    opacity: 0.8 !important;
    font-weight: 700 !important;
  }
  .service-item.pos-minus-2 {
    font-size: clamp(14px, 4.5vw, 20px) !important;
    color: transparent !important;
    -webkit-text-stroke: 1px #2659ff !important;
    transform: translate(-50%, calc(-50% - 115px)) scale(1) !important;
    opacity: 0.8 !important;
    font-weight: 700 !important;
  }

  /* Safe Side Labels Alignment */
  .services-section {
    position: relative !important;
  }
  .services-labels {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateY(-50%) !important;
    width: 100% !important;
    height: 520px !important; /* Match dark panel height */
    padding: 0 10px !important; /* Distance from very edge of screen */
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    pointer-events: none !important;
  }
  .left-label {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    writing-mode: vertical-rl !important;
    transform: rotate(180deg) !important;
    color: #fff !important;
    font-size: 11px !important;
    opacity: 0.8 !important;
  }
  .right-label {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    writing-mode: vertical-rl !important;
    color: #fff !important;
    font-size: 11px !important;
    opacity: 0.8 !important;
  }
}

/* ==========================================================================
   PHOTO 7: DEFINITIVE SERVICES SLIDER & LABEL FIX
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* 1. Fix the slider wrapper width so items actually center */
  .slider-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 5 !important;
    display: block !important;
  }

  /* 2. Fix the items width and centering */
  .service-item {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: auto !important; /* Removes the 100% bug */
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    text-align: center !important;
    z-index: 10 !important;
    /* transition is kept from desktop */
  }

  /* 3. Re-apply the translation offsets perfectly */
  .service-item.pos-0 {
    font-size: clamp(30px, 8.5vw, 46px) !important;
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
    transform: translate(-50%, -50%) scale(1) !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
  }
  .service-item.pos-1 {
    font-size: clamp(20px, 6vw, 28px) !important;
    color: #2659ff !important; /* Bright blue */
    transform: translate(-50%, calc(-50% + 65px)) scale(1) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
  }
  .service-item.pos-minus-1 {
    font-size: clamp(20px, 6vw, 28px) !important;
    color: #2659ff !important;
    transform: translate(-50%, calc(-50% - 65px)) scale(1) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
  }
  .service-item.pos-2 {
    font-size: clamp(14px, 4vw, 20px) !important;
    color: transparent !important;
    -webkit-text-stroke: 1px #2659ff !important;
    transform: translate(-50%, calc(-50% + 115px)) scale(1) !important;
    opacity: 0.8 !important;
    font-weight: 700 !important;
  }
  .service-item.pos-minus-2 {
    font-size: clamp(14px, 4vw, 20px) !important;
    color: transparent !important;
    -webkit-text-stroke: 1px #2659ff !important;
    transform: translate(-50%, calc(-50% - 115px)) scale(1) !important;
    opacity: 0.8 !important;
    font-weight: 700 !important;
  }

  /* 4. Fix the Side Labels (Break them out of flexbox) */
  .services-labels {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    display: block !important; /* Removes flexbox orientation bug */
    z-index: 10 !important;
  }
  .left-label {
    position: absolute !important;
    left: 4px !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(180deg) !important;
    writing-mode: vertical-rl !important;
    color: #fff !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    margin: 0 !important;
  }
  .right-label {
    position: absolute !important;
    right: 4px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    writing-mode: vertical-rl !important;
    color: #fff !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    margin: 0 !important;
  }
}

/* ==========================================================================
   PHOTO 8: SERVICES SLIDER SMOOTH ANIMATION & SPACING
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* 
     PERFORMANCE FIX: 
     Do not animate font-size. It forces layout reflows and causes severe lag on phones.
     Instead, set a single base font-size and use GPU-accelerated transform: scale() 
  */
  .service-item {
    font-size: clamp(32px, 8.5vw, 44px) !important; /* Base size */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, color 0.4s ease !important;
    will-change: transform, opacity !important; /* Hint to browser to GPU accelerate */
  }

  /* Center Item (100% scale) */
  .service-item.pos-0 {
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
    transform: translate(-50%, -50%) scale(1) !important;
    font-weight: 900 !important;
    opacity: 1 !important;
  }

  /* Adjacent Items (65% scale, tighter gap) */
  .service-item.pos-1 {
    color: #2659ff !important; 
    transform: translate(-50%, calc(-50% + 46px)) scale(0.65) !important; /* Reduced from 65px */
    opacity: 1 !important;
    font-weight: 800 !important;
    -webkit-text-stroke: 0px transparent !important;
  }
  .service-item.pos-minus-1 {
    color: #2659ff !important;
    transform: translate(-50%, calc(-50% - 46px)) scale(0.65) !important; /* Reduced from 65px */
    opacity: 1 !important;
    font-weight: 800 !important;
    -webkit-text-stroke: 0px transparent !important;
  }

  /* Outer Items (45% scale, tighter gap) */
  .service-item.pos-2 {
    color: transparent !important;
    -webkit-text-stroke: 1px #2659ff !important;
    transform: translate(-50%, calc(-50% + 82px)) scale(0.45) !important; /* Reduced from 115px */
    opacity: 0.8 !important;
    font-weight: 700 !important;
  }
  .service-item.pos-minus-2 {
    color: transparent !important;
    -webkit-text-stroke: 1px #2659ff !important;
    transform: translate(-50%, calc(-50% - 82px)) scale(0.45) !important; /* Reduced from 115px */
    opacity: 0.8 !important;
    font-weight: 700 !important;
  }

  /* Fix side label positioning inside the new padding */
  .services-labels {
    height: 520px !important;
  }
}

/* ==========================================================================
   PHOTO 9: "OUR WORK" & CHANDI MOBILE PATTERN
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* --- 1. OUR WORK SECTION --- */
  .work-section {
    padding: 20px 20px 40px 20px !important;
    background-color: #fbf8f1 !important; /* Cream background */
  }
  .blue-line {
    border: none !important;
    border-top: 1px solid rgba(2, 24, 91, 0.2) !important;
    margin-bottom: 40px !important;
  }
  .work-content {
    padding-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 30px !important;
  }
  .work-left {
    width: 100% !important;
  }
  .work-label {
    font-size: 11px !important;
    color: #02185b !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .work-headline {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0px !important;
  }
  .work-headline .bold-text {
    font-size: 42px !important;
    color: #02185b !important;
    font-weight: 900 !important;
    line-height: 0.9 !important;
    text-transform: uppercase !important;
  }
  .work-headline .italic-text {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 40px !important;
    color: #02185b !important;
    line-height: 1 !important;
    margin-top: -5px !important;
  }

  .work-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important; /* Left aligned! */
    gap: 20px !important;
  }
  .work-desc {
    font-size: 13px !important;
    color: #02185b !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    text-align: left !important;
    text-transform: none !important; /* Sentence case! */
    max-width: 90% !important;
  }
  .work-nav-icons {
    align-self: flex-end !important; /* Float to right */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 10px !important;
  }
  .circle-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 1px solid #02185b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #02185b !important;
    font-size: 18px !important;
  }
  .nav-dots {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .nav-dots .dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
  }
  .nav-dots .blue-dot { background-color: #2659ff !important; }
  .nav-dots .grey-dot { background-color: #d1d5df !important; }

  /* --- 2. CHANDI TOP HEADER --- */
  .chandi-section {
    padding: 0 20px 60px !important;
    background-color: #fbf8f1 !important;
  }
  .chandi-top {
    display: flex !important;
    flex-direction: row !important; /* Side by side on mobile! */
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
  }
  .chandi-title {
    font-size: 32px !important;
    color: #02185b !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin: 0 !important;
  }
  .chandi-top-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    flex: 1 !important;
  }
  .chandi-subtitle {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 16px !important;
    color: #02185b !important;
    margin-bottom: 5px !important;
    font-weight: 500 !important;
  }
  .chandi-desc {
    font-size: 6px !important;
    color: #02185b !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    letter-spacing: 0.5px !important;
  }

  /* --- 3. CHANDI GRID (mobile: matches screenshot pattern) --- */
  .chandi-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 200px 130px 130px !important;
    gap: 10px !important;
    margin-bottom: 30px !important;
    height: auto !important;
  }
  .chandi-item {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  .chandi-item img, .chandi-item video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  /* Wide image: full width top row */
  .chandi-item.wide {
    grid-column: 1 / 3 !important;
    grid-row: 1 / 2 !important;
  }

  /* Tall brand reel: left column, spans rows 2 & 3 */
  .chandi-item.tall {
    grid-column: 1 / 2 !important;
    grid-row: 2 / 4 !important;
  }

  /* Square 1: top-right */
  .chandi-item.square.sq-1 {
    grid-column: 2 / 3 !important;
    grid-row: 2 / 3 !important;
  }

  /* Square 2: bottom-right */
  .chandi-item.square.sq-2 {
    grid-column: 2 / 3 !important;
    grid-row: 3 / 4 !important;
  }

  /* Labels */
  .chandi-label {
    position: absolute !important;
    background-color: #fff !important;
    color: #000 !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    letter-spacing: 1px !important;
    bottom: 10px !important;
    left: 10px !important;
    top: auto !important;
    z-index: 2 !important;
  }

  /* CHANDIE big text overlay on wide and tall items */
  .chandi-item.wide .chandi-label {
    bottom: 45px !important;
    left: 15px !important;
  }
  .chandi-item.tall .chandi-label {
    bottom: 45px !important;
    left: 15px !important;
  }

  /* Play button on tall item */
  .play-btn {
    position: absolute !important;
    bottom: 15px !important;
    right: 15px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1px solid #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    z-index: 2 !important;
  }


  /* --- 4. CTA BANNER --- */
  .chandi-cta-banner {
    background-color: #02185b !important;
    border-radius: 12px !important;
    padding: 25px 20px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .cta-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }
  .cta-left .star-icon {
    color: #fff !important;
    font-size: 16px !important;
    margin-top: 2px !important;
  }
  .cta-left p {
    color: #fff !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
    margin: 0 !important;
  }
  .cta-right .circle-btn {
    border-color: #fff !important;
    color: #fff !important;
    width: 36px !important;
    height: 36px !important;
    flex-shrink: 0 !important;
  }
}

/* ==========================================================================
   PHOTO 10: "OUR WORK" & CHANDI REFINEMENT
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* 1. Tighter Headline Stack */
  .work-content {
    gap: 15px !important; /* Bring paragraph closer to headline */
  }
  .work-headline .bold-text {
    line-height: 0.8 !important; /* Squeeze BRINGING and BRAND closer */
  }
  .work-headline .italic-text {
    margin-top: -12px !important; /* Tuck 'lore to life' tightly under BRAND */
    z-index: 2 !important;
    position: relative !important;
  }

  /* 2. Arrow & Dots Navigation floating right */
  .work-right {
    position: relative !important;
    padding-right: 65px !important; /* Leave room for nav column */
    display: block !important; /* Remove flex column */
  }
  .work-desc {
    margin: 0 !important;
    max-width: 100% !important; /* Fill available padded space */
  }
  .work-nav-icons {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
  }

  /* 3. CHANDI Split Layout */
  .chandi-top {
    align-items: flex-end !important;
    gap: 10px !important;
  }
  .chandi-title {
    font-size: 38px !important;
    flex: 0 0 auto !important; /* Prevent shrinking */
    letter-spacing: -1px !important;
  }
  .chandi-top-right {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important; /* Force right alignment */
    text-align: right !important; /* Force right alignment */
  }
  .chandi-subtitle {
    font-size: 18px !important;
    margin-bottom: 8px !important;
    white-space: nowrap !important; /* Prevent 'an experience' from wrapping wildly */
  }
  .chandi-desc {
    font-size: 8.5px !important; /* Make it readable */
    line-height: 1.5 !important;
    text-align: right !important;
    max-width: 180px !important; /* Give it enough width to format nicely */
  }
}

/* ==========================================================================
   PHOTO 11: OUR WORK STRUCTURAL PERFECTION FIX
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* 1. Fix Arrow placement and Paragraph width */
  .work-content {
    position: relative !important;
  }
  .work-right {
    padding-right: 0 !important; /* Let paragraph take full width */
    display: block !important;
  }
  .work-desc {
    max-width: 100% !important;
    margin-top: 10px !important; /* Give paragraph breathing room from headline */
    font-size: 13.5px !important; /* Match mockup legibility */
  }
  .work-nav-icons {
    position: absolute !important;
    right: 0 !important;
    /* Position perfectly next to 'lore to life' */
    top: 110px !important; 
    transform: none !important;
  }

  /* 2. Squeeze the headline perfectly */
  .work-headline {
    margin-bottom: 0 !important;
  }
  .work-headline .italic-text {
    margin-top: -15px !important; /* Tuck tightly under BRAND */
    z-index: 2 !important;
    position: relative !important;
  }

  /* 3. STOP CHANDI FROM OVERFLOWING SCREEN */
  .chandi-top {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }
  .chandi-title {
    font-size: clamp(28px, 8.5vw, 38px) !important; /* Dynamically shrink on narrow phones */
    flex-shrink: 1 !important;
    margin: 0 !important;
    line-height: 0.9 !important;
  }
  .chandi-top-right {
    flex-shrink: 1 !important;
    max-width: 55% !important; /* Strict boundary so it never pushes off screen */
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
    margin-bottom: -2px !important; /* Align baselines */
  }
  .chandi-subtitle {
    font-size: clamp(14px, 4vw, 18px) !important;
    white-space: normal !important; /* Allow wrapping if screen is tiny */
    line-height: 1.1 !important;
    margin-bottom: 5px !important;
    text-align: right !important;
  }
  .chandi-desc {
    font-size: clamp(7.5px, 2vw, 9px) !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    text-align: right !important;
    max-width: 100% !important;
  }
}

/* ==========================================================================
   PHOTO 12: OUR WORK STRUCTURAL PERFECTION (FINAL)
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* 1. Headline & Arrow Layout (Bulletproof Flexbox) */
  .work-left {
    width: 100% !important;
  }
  .work-headline {
    width: 100% !important;
  }
  .headline-bottom-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-top: -15px !important; /* Tuck tightly under BRAND */
  }
  .work-headline .italic-text {
    margin-top: 0 !important;
  }
  
  /* Reset nav icons from previous absolute positioning patches */
  .work-nav-icons {
    position: static !important;
    transform: none !important;
    margin-top: 0 !important;
    padding-bottom: 5px !important;
  }

  /* 2. Paragraph Text Flow */
  .work-right {
    padding-right: 0 !important;
    margin-top: 0 !important;
  }
  .work-desc {
    max-width: 100% !important;
    text-align: left !important;
    margin: 5px 0 0 0 !important; /* Tiny gap under lore to life */
  }

  /* 3. CHANDI Safe Layout (No Overflow) */
  .chandi-top {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
  }
  .chandi-title {
    font-size: clamp(30px, 9vw, 42px) !important; 
    flex-shrink: 0 !important;
    margin: 0 !important;
    line-height: 0.8 !important;
  }
  .chandi-top-right {
    flex-shrink: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
    margin-bottom: -3px !important; /* Align baselines */
  }
  .chandi-subtitle {
    font-size: clamp(15px, 4.5vw, 20px) !important;
    line-height: 1.1 !important;
    margin-bottom: 5px !important;
    text-align: right !important;
    white-space: normal !important; /* Never push off screen */
  }
  .chandi-desc {
    font-size: clamp(8px, 2.5vw, 10px) !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    text-align: right !important;
    max-width: 100% !important;
  }
}

/* ==========================================================================
   PHOTO 13: NUCLEAR REWRITE FOR ALIGNMENT AND WIDTH
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* --- WORK SECTION --- */
  .work-section {
    padding: 20px 20px 40px 20px !important; /* 20px padding on left and right */
  }
  .work-content {
    display: block !important; /* Kill flexbox that might shrink it */
    width: 100% !important;
  }
  .work-left {
    display: block !important;
    width: 100% !important;
  }
  .work-headline {
    display: block !important;
    width: 100% !important;
  }
  
  /* Force Arrow to the far right edge! */
  .headline-bottom-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important; /* Take full width of the padded screen */
    margin-top: -15px !important;
  }
  
  .work-right {
    display: block !important;
    width: 100% !important;
    padding-right: 0 !important;
  }
  .work-desc {
    display: block !important;
    width: 100% !important; /* Force paragraph to take full width */
    max-width: 100% !important;
    text-align: justify !important; /* Justify text to eliminate all right-side white space! */
    font-size: 14px !important;
    margin-top: 20px !important;
  }

  /* --- CHANDI SECTION --- */
  /* Force exact percentage split so neither side can crush the other */
  .chandi-top {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 0 !important; /* Control exact spacing via percentages */
    margin-bottom: 25px !important;
  }
  .chandi-title {
    width: 45% !important;
    flex: 0 0 45% !important;
    font-size: 34px !important; /* Fixed safe size */
    margin: 0 !important;
    line-height: 0.8 !important;
    word-break: break-word !important;
  }
  .chandi-top-right {
    width: 55% !important;
    flex: 0 0 55% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
  }
  .chandi-subtitle {
    font-size: 16px !important;
    line-height: 1.1 !important;
    margin-bottom: 6px !important;
    white-space: nowrap !important; /* Now safe because it has exactly 55% of screen width */
    text-align: right !important;
  }
  .chandi-desc {
    font-size: 9px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    text-align: right !important; /* Or justify if they want no white space here too */
    text-align-last: right !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   PHOTO 14: EXACT UPPER TEXT ALIGNMENT 
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* Reset previous nuclear justify and force exact mockup wrapping */
  .work-desc {
    width: auto !important;
    max-width: 82% !important; /* Leave exact space on right for Arrow */
    text-align: left !important; /* Re-enable ragged right edge */
    margin-top: 25px !important; /* Exact gap between lore and paragraph */
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }

  .work-right {
    position: relative !important;
    padding-right: 0 !important;
  }
  
  /* Straddle the Arrow between lore and paragraph on the far right edge */
  .work-nav-icons {
    position: absolute !important;
    right: 0 !important;
    /* Pull up 20px so it perfectly straddles the gap between headline and paragraph */
    top: -20px !important; 
    transform: none !important;
  }
  
  .headline-bottom-row {
    display: block !important;
    margin-top: -12px !important; /* Slightly looser tuck under BRAND */
  }
  
  .work-headline .bold-text {
    line-height: 0.85 !important; /* Match exact gap between BRINGING and BRAND */
  }
}

/* ==========================================================================
   PHOTO 15: UPPER TEXT FLUSH LEFT ALIGNMENT
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* Kill the desktop left padding that was pushing the headline inwards */
  .work-left {
    padding-left: 0 !important;
  }
  
  /* Tighten the gap between "OUR WORK" label and "BRINGING BRAND" headline */
  .work-label {
    margin-bottom: 15px !important;
    padding-left: 0 !important;
  }
  
  /* Kill the slight indent on the cursive text from desktop */
  .work-headline .italic-text {
    padding-left: 0 !important;
  }
  
  /* Ensure the headline aligns perfectly with the paragraph edge */
  .work-headline {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  
  /* Slightly tighten the gap below the paragraph to match mockup flow */
  .work-desc {
    margin-bottom: 25px !important;
  }
}

/* ==========================================================================
   PHOTO 16: MASSIVE HEADLINE FONTS TO FILL WHITE SPACE
   ========================================================================== */
@media screen and (max-width: 768px) {
  .work-headline .bold-text {
    font-size: clamp(55px, 16vw, 85px) !important; /* MASSIVE FONT to fill width */
    letter-spacing: -1px !important;
  }
  .work-headline .italic-text {
    font-size: clamp(50px, 14vw, 70px) !important; /* MASSIVE FONT to cover white space */
  }
}
.web-mobile-subtext {
  display: none;
}
/* ====== MOBILE EXCLUSIVE RESULTS SECTION ====== */
.results-mobile-only {
  display: none;
}

@media screen and (max-width: 768px) {
  #trophies-section { display: none !important; }
  
  .results-mobile-only {
    display: block !important;
    background: linear-gradient(135deg, #021a60 0%, #032488 100%) !important;
    color: #ffffff;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  .rmo-bg-dots {
    position: absolute;
    top: -20px; right: -20px;
    width: 200px; height: 200px;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.8;
    pointer-events: none;
    border-radius: 50%;
  }
  
  .rmo-container {
    position: relative;
    z-index: 2;
  }
  
  .rmo-header { text-align: center; margin-bottom: 40px; }
  .rmo-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    margin-bottom: 15px; display: flex; align-items: center; justify-content: center; gap: 8px;
    color: #a3c2ff;
  }
  .rmo-title {
    font-size: clamp(32px, 8vw, 42px); font-weight: 900; margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif; letter-spacing: -1px;
  }
  .rmo-subtitle {
    font-size: 22px; font-style: italic; color: #a3c2ff; font-family: 'Cormorant Garamond', serif;
  }
  .rmo-header-line {
    width: 30px; height: 2px; background: #2d68ff; margin: 25px auto 0;
  }
  
  .rmo-text-cols {
    display: flex; justify-content: space-between; margin-bottom: 50px; align-items: center;
  }
  .rmo-text-left p { margin: 0 0 5px 0; font-size: 12px; opacity: 0.9; line-height: 1.5; }
  .rmo-text-right { text-align: right; }
  .rmo-number { font-size: 32px; font-weight: 900; color: #3b82f6; margin-bottom: 5px; line-height: 1; }
  .rmo-stats-label { font-size: 9px; font-weight: 700; letter-spacing: 1px; color: #ffffff; line-height: 1.3; }
  
  .rmo-diagram-wrapper {
    position: relative; height: 260px; display: flex; align-items: center; justify-content: center; margin-bottom: 50px;
  }
  .rmo-dashed-line {
    position: absolute; top: 50%; left: -20px; right: -20px; height: 1px;
    border-top: 1px dashed rgba(255,255,255,0.4); z-index: 0;
  }
  .rmo-diagram {
    display: block; position: relative; z-index: 1; width: 100%; height: 200px;
  }
  .rmo-oval {
    width: 44px; height: 280px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.4);
    display: flex; flex-direction: column; align-items: center; justify-content: space-between;
    padding-top: 15px; padding-bottom: 25px; background: transparent; position: absolute; top: 50%; transform: translate(-50%, -50%);
    box-shadow: inset 0 0 15px rgba(255,255,255,0.05);
  }
  .rmo-oval:nth-child(1) { left: calc(50% - 125px); z-index: 1; }
  .rmo-oval:nth-child(2) { left: calc(50% - 91px); z-index: 2; }
  .rmo-oval:nth-child(3) { left: calc(50% - 57px); z-index: 3; }
  .rmo-oval:nth-child(4) { left: calc(50% - 23px); z-index: 4; }
  .rmo-oval:nth-child(5) { left: calc(50% + 125px); z-index: 1; }
  .rmo-oval-icon {
    width: 24px; height: 24px; color: #fff; background: #002fd6; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; padding: 5px;
  }
  .rmo-oval-icon svg { width: 100%; height: 100%; }
  .rmo-oval-text {
    writing-mode: vertical-lr; transform: rotate(180deg); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; opacity: 0.9; text-align: center; white-space: nowrap;
  }
  
  .rmo-center-circle {
    position: absolute; top: 50%; left: calc(50% + 51px); transform: translate(-50%, -50%);
    width: 150px; height: 150px; border-radius: 50%; background: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4); z-index: 10; padding-top: 20px;
  }
  .rmo-center-logo { margin-bottom: 6px; }
  .rmo-center-logo svg { width: 18px; height: 18px; }
  .rmo-center-subtitle { color: #002fd6; font-size: 6px; font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; text-transform: uppercase; }
  .rmo-center-title-new { color: #002fd6; font-size: 11px; font-weight: 900; line-height: 1.2; letter-spacing: 0.5px; padding: 0 5px; margin-bottom: 4px; }
  .rmo-center-icon-new { width: 55px; height: 40px; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
  .rmo-center-icon-new svg { width: 100%; height: 100%; }
  
  .rmo-features {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 50px;
  }
  .rmo-feat {
    text-align: center;
  }
  .rmo-feat-icon { width: 28px; height: 28px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; }
  .rmo-feat-icon svg { width: 100%; height: 100%; }
  .rmo-feat-title { font-size: 6.5px; font-weight: 800; margin-bottom: 8px; line-height: 1.3; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
  .rmo-feat-desc { font-size: 7px; opacity: 0.8; line-height: 1.4; }
  
  .rmo-footer-banner {
    background: linear-gradient(135deg, #0a33a1 0%, #031855 100%);
    border-radius: 20px; padding: 25px; display: flex; align-items: center; justify-content: space-between;
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.3); position: relative; overflow: hidden;
  }
  .rmo-footer-icon {
    width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
  }
  .rmo-results-box {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 30px 16px 16px 16px;
    margin-top: 40px;
    background-color: transparent;
    z-index: 2;
  }
  .rmo-box-badge-left {
    position: absolute; top: -12px; left: 16px;
    background-color: #002fd6;
    border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 20px;
    padding: 5px 12px; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  }
  .rmo-box-badge-right { display: none; }
  
  .rmo-results-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  }
  .rmo-stat-col {
    display: flex; flex-direction: column; justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding-bottom: 12px;
  }
  .rmo-stat-col:nth-child(5) { border-bottom: none; grid-column: span 2; align-items: center; text-align: center; }
  .rmo-stat-num-row { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; justify-content: flex-start; }
  .rmo-stat-col:nth-child(5) .rmo-stat-num-row { justify-content: center; }
  .rmo-stat-num { font-size: 28px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
  .rmo-stat-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #60a5fa; margin-bottom: 4px; }
  .rmo-stat-desc { font-size: 9px; line-height: 1.4; color: rgba(255, 255, 255, 0.6); }
  
  .rmo-checklist-col {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 16px; margin-top: 0;
    display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  }
  .rmo-check-item { width: 48%; display: flex; align-items: flex-start; gap: 6px; }
  .rmo-check-icon { font-size: 12px; font-weight: 900; color: #3b82f6; margin-top: -1px; }
  .rmo-check-text { font-size: 10px; font-weight: 500; letter-spacing: -0.2px; line-height: 1.2; text-align: left; }
}

/* Viral Short-Form Horizontal Slider on Mobile */
@media screen and (max-width: 768px) {
  .vs-cards {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100vw !important;
    margin-left: -20px !important; /* To reach screen edges */
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
    gap: 15px !important;
    grid-template-columns: none !important;
  }
  .vs-card {
    flex: 0 0 82% !important;
    scroll-snap-align: center;
    max-width: 320px; /* safety limit */
  }
  /* Hide scrollbar for slider */
  .vs-cards::-webkit-scrollbar {
    display: none;
  }
  .vs-cards {
    -ms-overflow-style: none; 
    scrollbar-width: none;  
  }
  
  /* Hide all pagination dots on mobile view */
  .slider-dots,
  .nav-dots,
  .vs-sidebar-dots,
  .l-dots {
    display: none !important;
  }
}
