.about-page {
  background-color: #0f0f0f;
  position: relative;
  overflow: hidden;
}

/* Background video for about page */
.about-page-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Black overlay on top of video */
.about-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
  pointer-events: none;
}

.about-vert-line {
  height: 100px;
  width: 1px;
  background-color: #c7c7c7;
}

/* Remove background pattern from about-page, keep for other pages */
.life-part::before,
.insights-part::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 107, 53, 0.2) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 107, 53, 0.2) 1px, transparent 1px);
  background-size: 80px 80px;
  /* adjust grid size */
  animation: moveGrid 2s linear infinite;
  z-index: 1;
}

@keyframes moveGrid {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 80px 80px, 80px 80px;
    /* move diagonally */
  }
}

.about-page .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 180px 20px 100px 20px;
  position: relative;
  z-index: 2;
}

.text-justify {
  text-align: justify;
}

.lh-32px {
  line-height: 32px;
}

.number-part .container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 30px;
  padding: 90px 0 90px;
  justify-content: center;
}

.number-part-item,
.number-part-item-1 {
  width: 315px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 20px 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.fs-70 {
  font-size: 70px !important;
}

.number-part-item:hover,
.number-part-item-1:hover {
  box-shadow: 0 13px 26px #eaae98;
  transform: translateY(-4px);
}

.number-part-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #eb5d2a;

  font-family: "Oleo Script Swash Caps", sans-serif;
}

.number-part-text {
  font-size: 1rem;
  font-weight: 500;
  color: #050505;
}

.about-image-section .container {
  padding: 60px 20px 100px 20px;
}

.about-full-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.num-vertical-line {
  width: 1px;
  height: 100%;
  background-color: #050505;
  opacity: 0.1;
}

.purpose-div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
}

/* center title inside purpose section */
.purpose-part {
  padding: 90px 0 90px 0;
  background-color: #060606;
  position: relative;
  z-index: 7;
}

.purpose-part .section-title-2 {
  text-align: center;
  width: 100%;
  margin: 0 auto 30px auto;
  position: sticky;
  top: 10vh;
}

.timeline-part {
  padding: 100px 0 80px 0;
  height: 660px;
}

.timeline-part .section-title-2 {
  text-align: center;
}

.timeline-line {
  display: flex;
  gap: 25px;
  height: 3px;
  width: 100%;
  background-color: #eb5d2a;
  position: relative;
  margin-top: 80px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 216px;
  position: absolute;
  top: -26px;
}

.timeline-item .date {
  background: white;
  color: #ff6b35;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  z-index: 3;
  text-align: center;
  border: 3px solid #ff6b35;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.timeline-item:hover .date {
  background: #ff6b35;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.timeline-item .dot {
  width: 10px;
  height: 10px;
  background: #ff6b35;
  border-radius: 50%;
  z-index: 3;
}

.timeline-item .box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.timeline-item:hover .box {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.15);
  border-color: #ff6b35;
}

.timeline-item .box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.timeline-item .box p {
  color: #666666;
  line-height: 1.4;
  margin: 0;
  font-size: 0.85rem;
}

/* Insights page cards */
.insights-card-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.insights-card-item {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.insights-card-item .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.insights-card-item .img-wrap {
  height: 304px;
  overflow: hidden;
}

.insights-card-item-content {
  padding: 18px 18px 22px 18px;
}

.insights-card-item:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.insights-card-item:hover .main-img {
  transform: scale(1.06);
}

.main-section {
  padding: 152px 0 114px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-section .flex {
  display: flex;
  gap: 30px;
}

.main-section .flex .number-part-number {
  font-size: 2rem;
}

.main-section .flex .number-part-item-1 {
  justify-self: center;
  width: 180px;
  border-radius: 4px;
  padding: 12px;
  background-color: #f5f0f0;
}

.max-wid-unset {
  max-width: unset !important;
}

.insights-part {
  background-color: #0f0f0f;
}

.insights-card-parent {
  padding: 90px 0;
}

.insights-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.insights-col-left {
  display: block;
}

.insights-col-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 32px;
}

.insights-card-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.insights-card-featured {
  display: block;
  height: 100%;
}

.insights-card-featured .img-wrap {
  height: 278px;
}

.insights-card-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 220px;
}

.insights-card-item .img-wrap {
  overflow: hidden;
}

.insights-card-item .main-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.insights-card-item:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.insights-card-item:hover .main-img {
  transform: scale(1.06);
}

.insights-card-item-content {
  padding: 20px;
}

.insights-card-item-content .flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.insights-card-item-content .flex .tag {
  background-color: #eb5d2a;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
}

.insights-card-item-content-title {
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
}

.insights-card-item-content-date {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  font-weight: 500;
}

.insights-card-item-content-by {
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.s-tabs-part {
  padding: 90px 0 50px;
}

.s-tabs-part .container {
  display: flex;
  justify-content: center;
}

/* Tabs bar */
.tabs-part {
  padding: 24px 0 80px;
}

.tabs-part .container {
  display: flex;
  justify-content: center;
}

.tabs-bar {
  display: flex;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.tab-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-button:hover {
  color: #111827;
}

.tab-button.active {
  background: #ff6b35;
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 107, 53, 0.35);
}

/* Grid below tabs */
.insights-grid-part {
  padding: 10px 0 90px;
}

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

.insights-grid .insights-card-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.insights-grid .span-2 {
  grid-column: span 2;
}

.insights-card-meta {
  color: #6b7280;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: #374151;
  font-weight: 600;
}

.author-row .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffe6de;
  color: #eb5d2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* Voices slider */
.voices {
  padding: 90px 0 90px;
  background: #fff;
}

.voices-header {
  text-align: center;
  margin-bottom: 24px;
}

.voices-subtitle {
  color: #ff6b35;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-top: 4px;
  font-size: 22px;
}

.voices-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.voices-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: voices-scroll 40s linear infinite;
}

.voices-marquee:hover .voices-track {
  animation-play-state: paused;
}

.voice-card {
  width: 320px;
  height: 360px;
  perspective: 1200px;
}

.voice-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.voice-card:hover .voice-inner {
  transform: rotateY(180deg);
}

.voice-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.voice-front {
  background: #1f2a44;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px 16px;
  background-size: cover;
  background-position: center;
}

.voice-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.voice-meta {
  position: relative;
  z-index: 1;
  color: #fff;
}

.voice-name {
  font-weight: 800;
  font-size: 18px;
}

.voice-title {
  font-size: 13px;
  opacity: 0.9;
}

.voice-back {
  background: #18324d;
  color: #eaeff6;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.voice-quote {
  color: #eaeff6;
  font-size: 17px;
  line-height: 1.6;
}

.voice-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-person .voice-title {
  opacity: 0.85;
}

.voice-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2b4a6a;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes voices-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Life black hero */
.life-part {
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
  padding: 160px 0 120px;
}

.life-hero {
  position: relative;
  height: 540px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.life-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.life-hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.life-hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}

.life-hero-subtitle {
  color: #e5e5e5;
  font-size: 20px;
  margin-top: 10px;
}

/* Culture section */
.culture-section {
  padding: 90px 0 90px 0;
  background: #fff;
}
.culture-section.color-reverse {
  background: #f9f9f9;
}
.digital-section.color-reverse {
  background: #ffffff;
}
.culture-s-section {
  padding: 90px 0 90px 0;
  background: #f9f9f9;
}

.culture-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.culture-title {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.culture-subtitle {
  color: #ff6b35;
  font-weight: 600;
  font-size: 22px;
}

.culture-desc {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 0;
}

/* Core values split */
.core-values {
  padding: 90px 0 90px 0;
  background: #f9f9f9;
}

.cv-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.cv-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  text-align: left;
  margin-bottom: 6px;
}

.cv-subtitle {
  color: #ff6b35;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 22px;
  text-align: left;
}

.cv-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cv-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
  text-align: left;
  border: 1px solid rgba(0, 225, 225, 0.5);
  transition: all 0.3s ease;
}

.cv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
}

.cv-emoji {
  font-size: 28px;
  margin-bottom: 6px;
}

.cv-card-title {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
  color: #0f172a;
}

.cv-card-desc {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.cv-video-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  background-color: #000;
  border-radius: 8px;
  height: 580px;
  width: 100%;
  display: flex;
  align-items: center;
}

.cv-video {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Life beyond work */
.life-beyond {
  padding: 90px 0;
  background: #f8fafc;
}

.lb-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
}

.lb-subtitle {
  text-align: center;
  color: #ff6b35;
  font-weight: 800;
  font-size: 22px;
  margin-top: 10px;
}

.lb-desc {
  max-width: 900px;
  margin: 14px auto 32px;
  text-align: center;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

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

.lb-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.lb-video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.lb-caption {
  padding: 12px 14px 16px;
  text-align: center;
  color: #111827;
  font-weight: 600;
  line-height: 1.4;
}

/* Moments marquee */
.moments-marquee {
  padding: 60px 0 90px;
  background: #fff;
}

.mm-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
}

.mm-subtitle {
  text-align: center;
  color: #ff6b35;
  font-weight: 800;
  margin-top: 8px;
}

.mm-track-wrap {
  overflow: hidden;
}

.mm-track {
  display: flex;
  width: max-content;
}

.mm-group {
  display: flex;
  gap: 22px;
}

.mm-track {
  animation: mm-scroll 18s linear infinite;
}

.mm-img {
  height: 220px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.moments-marquee:hover .mm-track {
  animation-play-state: paused;
}

@keyframes mm-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.digital-section {
  background-color: #fff;
  padding: 90px 0 90px 0;
}

.digital-section .mob-slide {
  height: fit-content;
  justify-content: center;
  display: flex;
}

.digital-section .text-tag {
  margin-bottom: 30px;
}

.digital-section .btn-primary {
  margin-top: 30px;
}

.digital-section .text-block-title {
  margin-bottom: 20px;
}
.digital-section .gradient-heading {
  margin-bottom: 40px !important;
}
/* Ensure hero three canvas fills the hero area */
#hero-canvas {
  height: 100%;
}

#hero-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.contact-part {
  background-color: #0f0f0f;
  position: relative;
  overflow: hidden;
}

.contact-part::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 107, 53, 0.2) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 107, 53, 0.2) 1px, transparent 1px);
  background-size: 80px 80px;
  /* adjust grid size */
  animation: moveGrid 2s linear infinite;
  z-index: 1;
}

.contact-section {
  padding: 166px 0 88px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Contact page extra sections */
.contact-sections {
  background: #f9f9f9;
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  padding: 25px;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  background-color: #040404;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #0b0b0b;
  padding: 20px;
  height: 100%;
  border-radius: 12px;
}

.mt-51 {
  margin-top: 30px;
}

.contact-card {
  padding: 4px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-title {
  font-weight: 700;
  color: #fff;
}

.contact-card-desc {
  color: #d5d5d5;
  font-size: 12px;
}

.contact-form {
  background: #040404;
  border-radius: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  padding-left: 10px;
  font-size: 14px;
  color: #d5d5d5;
  font-family: "montserrat", sans-serif;
}

.form-field input,
.form-field textarea,
.form-field select {
  border: 0.1px solid #414141;
  background: #0b0b0b;
  border-radius: 8px;
  padding: 32px 12px 14px 12px;
  outline: none;
  font-size: 14px;
  color: #fff;
  letter-spacing: 1px;
}

.form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('../assets/images/down-arrow.svg');
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 12px;
  cursor: pointer;
  padding-right: 3rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  font-size: 14px;
  color: #d5d5d5;
}

.form-submit {
  margin-top: 4px;
  width: 190px;
}

.offices-section {
  background: #fff;
  padding: 90px 0;
}
.offices-section .map {
  width: 100%;
}
.offices-section .one {
  position: absolute;
  left: 313px;
  top: 264px;
}

.offices-section .two {
  position: absolute;
  right: 407px;
  top: 288px;
}

.offices-section .three {
  position: absolute;
  right: 293px;
  bottom: 202px;
}

.office-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 184, 159, 0.8);
  box-shadow: 7px 7px 15.6px -5px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 160px;
}

.offices-section .pos-1 {
  left: 272px;
  top: 300px;
}

.offices-section .pos-2 {
  left: 774px;
  top: 119px;
}

.offices-section .pos-3 {
  right: 266px;
  top: 416px;
}

.section-heading {
  font-weight: 800;
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 25px;
}

.office-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.office-desc {
  color: #4b5563;
  font-size: 13px;
  text-align: center;
}

/* FAQ Section Styles */
.faq-section {
  background: #f9f9f9;
  padding: 90px 0;
}

.faq-heading {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 60px;
  line-height: 1.2;
}

.faq-heading-accent {
  color: #ff6b35;
}

.faq-grid {
  display: flex;
  gap: 20px;
  margin: 0 auto;
  margin-top: 40px;
}

.faq-card {
  background: #000;
  border-radius: 12px;
  border-right: 4px solid #ff6b35;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  flex: 1 1 45%;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}

.faq-text {
  flex: 1;
  margin-right: 16px;
  font-size: 20px;
  color: #fbfbfb;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-chevron {
  color: #000;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #000;
  font-size: 14px;
  color: #d5d5d5;
}

.faq-answer p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0 24px 24px 24px;
}

/* Hover States */
.faq-card:hover .faq-answer {
  max-height: 200px;
  padding-top: 0;
}

.faq-card:hover .faq-chevron {
  transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px;
    font-size: 14px;
  }
}

.fs-22 {
  font-size: 22px;
}

/* Common input + textarea placeholders */
input::placeholder,
textarea::placeholder {
  color: #4b4b4b;
  opacity: 1;
  /* ensures full color visibility */
}

/* Normal select text */
select {
  color: #fff;
  /* text color after user selects something */
}

/* Placeholder (disabled selected option) */
select:required:invalid {
  color: #999;
  font-weight: 400;
}

/* Ensure dropdown list still shows proper colors */
select option {
  color: #fff;
  cursor: pointer !important;
}

select option[disabled] {
  color: #c4c4c4;
}

.marquee {
  width: 100%;
  overflow: hidden;
  margin: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 20px;
  /* Increased gap */
  animation: marquee-scroll 60s linear infinite;
  /* Slower animation for more content */
  min-width: max-content;
  /* Ensure track doesn't shrink */
}

.marquee-track.paused {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Increased gap between images in column */
  width: 250px;
  /* Increased column width */
  flex-shrink: 0;
}

.marquee-img {
  width: 100%;
  border-radius: 12px;
  /* Slightly larger border radius */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Added subtle shadow */
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* .marquee-img:hover {
    transform: scale(1.05);
} */

.marquee-img-large {
  height: 320px;
  /* Increased height */
}

.marquee-img-small {
  height: 170px;
  /* Increased height */
}

.marquee-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  padding: 15px 12px 12px;
  color: #ffffff;
}

.marquee-overlay-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 3px;
  color: #ffffff;
}

.marquee-overlay-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff;
  opacity: 0.9;
}

/* Responsive text overlay sizes */
@media screen and (max-width: 768px) {
  .marquee-img-overlay {
    padding: 12px 10px 10px;
  }

  .marquee-overlay-name {
    font-size: 14px;
  }

  .marquee-overlay-title {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .marquee-img-overlay {
    padding: 10px 8px 8px;
  }

  .marquee-overlay-name {
    font-size: 13px;
  }

  .marquee-overlay-title {
    font-size: 11px;
  }
}

.mm-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.mm-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .marquee-column {
    width: 180px;
  }

  .marquee-img-large {
    height: 180px;
  }

  .marquee-img-small {
    height: 100px;
  }

  .marquee-track {
    gap: 15px;
  }
}

/* Customer Stories Page Styles */

/* Header Styles */

.cs-logo-icon {
  width: 40px;
  height: 40px;
}

.cs-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
}

/* Hero Section */
.cs-hero {
  background-color: #0f0f0f;
  position: relative;
  padding: 180px 0 90px 0;
  overflow: hidden;
}

.cs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  /* max-width: 1178px; */
  margin: 0 auto;
}

.cs-hero-title {
  font-size: 68px;
  font-weight: 650;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.cs-hero-subtitle {
  font-size: 20px;
  color: #eb5d2a;
  font-weight: 400;
  line-height: 1.5;
}

/* Discover Section */
.cs-discover-section {
  background-color: #ffffff;
  padding: 90px 0;
}

.cs-discover-title {
  font-size: 46px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0;
  line-height: 1.2;
}

.cs-discover-title-large {
  font-size: 46px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.1;
}

.cs-discover-description {
  font-size: 24px;
  color: #414141;
  font-weight: 500;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Success Stories Section */
.cs-success-stories-section {
  background-color: #f9f9f9;
  padding: 90px 0;
}

.cs-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

/* Industry Filters */
.cs-industry-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  width: fit-content;
  justify-self: anchor-center;
  border-radius: 999px;
  padding: 14px 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  background-color: #fff;
}

.cs-filter-btn {
  border: none;
  font-weight: 700;
  color: #4b5563;
  background-color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cs-filter-btn.cs-active {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: #ffffff;
}

/* Stories Grid */
.cs-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.cs-story-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 11px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 225, 225, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

.cs-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
}

/* Pagination Styles */
.cs-story-card {
  display: none;
}

.cs-story-card.show {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show More Button Styles */
.cs-show-more-container {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.cs-show-more-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  font-family: "montserrat", sans-serif;
  box-shadow: 0px 1px 2px 0px #1018280d;
}

.cs-show-more-btn:hover {
  background: #d54a1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(235, 93, 42, 0.3);
}

.cs-show-more-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cs-story-icon {
  font-size: 32px;
  margin-bottom: 15px;
  opacity: 0.7;
}

.cs-story-company {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
}

.cs-story-industry {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
  font-weight: 500;
}

.cs-story-quote {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
  border: none;
  padding: 0;
}

.cs-story-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cs-author-avatar {
  width: 40px;
  height: 40px;
  background-color: #ff6b35;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.cs-author-name {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2px;
}

.cs-author-role {
  font-size: 14px;
  color: #666666;
}

/* Solutions Success Stories Section */
.sol-success-stories-section {
  background-color: #f9f9f9;
  padding: 90px 0;
}

.sol-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

/* Solutions Industry Filters */
.sol-industry-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  width: fit-content;
  justify-self: center;
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid #eee;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.sol-filter-btn {
  border: none;
  font-weight: 700;
  color: #4b5563;
  background-color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "montserrat", sans-serif;
}

.sol-filter-btn.sol-active {
  background-color: #ee7446 !important;
  border-color: #ee7446 !important;
  color: #ffffff;
}

/* Solutions Stories Grid */
.sol-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.sol-story-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  position: relative;
  display: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sol-story-card.show {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.sol-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.sol-story-icon {
  padding: 15px;
}

.sol-story-image {
  width: 100%;
  height: 200px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.sol-story-card:hover .main-img {
  transform: scale(1.06);
}

.sol-story-image .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: transform 0.35s ease;
}

.sol-story-company {
  font-size: 14px;
  font-weight: 700;
  color: #101729;
  margin-bottom: 5px;
}

.sol-story-industry {
  font-size: 12px;
  line-height: 1.5;
  color: #4d5562;
  font-weight: 500;
}

.sol-story-quote {
  font-size: 12px;
  line-height: 1.5;
  color: #4d5562;
  margin: 15px 0;
  font-weight: 500;
}

.sol-story-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.sol-author-avatar {
  width: 34px;
  height: 34px;
  background-color: #ee7446;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.sol-author-info {
  flex: 1;
}

.sol-author-name {
  font-size: 14px;
  font-weight: 600;
  color: #101729;
  margin-bottom: 2px;
}

.sol-author-role {
  font-size: 12px;
  color: #6b6b6b;
  font-weight: 500;
}

/* Solutions Show More Button Styles */
.sol-show-more-container {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.sol-show-more-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  font-family: "montserrat", sans-serif;
  box-shadow: 0px 4px 13px 0px #00000026;
}

.sol-show-more-btn:hover {
  background: #d54a1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(235, 93, 42, 0.3);
}

.sol-show-more-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Clients Section */
.cs-clients-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.cs-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}

.cs-client-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cs-client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
}

.cs-client-image {
  height: 200px;
  overflow: hidden;
}

.cs-client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cs-client-card:hover .cs-client-image img {
  transform: scale(1.05);
}

.cs-client-content {
  padding: 25px;
}

.cs-client-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.cs-client-description {
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
}

/* Trusted Section */
.cs-trusted-section {
  background-color: #fff;
  padding: 45px 0;
}

.cs-trusted-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.cs-logos-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.cs-logos-track {
  display: flex;
  gap: 40px;
  animation: cs-logo-scroll 20s linear infinite;
  width: max-content;
}

.cs-logos-grid:hover .cs-logos-track {
  animation-play-state: paused;
}

.cs-logo-item {
  height: 36px;

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.cs-logo-item:hover {
  transform: scale(1.1);
}

.cs-logo-item img {
  height: 30px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.cs-logo-item:hover img {
  filter: grayscale(0%);
}

@keyframes cs-logo-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* CTA Section */
.cs-cta-section {
  background-color: #0f0f0f;
  padding: 90px 0;
  text-align: center;
  position: relative;
  z-index: 7;
}

.cs-cta-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cs-cta-description {
  font-size: 18px;
  color: #e5e5e5;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.cs-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.cs-btn-primary {
  background-color: #ff6b35;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cs-btn-primary:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cs-btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cs-btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Animation for story cards */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cs-discover-section-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 100px;
}

/* Image fade transition styles */
.cs-image-container {
  width: 100%;
  max-width: 500px;
}

.cs-fade-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cs-fade-image.cs-active {
  opacity: 1;
  position: relative;
}

.cs-pointer-section {
  scroll-margin-top: 50vh;
}

.our-products {
  padding: 80px 0 0px 0;
  background-color: #fff;
  position: relative;
  z-index: 6;
}

.our-line {
  background-color: #fee9d9;
  width: 2px;
  height: 100px;
}

.our-products-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.our-button {
  background: #fef5f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #0f0f0f;
  padding: 20px;
  border-radius: 8px;
  width: 133px;
}

.our-button.active {
  background: linear-gradient(180deg, #eb5d2a 0%, #853518 100%);
  font-weight: 700;
  font-size: 16px;
  color: #fafbff;
}

/* Products Carousel Styles */
.our-products-tabs-section {
  background-color: #fef5f2;
  border-radius: 40px;
  padding-top: 40px;
  transition: border-radius 0.5s ease, margin-top 1s ease;
  margin-top: 300px;
}

.our-products-tabs-section.animate-in {
  margin-top: 0;
}

.products-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 670px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.prev {
  transform: translateX(-100%);
  opacity: 0;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  max-width: 1385px;
  justify-self: center;
  gap: 37px;
}

.slide-left {
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-right {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide-right .img-1 {
  position: absolute;
  height: 214px;
  right: 5px;
}

.slide-right .img-2 {
  position: absolute;
  left: -15px;
  top: -148px;
  height: 115px;
}

.slide-right .img-3 {
  position: absolute;
  bottom: -157px;
  height: 50px;
  right: 0px;
}

.slide-right .img-4 {
  /* height: 81%; */
  position: absolute;
  width: 100%;
  border-radius: 8px;
}

.slide-title {
  font-size: 30px;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-description {
  font-size: 1.5rem;
  color: #6c757d;
  margin-bottom: 40px;
  font-weight: 500;
}

.slide-features {
  margin-bottom: 40px;
}

.slide-features .feature-item {
  font-size: 14px;
  color: #414141;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 10px;
}

.slide-features .feature-item img {
  height: 20px;
}

.slide-cta {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.slide-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

/* Customer Stories Text Opacity Animation */
.cs-pointer-section {
  opacity: 0;
  /* Transition duration is now controlled dynamically by JavaScript */
}

/* Our Service Section Styles */
.our-service {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
  z-index: 6;
}

.our-service .section-title-2 {
  background-color: #ffffff;
  /* position: sticky; */
  z-index: 5;
  top: 0px;
  /* height: 200px; */
  display: flex;
  align-items: end;
  justify-content: center;
}

.os-discover-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  min-height: 100vh;
}

.os-pointer-section {
  opacity: 0;
  /* Transition duration is now controlled dynamically by JavaScript */
}

.os-category-tag {
  display: inline-block;
  background-color: #e3f2fd;
  color: #1976d2;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.os-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 20px;
}

.os-discover-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 30px;
}

.os-demo-button {
  background-color: #ff6b35;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.os-demo-button:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

.os-video-container {
  position: relative;
  width: 100%;
  height: 436px;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.os-fade-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.os-fade-video.os-active {
  opacity: 1;
}

/* Mobile Responsive */

.folder-text-section {
  padding: 90px 0 0 0;
  background: #f9f9f9;
  min-height: 200vh;
  position: relative;
  overflow: visible;
}

.folder-text-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 145px;
  align-items: flex-start;
  position: relative;
}

/* Text Sections */
.text-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.text-block {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 60px 0;
  opacity: 0.3;
  transition: opacity 0.8s ease;
}

.text-block.active {
  opacity: 1;
}

.text-tag {
  display: inline-block;
  background: #eeeeee;
  color: #11253e;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}

.text-block-title {
  font-size: 40px;
  font-weight: 600;
  color: #0f0f0f;
  line-height: 1.2;
  margin: 0;
}

.text-block-description {
  font-size: 20px;
  color: #414141;
  line-height: 1.6;
  margin: 0;
}

.hide-spline {
  background-color: #000;
  height: 40px;
  width: 147px;
  position: absolute;
  right: 12px;
  bottom: 18px;
  z-index: 6;
}

/* ===== SOLUTIONS PAGE STYLES ===== */

/* Solutions Hero Section */
.solutions-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 120px 0 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.solutions-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.solutions-hero-left {
  flex: 1;
  max-width: 600px;
}

.solutions-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}

.solutions-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.solutions-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0066cc;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.solutions-cta-btn:hover {
  background: #0052a3;
  transform: translateY(-2px);
}

.solutions-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solutions-hero-graphic {
  position: relative;
  width: 400px;
  height: 300px;
}

.graphic-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid rgba(0, 102, 204, 0.3);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.graphic-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 102, 204, 0.1) 50%,
    transparent 70%
  );
  border-radius: 20px;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* Solutions Connections Section */
.solutions-connections {
  padding: 80px 0;
  background: white;
}

.solutions-connections-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.solutions-connections-left {
  flex: 0 0 40%;
}

.solutions-connections-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.solutions-connections-right {
  flex: 1;
}

.solutions-connections-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666;
}

@media (max-width: 768px) {
  .digital-section .gradient-heading {
    margin-bottom: 20px !important;
  }
  .solutions-hero {
    padding: 100px 0 60px 0;
  }

  .solutions-hero-title {
    font-size: 2rem;
  }

  .solutions-hero-description {
    font-size: 1rem;
  }

  .solutions-connections-title,
  .solutions-industry-title,
  .solutions-case-studies-title {
    font-size: 2rem;
  }

  .solutions-case-studies-grid {
    grid-template-columns: 1fr;
  }

  .solutions-case-studies-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

.w217 {
  width: 217px;
}

.text-block-btn {
  background: #f59e0b;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.text-block-btn:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* Folder Sticky Container */
.folder-sticky-container {
  position: sticky;
  top: 30%;
  /* transform: translateY(200%); */
  height: 53vh;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
}

.folder-animation-wrapper {
  transform: scale(2.3);
  transform-origin: center;
  pointer-events: none;
}

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

/* Scroll Folder States */
.scroll-folder {
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Closed State */
.scroll-folder.closed .paper {
  transform: translate(-50%, 10%);
  transition: all 0.4s ease;
}

.scroll-folder.closed .folder__front {
  transform: skew(0deg) scaleY(1);
}

.scroll-folder.closed .right {
  transform: skew(0deg) scaleY(1);
}

/* Peek State */
.scroll-folder.peek {
  transform: translateY(-4px);
}

.scroll-folder.peek .paper {
  transform: translate(-50%, 0%);
  transition: all 0.4s ease;
}

.scroll-folder.peek .folder__front {
  transform: skew(10deg) scaleY(0.8);
}

.scroll-folder.peek .right {
  transform: skew(-10deg) scaleY(0.8);
}

/* Open State */
.scroll-folder.open {
  transform: translateY(-8px);
}

/* Base black shadow for folder back (all states) */
.scroll-folder .folder__back {
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.4s ease;
}

/* Glow effect on folder back when open - adds orange glow to black shadow */
.scroll-folder.open .folder__back {
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2),
    -15px 20px 40px rgba(255, 107, 53, 0.3),
    15px 20px 40px rgba(255, 107, 53, 0.3),
    0px 25px 50px rgba(255, 107, 53, 0.4);
}

.scroll-folder.open .paper:nth-child(1) {
  transform: translate(-150%, -80%) rotateZ(-20deg);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: -3px 14px 18px rgba(0, 0, 0, 0.25);
}

.scroll-folder.open .paper:nth-child(2) {
  transform: translate(50%, -80%) rotateZ(20deg);
  height: 80%;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: -3px 14px 18px rgba(0, 0, 0, 0.25);
}

.scroll-folder.open .paper:nth-child(3) {
  transform: translate(-50%, -120%) rotateZ(0deg);
  height: 85%;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: -3px 14px 18px rgba(0, 0, 0, 0.25);
}

.scroll-folder.open .folder__front {
  transform: skew(15deg) scaleY(0.6);
}

.scroll-folder.open .right {
  transform: skew(-15deg) scaleY(0.6);
}

/* Hide specific papers */
.scroll-folder .paper.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10%) !important;
}

/* Special positioning for 2-paper mode - CLOSER SPREAD */
.scroll-folder.open[data-paper-count="2"] .paper:nth-child(1) {
  transform: translate(-90%, -75%) rotateZ(-12deg) !important;
}

.scroll-folder.open[data-paper-count="2"] .paper:nth-child(2) {
  transform: translate(10%, -75%) rotateZ(12deg) !important;
}

/* Single paper mode - centered */
.scroll-folder.open[data-paper-count="1"] .paper:nth-child(1),
.scroll-folder.open[data-paper-count="1"] .paper-hire {
  transform: translate(-50%, -100%) rotateZ(0deg) !important;
  height: 85%;
  width: 85%;
  box-shadow: -3px 14px 18px rgba(0, 0, 0, 0.25);
}

/* Inside papers - visible when single card pops out */
.inside-paper {
  position: absolute;
  z-index: 1;
  bottom: 15%;
  left: 50%;
  background: #fcfcfc;
  /* box-shadow: -3px 14px 18px rgba(0, 0, 0, 0.25); */
  border-radius: 8px;
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.inside-paper-1 {
  width: 81%;
  height: 56%;
  transform: translate(-50%, 5%);
  background: #fff !important;
}

.inside-paper-2 {
  width: 70%;
  height: 65%;
  background-color: #fcfcfc;
  transform: translate(-50%, 8%);
}

/* Show inside papers only for single card mode */
.scroll-folder.open[data-paper-count="1"] .inside-paper {
  opacity: 1;
}

/* Paper icons */
.paper-icon {
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
}

.scroll-folder.open .paper-icon {
  opacity: 1;
}

.paper-1 img {
  width: 40px;
}

.paper-2 img {
  width: 55px;
}

.paper-3 img {
  height: 40px;
}

.paper-4 img {
  width: 40px;
}

@media (max-width: 768px) {
  .text-block-title {
    font-size: 22px;
  }

  .text-block-description {
    font-size: 14px;
  }
}

/* ============================================
   FOLDER SHOWCASE SECTION
   ============================================ */

.folder-showcase-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.folder-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.folder-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: scale(2);
}

.folder-label {
  color: white;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* Folder Styles */
.folder {
  transition: all 0.2s ease-in;
  cursor: pointer;
  position: relative;
}

.folder:not(.open):hover {
  transform: translateY(-8px);
}

.folder:not(.open):hover .paper {
  transform: translate(-50%, 0%);
}

.folder:not(.open):hover .folder__front {
  transform: skew(15deg) scaleY(0.6);
}

.folder:not(.open):hover .right {
  transform: skew(-15deg) scaleY(0.6);
}

.folder.open {
  transform: translateY(-8px);
}

.folder.open .paper:nth-child(1) {
  transform: translate(-154%, -83%) rotateZ(-15deg);
  transition: all 0.3s ease-in-out;
}

.folder.open .paper:nth-child(1):hover {
  transform: translate(-120%, -70%) rotateZ(-15deg) scale(1.1)
    translate(var(--magnet-x, 0), var(--magnet-y, 0));
}

.folder.open .paper:nth-child(2) {
  transform: translate(45%, -80%) rotateZ(15deg);
  height: 80%;
  transition: all 0.3s ease-in-out;
}

.folder.open .paper:nth-child(2):hover {
  transform: translate(10%, -70%) rotateZ(15deg) scale(1.1)
    translate(var(--magnet-x, 0), var(--magnet-y, 0));
}

.folder.open .paper:nth-child(3) {
  transform: translate(-50%, -100%) rotateZ(0deg);
  height: 80%;
  transition: all 0.3s ease-in-out;
}

.folder.open .paper:nth-child(3):hover {
  transform: translate(-50%, -100%) rotateZ(5deg) scale(1.1)
    translate(var(--magnet-x, 0), var(--magnet-y, 0));
}

.folder.open .folder__front {
  transform: skew(15deg) scaleY(0.6);
}

.folder.open .right {
  transform: skew(-15deg) scaleY(0.6);
}

.folder__back {
  position: relative;
  width: 100px;
  height: 65px;
  background: #fb6630 !important;
  border-radius: 0px 10px 10px 10px;
}

.paper {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 10%);
  width: 70%;
  height: 80%;
  background: var(--paper-1, #fcfcfc);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paper:nth-child(2) {
  background: var(--paper-2, #f2f2f2);
  width: 80%;
  height: 70%;
}

.paper:nth-child(3) {
  background: var(--paper-3, #ffffff);
  width: 90%;
  height: 60%;
}

.paper-content {
  display: none;
  font-size: 6px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.folder.open .paper-content {
  display: block;
}

.folder__front {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: #ff7f51 !important;
  border-radius: 5px 0px 10px 10px;
  transform-origin: bottom;
  transition: all 0.3s ease-in-out;
}

.folder__front.right {
  left: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .folder-wrapper {
    gap: 60px;
  }

  .folder-container {
    transform: scale(1.5);
  }
}

.talk-message-2 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding-bottom: 90px;
}

.load-back-1 {
  background-color: #ffffff;
}

.load-back {
  background-color: #ffffff;
}

.loader {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
  color: #000;
  transform: translateX(-38px);
  animation: sGlow 2s infinite;
  box-shadow: 57px -19px 0 #1f1e1e, /* top-right */ 38px -19px 0 #1f1e1e,
    /* top-center */ 19px -19px 0 #1f1e1e, /* top-left */ 19px 0 0 #1f1e1e,
    /* middle-left */ 38px 0 0 #1f1e1e, /* middle-center */ 57px 0 0 #1f1e1e,
    /* middle-right */ 57px 19px 0 #1f1e1e,
    /* bottom-right */ 38px 19px 0 #1f1e1e,
    /* bottom-center */ 19px 19px 0 #1f1e1e;
  /* bottom-left */
}

@keyframes sGlow {
  0% {
    box-shadow: 57px -19px 0 6px #4e233b, 38px -19px 0 #1f1e1e,
      19px -19px 0 #1f1e1e, 19px 0 0 #1f1e1e, 38px 0 0 #1f1e1e, 57px 0 0 #1f1e1e,
      57px 19px 0 #1f1e1e, 38px 19px 0 #1f1e1e, 19px 19px 0 #1f1e1e;
  }

  12.5% {
    box-shadow: 57px -19px 0 #1f1e1e, 38px -19px 0 6px #ff7700,
      19px -19px 0 #1f1e1e, 19px 0 0 #1f1e1e, 38px 0 0 #1f1e1e, 57px 0 0 #1f1e1e,
      57px 19px 0 #1f1e1e, 38px 19px 0 #1f1e1e, 19px 19px 0 #1f1e1e;
  }

  25% {
    box-shadow: 57px -19px 0 #1f1e1e, 38px -19px 0 #1f1e1e,
      19px -19px 0 6px #68a5ff, 19px 0 0 #1f1e1e, 38px 0 0 #1f1e1e,
      57px 0 0 #1f1e1e, 57px 19px 0 #1f1e1e, 38px 19px 0 #1f1e1e,
      19px 19px 0 #1f1e1e;
  }

  37.5% {
    box-shadow: 57px -19px 0 #1f1e1e, 38px -19px 0 #1f1e1e, 19px -19px 0 #1f1e1e,
      19px 0 0 6px #576067, 38px 0 0 #1f1e1e, 57px 0 0 #1f1e1e,
      57px 19px 0 #1f1e1e, 38px 19px 0 #1f1e1e, 19px 19px 0 #1f1e1e;
  }

  50% {
    box-shadow: 57px -19px 0 #1f1e1e, 38px -19px 0 #1f1e1e, 19px -19px 0 #1f1e1e,
      19px 0 0 #1f1e1e, 38px 0 0 6px #ac1a27, 57px 0 0 #1f1e1e,
      57px 19px 0 #1f1e1e, 38px 19px 0 #1f1e1e, 19px 19px 0 #1f1e1e;
  }

  62.5% {
    box-shadow: 57px -19px 0 #1f1e1e, 38px -19px 0 #1f1e1e, 19px -19px 0 #1f1e1e,
      19px 0 0 #1f1e1e, 38px 0 0 #1f1e1e, 57px 0 0 6px #4e233b,
      57px 19px 0 #1f1e1e, 38px 19px 0 #1f1e1e, 19px 19px 0 #1f1e1e;
  }

  75% {
    box-shadow: 57px -19px 0 #1f1e1e, 38px -19px 0 #1f1e1e, 19px -19px 0 #1f1e1e,
      19px 0 0 #1f1e1e, 38px 0 0 #1f1e1e, 57px 0 0 #1f1e1e,
      57px 19px 0 6px #ff7700, 38px 19px 0 #1f1e1e, 19px 19px 0 #1f1e1e;
  }

  87.5% {
    box-shadow: 57px -19px 0 #1f1e1e, 38px -19px 0 #1f1e1e, 19px -19px 0 #1f1e1e,
      19px 0 0 #1f1e1e, 38px 0 0 #1f1e1e, 57px 0 0 #1f1e1e, 57px 19px 0 #1f1e1e,
      38px 19px 0 6px #68a5ff, 19px 19px 0 #1f1e1e;
  }

  100% {
    box-shadow: 57px -19px 0 #1f1e1e, 38px -19px 0 #1f1e1e, 19px -19px 0 #1f1e1e,
      19px 0 0 #1f1e1e, 38px 0 0 #1f1e1e, 57px 0 0 #1f1e1e, 57px 19px 0 #1f1e1e,
      38px 19px 0 #1f1e1e, 19px 19px 0 6px #576067;
  }
}

.footer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 2px solid #676767;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.footer-header .flex-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-header .gradient-heading-2 {
  font-size: 30px !important;
  line-height: 36px !important;
}

.footer-header .flex-1 .text {
  font-weight: 500;
  font-size: 16px;
  color: #d5d5d5;
}

.footer-header .width-1 {
  width: 29%;
}

.res-breaker {
  background-color: #f8fafc;
  padding: 90px 0;
}

/* CSR Impact List Styles */
.csr-impact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.csr-impact-list li {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  color: #414141;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.csr-impact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #4a90e2;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Modal Backdrop */
.form-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Show modal */
.form-modal.show {
  display: flex;
}

/* Modal Box */
.form-modal-content {
  background: #121212;
  padding: 28px 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: scaleIn 0.25s ease;
}

/* Icon */
.form-modal-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

/* Message */
.form-modal-message {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Button */
.form-modal-btn {
  background: #eb5d2a;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.form-modal-btn:hover {
  opacity: 0.9;
}

/* Animation */
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
