/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts */
@font-face {
  font-family: 'Owners';
  src: url('../../fonts/Owners-Light.woff2') format('woff2');
  font-weight: 300;
}

@font-face {
  font-family: 'Owners';
  src: url('../../fonts/Owners-Regular.woff2') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Owners';
  src: url('../../fonts/Owners-Medium.woff2') format('woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'Owners';
  src: url('../../fonts/Owners-Medium.woff2') format('woff2');
  font-weight: 600;
}

@font-face {
  font-family: 'Owners';
  src: url('../../fonts/Owners-Bold.woff2') format('woff2');
  font-weight: 700;
}

@font-face {
  font-family: 'Owners';
  src: url('../../fonts/Owners-Bold.woff2') format('woff2');
  font-weight: 800;
}

@font-face {
  font-family: 'Owners';
  src: url('../../fonts/Owners-Black.woff2') format('woff2');
  font-weight: 900;
}

/* Base */
/* Reserve the vertical scrollbar so the fixed header / right-aligned menu does not
   shift horizontally between pages that scroll and pages that don't.
   Excluded on the homepage: its full-bleed 100vw hero + smooth-scroll need the real
   viewport width, and it is always tall enough to have a scrollbar anyway. */
/* html:not(:has(body.page-home)) {
  overflow-y: scroll;
  scrollbar-gutter: stable;
} */

body {
  font-family: 'Owners', sans-serif;
  background: #FFFFFF;
  color: #111;
  overflow-x: hidden;
  /* prevents horizontal scroll from absolute animating cards */
}

/* Container */
.container {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  /* padding: 120px 20px; */
}

/* Hero Section */
.about-hero {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  padding-bottom: 120px;
  /* Decreased up side spacing per user screenshot */
  position: relative;
  z-index: 5;
  background: #f5f5f5;
}

/* Title */
.hero-title {
  font-family: 'Owners';
  font-weight: 500;
  font-size: 94px;
  line-height: 85px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
/*   padding-bottom: 95px; */
}

/* Highlight Wrapper */
.highlight-wrapper {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
}

/* Highlight Pill */
.hero-highlight {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-56%, -17%) rotate(358deg);
  white-space: nowrap;
  font-family: 'Owners';
  font-weight: 800;
  font-size: 62px;
  text-transform: uppercase;
  color: #D32323;
  padding: 12px 40px;
  border-radius: 180px;
  border: 1px solid #AEAEAE;
  background: #FFF;
  letter-spacing: 1px;
  line-height: 62px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

/* Description */
.hero-desc {
  font-family: 'Inter';
  font-size: 18px;
  line-height: 1.5;
  max-width: 1035px;
  margin: 0 auto 30px;
  color: #555555;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  font-family: 'Owners';
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

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

.btn-outline:hover {
  background: #111;
  color: #fff;
}

a.btn,
button.btn {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: inline-block;
}

a.btn-outline,
a.btn-outline:visited,
button.btn-outline {
  color: #111;
}

a.btn-outline:hover,
a.btn-outline:focus,
a.btn-outline:active,
button.btn-outline:hover,
button.btn-outline:focus {
  color: #fff;
}

button.btn-outline:disabled {
  color: #111;
  opacity: 0.6;
  cursor: wait;
}

 a.btn-outline:visited {
    color: #000;
}
 a.btn-outline:hover{
  color:#FFF;
 }

.stats-section {
  background-color: #050505;
  background-image: url('../images/experiencebg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  padding-top: 400px;
  /* Increased down side spacing for better visual clearance per user request */
  color: #ffffff;
  position: relative;
}

/* 360 Viewer */
.iframe-360 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  /* perfectly straddles the white/black boundary independently of its height */
  width: 50%;
  height: 50vh;
  /* merged from user's iframe-box */
  background: #e8e8e8;
  /* merged from user's iframe-box */
  border: none;
  border-radius: 40px;
  /* merged from user's iframe-box */
  box-shadow: none;
  z-index: 20;
  overflow: hidden;
  will-change: width, border-radius;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
  cursor: pointer;
  transition: background 0.3s;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.4);
}

.play-overlay img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.play-overlay:hover img {
  transform: scale(1.1);
}

.iframe-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.scroll-safe-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
  padding: 0;
  /* Overrides .container padding */
}

/* Left Column */
.stats-title {
  font-family: 'Owners';
  font-size: 54px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.text-red {
  color: #D32323;
}

.text-white {
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  /* keeps boxes roughly uniform height */
  gap: 16px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.stat-box-large {
  grid-row: span 2;
  /* Naturally stretches via grid-auto-rows, keeping text vertically centered */
}

.stat-num {
  font-family: 'Owners';
  font-weight: 400;
  font-size: 40px;
  color: #ffffff;
}

.stat-text {
  font-family: 'Inter';
  font-size: 14px;
  color: #AAAAAA;
  text-align: right;
  line-height: 1.4;
  max-width: 200px;
}

/* Right Column: Red Cards */
.stats-right {
  position: absolute;
  top: 420px;
  bottom: 0;
  right: 0;
  width: 725px;
  max-width: 50vw;
  height: auto;
  overflow: hidden;
  /* CRITICAL: Prevents cards bleeding outside the section */
}

.red-card {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 30px 50px;
  border-radius: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
}

/* Start positions & colors */
.card-back {
  width: 100%;
  height: 100%;
  background: #D32323;
  z-index: 1;
}

.card-mid {
  width: 85%;
  height: 68%;
  background: #BE1212;
  z-index: 2;
}

.card-front {
  width: 65%;
  height: 38%;
  background: #A60707;
  z-index: 3;
}

/* Premium Animation triggered via intersection observer class */
.stats-right.is-visible .card-back {
  animation: cardRevealPremium 0.6s 0s forwards cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transform-origin: bottom right;
}

.stats-right.is-visible .card-mid {
  animation: cardRevealPremium 0.6s 0.15s forwards cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transform-origin: bottom right;
}

.stats-right.is-visible .card-front {
  animation: cardRevealPremium 0.6s 0.3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transform-origin: bottom right;
}

/* Smooth and clean card reveal to preserve border-radius rendering */
@keyframes cardRevealPremium {
  0% {
    opacity: 0;
    transform: translate(40px, 100px);
  }

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

.red-card-num {
  font-family: 'Owners';
  font-weight: 300;
  font-size: 80px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1;
}

.red-card-text {
  font-family: 'Inter';
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 200px;
  line-height: 1.4;
}




/* ------------------------------------- */
/* Strategy Section */
/* ------------------------------------- */

.strategy-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  /* Gap 0 because we represent the gap via padding/borders */
  text-align: left;
  padding: 0 40px;
  align-items: stretch;
  max-width: 1600px;
}

.strategy-left {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  /* padding-right: 50px; */
  /* This recreates the previous gap */
}

.strategy-img-top {
  position: relative;
  border-right: 1px solid #C7C7C7;
  border-bottom: 1px solid #C7C7C7;
  border-bottom-right-radius: 60px !important;
  padding-bottom: 60px;
  padding-right: 50px;
}

.strategy-img-top img {
  width: 100%;
  border-radius: 20px;
}

.experience-branding {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-right: 1px solid #C7C7C7;
  border-top: 1px solid #C7C7C7;
  border-top-right-radius: 60px;
  padding-top: 60px;
  margin-top: -1px;
  padding-right: 50px;
}

.exp-num {
  font-family: 'Owners';
  font-weight: 300;
  font-size: 140px;
  line-height: 0.8;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #000;
}

.exp-text {
  font-family: 'Owners';
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #111;
  text-transform: capitalize;
  max-width: 100px;
}

.strategy-right {
  padding-left: 50px;
}

.strategy-heading {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #000;
  max-width: 800px;
  position: relative;
  padding-top: 40px;
  margin-left: -51px;
  padding-left: 50px;
}

.strategy-subheading {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 40px;
}

/* Animations for Strategy Section */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.strategy-img-top,
.strategy-img-bottom {
  overflow: hidden;
}

.strategy-img-top img,
.strategy-img-bottom img {
  transition: transform 0.6s ease;
}

.strategy-img-top:hover img,
.strategy-img-bottom:hover img {
  transform: scale(1.05);
}

.strategy-pills .pill {
  transition: all 0.3s ease;
  cursor: default;
}

.strategy-pills .pill:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.strategy-pills .pill.is-visible {
  animation: pillFadeIn 0.5s ease forwards;
}

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

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

/* Staggered Delays for 6 Pills */
.strategy-pills .pill:nth-child(1) {
  transition-delay: 0.1s;
}

.strategy-pills .pill:nth-child(2) {
  transition-delay: 0.2s;
}

.strategy-pills .pill:nth-child(3) {
  transition-delay: 0.3s;
}

.strategy-pills .pill:nth-child(4) {
  transition-delay: 0.4s;
}

.strategy-pills .pill:nth-child(5) {
  transition-delay: 0.5s;
}

.strategy-pills .pill:nth-child(6) {
  transition-delay: 0.6s;
}

.strategy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.pill {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #111111;
  border: 1px solid #C7C7C7;
  padding: 6px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill .dot {
  width: 8px;
  height: 8px;
  background: #D32323;
  border-radius: 50%;
  display: inline-block;
}

.strategy-footer {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 25px;
  align-items: flex-start;
  margin-top: 78px;
}

.strategy-footer-content {
  display: flex;
  flex-direction: column;
}

.strategy-footer-text {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #555555;
}
.strategy-footer-text-new {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.01em;
    color: #555555;
}





.wow-section {
  padding: 100px 0 120px;
  background: #000 url('../images/wow-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.wow-heading {
  font-family: 'Owners';
  font-weight: 500;
  font-size: 54px;
  line-height: 1.25;
  letter-spacing: 1.66px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 5;
}

.wow-capsule {
  background: #D32323;
  color: #fff;
  border: 1px solid #FFF;
  padding: 9px 25px;
  border-radius: 100px;
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -4px;
  font-weight: 800;
  margin: 0 10px;
  transform: skewY(358deg);
  font-size: 44px;
}

.wow-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  font-weight: 600;
}

.wow-capsule::before,
.wow-capsule::after {
  content: "*";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin-top: 15px;
}

.wow-laptop {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  height: 60px;
  margin-left: 20px;
  border: 1px solid #FFF;
  animation: float 4s ease-in-out infinite;
  background: #D32323;
  border-radius: 100px;
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -4px;
  font-weight: 800;
  position: relative;
  margin: 0 10px;
}

.wow-laptop img {
  width: 110px;
  display: block;
  position: absolute;
  top: -15px;
  left: 4px;
  right: 0;
  margin: 0 auto;
}


@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.left_scroll,
.right_scroll {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 10px;
  padding-top: 10px;
}

.left_marquee,
.right_marquee {
  flex-shrink: 0;
  display: flex;
  gap: 15px;
  min-width: 100%;
}

.left_marquee {
  animation: scrollLeft 40s linear infinite;
}

.right_marquee {
  animation: scrollRight 40s linear infinite;
}

.pic {
  flex: 0 0 auto;
}

.pic img {
  height: auto;
  width: auto;
  max-height: 240px;
  border-radius: 15px;
  opacity: 0.9;
  transition: opacity 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pic img:hover {
  opacity: 1;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 40px));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-100% - 40px));
  }

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

/* ------------------------------------- */
/* Our Team Section */
/* ------------------------------------- */

/* ------------------------------------- */
/* Our Team Section - High Fidelity Sticky Scroll */
/* ------------------------------------- */

.team-section {
  height: 145vh;
  /* Fine-tuned for the perfect balance of smoothness and compact spacing */
  position: relative;
  background: #F6F8FB;
}

.team-sticky-wrapper {
  position: sticky;
  top: 7.5vh;
  /* Centered with smaller height for less top/bottom space */
  height: 85vh;
  padding: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Ensures cards are vertically centered within the sticky box */
  justify-content: center;
}


.team-horizontal-scroller {
  width: 100%;
  position: relative;
  z-index: 5;
  padding: 0 60px;
}

.team-image-track {
  display: flex;
  align-items: center;
  gap: 0;
  /* Handled by negative margins for overlap */
  will-change: transform;
  width: fit-content;
  padding-right: 50vw;
  /* End room */
}

.team-item {
  flex: 0 0 450px;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  /* box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12); */
  margin-left: -200px;
  /* Reference overlap */
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.team-item:first-child {
  margin-left: 0;
}

.team-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Grayscale removed per screenshot check */
  transition: transform 0.5s ease;
}



.team-large-text-static {
  flex: 0 0 600px;
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  font-family: 'Owners';
  font-weight: 800;
  font-size: 320px;
  color: #000;
  text-transform: uppercase;
  margin-left: 100px;
}

.team-large-text-static span {
  display: block;
}

.team-content-block-fixed {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 20;
}

.team-content-move {
  flex: 0 0 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
}

.team-image-track {
  display: flex;
  align-items: center;
  gap: 0;
  will-change: transform;
  width: fit-content;
}

.team-item {
  flex: 0 0 450px;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  margin-left: 25px;
  transform: translateY(0);
  transition: transform 0.4s ease;
  position: relative;
  background: transparent;
}

.team-item:last-child {
  margin-right: 150px;
  /* Reliable fixed gap between images and text */
}

.team-item:first-child {
  margin-left: 0 !important;
}

.team-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.05s ease;
}



/* Correct Stacking: Last image on top per screenshot */
.team-item:nth-child(1) {
  z-index: 1;
}

.team-item:nth-child(2) {
  z-index: 2;
}

.team-item:nth-child(3) {
  z-index: 3;
}

.team-item:nth-child(4) {
  z-index: 4;
}

.team-item:nth-child(5) {
  z-index: 5;
}

.team-item:nth-child(6) {
  z-index: 6;
}

.team-large-text-static {
  flex: 0 0 600px;
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  font-family: 'Owners';
  font-weight: 800;
  font-size: 320px;
  color: #000;
  text-transform: uppercase;
  margin-left: 100px;
}

.team-large-text-static span {
  display: block;
}

.team-heading {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 54px;
  line-height: 52px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 20px;
}

.team-desc {
  font-family: 'Owners';
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 1.5px;
  color: #555555;
  max-width: 550px;
}

.pill-tag {
  background: #D32323;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 100px;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 100%;
  letter-spacing: 0;
  width: max-content;
}

/* Why People Stay Section */
/* Why People Stay Section */
.benefits-slider-section {
  height: 400vh;
  /* 4 cards */
  position: relative;
  background: #000000;
}

.benefits-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card {
  position: absolute;
  width: 1460px;
  height: 640px;
  background: #111;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  /* Top shadow for smooth wipe visibility */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
  z-index: 60;
  pointer-events: none;
}

.benefit-card:nth-child(1) .benefit-content {
  background: #0E0F11;
}

.benefit-card:nth-child(2) .benefit-content {
  background: #131416;
}

.benefit-card:nth-child(3) .benefit-content {
  background: #18191B;
}

.benefit-card:nth-child(4) .benefit-content {
  background: #1D1E20;
}

.benefit-flex {
  display: flex;
  width: 100%;
  height: 100%;
}

.benefit-image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

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

.benefit-number {
  position: absolute;
  left: 50%;
  top: 80px;
  /* Aligned with heading top */
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: #D32323;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Owners';
  font-weight: 800;
  font-size: 48px;
  z-index: 50;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.25);
}

.benefit-content {
  flex: 0 0 50%;
  background: #111;
  padding: 80px 20px 40px 110px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  position: relative;

  background-image: url('../images/wavy-lines.png') !important;
  background-repeat: repeat;
  background-size: cover;
}

.benefit-heading {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 44px;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.benefit-tag {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #FFC95A;
  text-transform: capitalize;
  display: block;
  margin-bottom: 12px;
}

.benefit-heading .highlight {
  color: #D32323;
}

.benefit-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-pill {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
}

.benefit-pill__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: #D32323;
  display: inline-block;
  flex-shrink: 0;
}

.benefit-pill::before {
  content: none;
  display: none;
}

/* ------------------------------------- */
/* Enterprise-Ready. Startup-Fast. Section */
/* ------------------------------------- */
.enterprise-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.enterprise-header {
  text-align: center;
  margin-bottom: 80px;
}

.enterprise-title {
  font-family: "Owners";
  font-weight: 800;
  font-size: 54px;
  line-height: 54px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.enterprise-title .highlight {
  color: #D32323;
}

.enterprise-subtitle {
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #555555;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.enterprise-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 30px;
  padding: 0 40px;
}

.enterprise-node-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.enterprise-node-wrapper.animate-wave {
  opacity: 1;
  margin-top: -30px;
  transform: translateY(0);
}

.enterprise-node-wrapper.animate-wave .enterprise-node {
  animation: doubleBounce 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 1,2,3,4 Sequence Staggering */
.enterprise-node-wrapper:nth-child(1).animate-wave .enterprise-node {
  animation-delay: 0.1s;
}

.enterprise-node-wrapper:nth-child(2).animate-wave .enterprise-node {
  animation-delay: 0.3s;
}

.enterprise-node-wrapper:nth-child(3).animate-wave .enterprise-node {
  animation-delay: 0.5s;
}

.enterprise-node-wrapper:nth-child(4).animate-wave .enterprise-node {
  animation-delay: 0.7s;
}

.enterprise-node {
  width: 250px;
  height: 250px;
  border: 3px solid #E8E8E8;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  background: transparent;
  opacity: 0;
  transform: translateY(40px);
}

.enterprise-node-wrapper.animate-wave .enterprise-node {
  opacity: 1;
}

.enterprise-node:hover {
  border-color: #D32323;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.node-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.node-text {
  font-family: "Owners";
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: #111111;
  text-align: center;
}

@keyframes doubleBounce {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  25% {
    transform: translateY(-25px);
    opacity: 1;
  }

  45% {
    transform: translateY(5px);
    opacity: 1;
  }

  65% {
    transform: translateY(-12px);
    opacity: 1;
  }

  85% {
    transform: translateY(2px);
    opacity: 1;
  }

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



/* Overlapping Circles for Enterprise Section */
.enterprise-grid {
  display: flex !important;
  justify-content: center !important;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0 !important;
  /* Managed by margins now */
  padding: 0;
}

.enterprise-node-wrapper {
  flex: 0 0 280px !important;
  margin-left: -50px !important;
  /* Intersecting circles as per Figma */
}

.enterprise-node-wrapper:first-child {
  margin-left: 0 !important;
}

.enterprise-node {
  background: #ffffff !important;
  /* Opaque white to handle overlap properly */
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: none !important;
  /* Remove hover shadow */
  transition: opacity 0.4s ease !important;
  /* Simple fade if needed, no transform on hover */
}

.enterprise-node:hover {
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: none !important;
}


/* High Fidelity 408px Intersecting Circles */
.enterprise-grid {
  max-width: 1500px !important;
  /* Expansion for 408px nodes */
  gap: 0 !important;
}

.enterprise-node-wrapper {
  flex: 0 0 408px !important;
  /* As per requested size */
  margin-left: -70px !important;
  /* Perfect intersection gap for 408px */
}

.enterprise-node {
  width: 408px !important;
  height: 408px !important;
  background: transparent !important;
  /* All borders should be visible through overlap */
  border-width: 3px !important;
  border-color: #E8E8E8 !important;
}

.node-icon {
  width: 110px !important;
  /* Scaled up for 408px node */
  height: 110px !important;
}


/* responsiv screen */

@media (max-width: 1500px) {
  .hero-highlight {
    transform: translate(-90%, 65%) rotate(358deg);
  }

  .hero-title {
    font-size: 75px;
    line-height: 70px;
  }

  .hero-highlight {
    font-size: 52px;
    line-height: 52px;
    transform: translate(-68%, -11%) rotate(358deg);
  }

  .stats-section {
    padding: 120px 40px;
    padding-top: 350px;
  }

  .stats-title {
    font-size: 50px;
  }

  .red-card-num {
    font-size: 70px;
  }

  .strategy-heading {
    font-size: 50px;
    padding-top: 0px;
  }

  .strategy-img-top {
    padding-bottom: 40px;
    padding-right: 40px;
  }

  .exp-num {
    font-size: 110px;
  }

  .strategy-subheading {
    font-size: 20px;
  }

  .strategy-footer {
    margin-top: 50px;
  }

  .pill {
    font-size: 15px;
    line-height: 27px;
  }

  .experience-branding {
    align-items: anchor-center;
  }

  .wow-heading {
    font-size: 50px;
  }

  .wow-capsule {
    font-size: 40px;
  }

  .benefit-card {
    width: 100%;
    padding: 0 40px;
  }

  .enterprise-title {
    font-size: 50px;
    line-height: 50px;
  }

  .enterprise-node {
    width: 350px !important;
    height: 350px !important;
  }

  .enterprise-node-wrapper {
    flex: 0 0 350px !important;
    margin-left: -70px !important;
  }

  .node-text {
    font-size: 20px;
    line-height: 25px;
  }

  .benefit-content {
    padding: 60px 20px 40px 100px;
  }

  .benefit-pill {
    font-size: 14px;
    line-height: 22px;
  }

  .benefit-number {
    width: 100px;
    height: 100px;
    font-size: 38px;
  }

  /* Team Section Laptop Optimization */
  .team-item {
    flex: 0 0 360px !important;
    /* Scaled down for laptop screens to provide more room for text */
  }

  .team-heading {
    font-size: 38px !important;
    line-height: 40px !important;
  }

  .team-content-move {
    padding-left: 40px !important;
  }

}

@media (max-width: 1281px) {
  .enterprise-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .enterprise-node-wrapper {
    flex: 0 0 40%;
  }

  .enterprise-title {
    font-size: 50px;
  }

  .strategy-footer {
    margin-top: 20px;
  }

  .strategy-heading {
    margin-bottom: 25px;
  }

  .strategy-subheading {
    margin-bottom: 25px;
  }

  .strategy-footer-content {
    margin-bottom: 25px;
  }

  .strategy-footer {
    display: block;
  }

  .strategy-pills {
    margin-bottom: 25px;
  }
}

@media (max-width: 1200px) {
  .hero-highlight {
    font-size: 36px;
    line-height: 36px;
    transform: translate(-60%, -19%) rotate(358deg);
  }

  .hero-title {
    font-size: 60px;
    line-height: 53px;
  }

  .enterprise-node-wrapper {
    flex: 0 0 300px !important;
    margin-left: -30px !important;
  }

  .enterprise-node {
    width: 300px !important;
    height: 300px !important;
  }
}

@media (max-width: 1025px) {
  .hero-title {
    font-size: 50px;
    line-height: 48px;
    padding-bottom: 70px;
  }

  .hero-highlight {
    font-size: 30px;
    line-height: 30px;
    transform: translate(-70%, -10%) rotate(358deg);
  }

  .hero-desc {
    max-width: 70%;
    margin: 0 auto 90px;
  }

  .stats-section {
    padding-top: 350px;
  }

  .stats-title {
    font-size: 40px;
  }

  .red-card-num {
    font-size: 60px;
  }

  .stats-right {
    top: 615px;
  }

  .strategy-heading {
    font-size: 40px;
  }

  .exp-num {
    font-size: 80px;
  }

  .strategy-subheading {
    font-size: 18px;
  }

  .strategy-footer-text {
    font-size: 17px;
    line-height: 23px;
  }

  .strategy-pills {
    margin-bottom: 20px;
  }

  .wow-heading {
    font-size: 40px;
  }

  .wow-capsule {
    padding: 4px 19px;
    font-size: 30px;
    top: 6px;
  }

  .pic img {
    max-height: 200px;
  }

  .wow-section {
    padding: 100px 0 100px;
  }

  .wow-heading {
    margin-bottom: 50px;
  }

  .enterprise-title {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .enterprise-subtitle {
    font-size: 16px;
    line-height: 25px;
  }

  .enterprise-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .enterprise-node {
    width: 350px !important;
    height: 350px !important;
  }

  .enterprise-node-wrapper {
    flex: 0 0 362px !important;
    margin-left: -30px !important;
  }

  .enterprise-node-wrapper:first-child {
    margin-left: 0px !important;
  }

  .about-hero-img-box {
    padding: 0 20px;
    margin-bottom: -280px;
  }

  .service-hero-img,
  .about-hero-img {
    width: calc(60% + var(--pg-value, 0) * 40%);
    /* Start wider on tablets so it's not too narrow */
    height: 400px;
    border-radius: 40px;
  }

  .stats-section {
    padding-top: 320px;
  }

  /* Benefit Cards: Stack vertically on tablet */
  .benefit-card {
    width: 100%;
    height: auto;
    max-height: 100vh;
    border-radius: 30px;
  }

  .benefit-flex {
    flex-direction: column;
  }

  .benefit-image {
    flex: 0 0 auto;
    height: 500px;
    width: 100%;
  }

  .benefit-content {
    flex: 1;
    padding: 100px 30px 100px 30px;
    text-align: left;
    align-items: self-start;
  }

  .benefit-number {
    top: auto;
    bottom: auto;
    left: 50%;
    top: 460px;
    width: 80px;
    height: 80px;
    font-size: 32px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
  }

  .benefit-content {
    background-image: url(../images/wavy-lines.png) !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    background-size: cover !important;
  }

  .benefit-heading {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 18px;
  }

  .benefit-tag {
    font-size: 14px;
    line-height: 22px;
  }

  .benefit-pills-grid {
    justify-content: start;
    gap: 8px;
  }

  .benefit-pill {
    font-size: 13px;
    line-height: 22px;
    padding: 6px 16px;
  }

  .benefit-card::before {
    height: 50px;
  }
}

@media (max-width: 1025px) {
  .strategy-grid {
    grid-template-columns: 314px 1fr;

  }

  .strategy-img-top {
    padding-bottom: 30px;
    padding-right: 30px;
  }

  .strategy-right {
    padding-left: 30px;
  }

  .experience-branding {
    border-top-right-radius: 50px
  }

  .strategy-img-top {
    border-bottom-right-radius: 50px !important;
  }

  .stats-section {
    padding: 120px 0px;
  }

  .stats-right {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 480px;
    overflow: visible;
    max-width: 100vw;
    margin: 40px 0px 0px 20px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }

  .stats-section {
    padding-bottom: 0
  }

  .stats-section {
    padding: 340px 0px 0 0;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .strategy-grid {
    grid-template-columns: 290px 1fr;
  }

  .enterprise-node-wrapper {
    flex: 0 0 100%;
  }

  .enterprise-node {
    width: 240px;
    height: 240px;
  }

  .about-hero .container {
    padding: 80px 0;
  }

  .stats-section {
    padding-top: 330px;
  }


}

@media (max-width: 600px) {
  .hero-title {
    font-size: 40px;
    line-height: 1.1;
    padding-bottom: 120px;
    text-align: center;
  }

  .about-hero .container {
    padding: 100px 15px 0 !important;
  }

  .hero-highlight {
    font-size: 36px;
    line-height: 36px;
    padding: 15px 20px;
    transform: translate(-11%, -8%) rotate(-3deg);
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.6);
    left: 50%;
    white-space: normal;
    width: 90vw;
    max-width: 320px;
  }

  .hero-desc {
    max-width: 100%;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 16px 20px;
  }

  .iframe-360 {
    height: 20vh;
  }

  .enterprise-section {
           padding: 70px 0 60px;
  }

  .enterprise-title {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 32px;
    letter-spacing: 1px;
  }

  .enterprise-grid {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .enterprise-node-wrapper {
    flex: 0 0 auto !important;
    margin-left: 0 !important;
    margin-top: -50px !important;
  }

  .enterprise-node-wrapper:first-child {
    margin-top: 0 !important;
  }

  .enterprise-node {
    width: 330px !important;
    height: 330px !important;
    background: transparent !important;
    border-width: 1px !important;
    border-color: #E8E8E8 !important;
  }

  .enterprise-node-wrapper:first-child {
    margin-left: 0px !important;
  }

  .node-text {
    font-size: 18px;
    line-height: 20px;
  }

  /* Stats Section: Full width stacked layout */
  .stats-section {
    padding-top: 240px !important;
    padding: 0;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 20px;
  }

  .stats-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-box {
    padding: 17px 20px;
    gap: 12px;
    justify-content: flex-start;
  }

  .stat-box-large {
    grid-row: auto;
  }

  .stat-num {
    font-size: 32px;
    min-width: 80px;
  }

  .stat-text {
    font-size: 14px;
    max-width: none;
    text-align: left;
  }

  /* Red Cards: Nested Overlapping Boxes per Figma */
  .stats-right {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 480px;
    /* Fixed height for the nested stacking */
    margin-top: 40px;
    overflow: visible;
  }

  .red-card {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 1 !important;
    /* Force visible on mobile */
    transform: none !important;
    /* Remove animation transforms */
    animation: none !important;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 24px 0 0 0;
    /* Corner radius like Figma */
  }

  .card-back {
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #D32323;
    border-top-left-radius: 20px;
    /* Fully rounded base */
  }

  .card-mid {
    width: 84%;
    height: 65%;
    z-index: 2;
    background: #BE1212;
    border-radius: 24px 0 0 0;
  }

  .card-front {
    width: 64%;
    height: 35%;
    z-index: 3;
    background: #A60707;
    border-radius: 24px 0 0 0;
  }

  .red-card-num {
    font-size: 50px;
    margin-bottom: 4px;
  }

  .red-card-text {
    font-size: 11px;
    line-height: 1.2;
  }

  .stats-right {
    max-width: 100vw;
    margin: 40px 20px 0px;
  }

  .strategy-section {
    padding: 90px 0;
  }

  .strategy-img-top {
    border-right: none;
    border-bottom: none;
  }

  .strategy-grid {
    padding: 0 20px;
  }

  .strategy-heading {
    font-size: 32px;
    line-height: 32px;
    padding: 0;
    margin: 0;
    padding-top: 37px;
  }

  .strategy-footer {
    margin-top: 40px;
  }

  .strategy-subheading {
    font-size: 16px;
    line-height: 18px;
  }

  .strategy-subheading br {
    display: none;
  }

  .pill {
    font-size: 13px;
    line-height: 27px;
    padding: 4px 12px;
    gap: 5px;
  }

  .strategy-footer-text {
    font-size: 15px;
    line-height: 22px;
    padding-bottom: 65px;
  }

  .wow-capsule {
    padding: 0px 8px;
    font-size: 18px;
    top: 6px;
    margin: 0;
  }

  .wow-capsule::before,
  .wow-capsule::after {
    content: "*";
    width: 15px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-top: 10px;
  }

  .wow-heading {
    font-size: 24px;
    line-height: 32px;
    max-width: 90%;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .left_scroll,
  .right_scroll {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 8px;
    padding-top: 5px;
  }

  .pic img {
    max-height: 100px;
    border-radius: 7px;
  }



  .wow-laptop {
    width: 50px;
    height: 27px;
    margin: 0 0px;
    top: 0px;
  }

  .wow-section {
    padding: 80px 0 80px;
  }

  .wow-laptop img {
    width: 50px;
    display: block;
    position: absolute;
    top: -8px;
    left: 4px;
    right: 0;
    margin: 0 auto;
  }

  .wow-heading br {
    display: none;
  }

  .strategy-pills {
    margin-bottom: 30px;
  }

  .experience-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 0;
    border-top: 0;
    border-top-right-radius: 0;
    padding-top: 0;
    margin-top: 0;
    padding-right: 0;
    justify-content: center;
    border-bottom: 1px solid #C7C7C7;
    padding-bottom: 40px;
  }

  .exp-text {
    font-size: 15px;
  }

  .strategy-right {
    padding-left: 0;
  }

  .stats-section {
    overflow: hidden;
  }

  .strategy-img-top {
    padding-bottom: 50px;
    padding-right: 0;
  }

  .exp-num {
    font-size: 100px;
  }

  .strategy-img-top,
  .strategy-img-bottom {
    overflow: visible;
  }

  .strategy-img-top img,
  .strategy-img-bottom img {
    width: 100%;
  }

  .strategy-footer-content {
    margin-bottom: 0;
  }

  .benefit-content {
    background-image: url(../images/wavy-lines-mobile.png) !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    background-size: cover !important;
  }

  .enterprise-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
  }

  .enterprise-subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .node-icon {
    width: 100px !important;
    height: 100px !important;
  }

}

/* ------------------------------------------- */
/* SOFTWARE CONSULTING ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ SERVICE PAGE STYLES */
/* ------------------------------------------- */

/* HERO SECTION */
.container.hero-container {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 20px;
	    padding-top: 0;
}

.service-hero {
  padding: 120px 20px 0;
  background-color: #f5f5f5;
  text-align: center;
}

.service-title {
  font-family: 'Owners';
  font-weight: 500;
  font-size: 80px;
  line-height: 85px;
  text-transform: uppercase;

  color: #111;
  letter-spacing: 0.05em;
}

.service-pill-box {
  display: inline-block;
  margin-top: 10px;
  position: relative;
}

.service-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -116%) rotate(358deg);
  white-space: nowrap;
  font-family: 'Owners';
  font-weight: 800;
  font-size: 62px;
  text-transform: uppercase;
  color: #D32323;
  padding: 12px 40px;
  border-radius: 180px;
  border: 1px solid #AEAEAE;
  background: #FFF;
  letter-spacing: 1px;
  line-height: 62px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 2;
}

.service-desc {
  font-family: 'Inter';
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

.service-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.service-hero-img-box {
  width: 100%;
  max-width: none;
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  margin-bottom: -300px;
}

.about-hero-img-box {
  width: 100%;
  max-width: none;
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  margin-bottom: -400px;
}

.about-hero .container {
  padding: 100px 0;
}

.service-hero-img,
.about-hero-img {
  width: calc(30% + var(--pg-value, 0) * 70%);
  /* Expands from 30% to 100% */
  height: 600px;
  border-radius: 60px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  transition: width 0.1s linear;
  /* Smooth width update */
  will-change: width, transform;
}

.service-hero-img img,
.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: opacity .5s cubic-bezier(.104, .204, .492, 1) 0s;
  transform: scale(calc(1.05 - var(--pg-value, 0) * .05));
  /* Subtle zoom-out as it expands */
  will-change: transform;
}

/* METHODOLOGY SECTION (Beyond Advice) */
.methodology-section {
  background-color: #050505;
  background-image: radial-gradient(circle, #333 1px, transparent 1px);
  background-size: 30px 30px;
  /* Dotted Grid Style */
  padding: 410px 20px 70px;
  color: #fff;
  text-align: center;
}

.methodology-title {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 54px;
  line-height: 54px;
  text-transform: uppercase;
  margin-bottom: 20px;

  letter-spacing: 0.05em;
}

.methodology-desc {
  font-family: 'Inter';
  font-size: 18px;
  line-height: 1.6;
  max-width: 1130px;
  margin: 0 auto 80px;
  color: #FFFFFFCC;
}

.methodology-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.page-template-content-design .methodology-grid{
	max-width: 1400px;
}
.page-template-resource-augmentation .methodology-grid{
	max-width: 1800px;
}
.methodology-pill {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 200px;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(255, 255, 255, 0.02);
  margin-left: -60px;
  position: relative;
}

.methodology-pill:first-child {
  margin-left: 0;
}

.methodology-pill:hover {
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-8px);
}

.pill-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pill-text {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
	    letter-spacing: 6%;
  /* Slightly smaller for better fit */
  color: #fff;
  text-transform: capitalize;
}

.methodology-footer {
     font-family: 'Owners';
    font-size: 18px;
    color: #FFFFFF99;
    text-transform: capitalize;
    letter-spacing: 8%;
    margin-top: 40px;
}


.expertise-section {
  padding: 120px 0;
  background-color: #FFFFFF;
}

.expertise-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.expertise-title {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 54px;
  line-height: 54px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 85px;
  letter-spacing: 2px;
  padding-top: 120px;
}

.expertise-subtitle {
  font-family: 'Inter';
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.expertise-card {
  border: 1px solid #EAEAEA;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s ease;
  background: #fff;
}

.expertise-card:hover {
  border-color: #111;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.expertise-card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
}

.expertise-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expertise-card-title {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 24px;
  color: #111;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.expertise-card-desc {
  font-family: 'Inter';
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* SECTION 04: TECHNICAL EXCELLENCE */
.excellence-section {
  padding: 120px 0;
  background-color: #F9F9F9;
  border-top: 1px solid #EEE;
}

.excellence-title {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 54px;
  text-align: center;
  color: #111;
  margin-bottom: 20px;
}

.excellence-subtitle {
  font-family: 'Inter';
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.excellence-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.excellence-pillar {
  flex: 1;
}

.pillar-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.pillar-line {
  height: 2px;
  background: #D32323;
  width: 40px;
}

.pillar-num {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 20px;
  color: #D32323;
}

.pillar-title {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 24px;
  color: #111;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.pillar-desc {
  font-family: 'Inter';
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Responsive Adjustments Services */
@media (max-width: 1500px) {
  .service-title {
    font-size: 65px;
    line-height: 75px;
  }

  .service-pill {
    font-size: 50px;
    line-height: 50px;
    padding: 10px 30px;
  }

  .methodology-title {
    font-size: 44px;
    line-height: 44px;
  }

  .methodology-desc {
    margin: 0 auto 70px;
  }

}

@media (max-width: 1200px) {
  .service-title {
    font-size: 70px;
    line-height: 65px;
  }

  .service-pill {
    font-size: 40px;
    line-height: 40px;
    padding: 10px 30px;
  }

  .methodology-title {
    font-size: 38px;
  }

  .methodology-section {
    padding: 310px 20px 70px;
  }

  .container.hero-container {
    padding: 80px 20px;
  }

  .service-hero-img,
  .about-hero-img {
    height: 450px;
  }

  .service-hero-img-box {
    margin-bottom: -220px;
  }

  .about-hero-img-box {
    margin-bottom: -350px;
  }
}

@media (max-width: 1024px) {
  .service-hero {
    padding-top: 80px;
  }

  .service-title {
    font-size: 64px;
    line-height: 65px;
  }

  .service-pill {
    font-size: 44px;
    line-height: 48px;
    padding: 8px 30px;
  }

  .service-desc {
    font-size: 16px;
    padding: 0 20px;
  }

  .service-hero-img-box {
    margin-bottom: -200px;
    padding: 0 20px;
  }

  .about-hero-img-box {
    margin-bottom: -350px;
    padding: 0 20px;
  }

  .service-hero-img,
  .about-hero-img {
    height: 450px;
    border-radius: 40px;
  }

  .methodology-section {
    padding-top: 300px;
  }

  .methodology-title {
    font-size: 40px;
    line-height: 1.2;
  }

  .methodology-grid {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
  }

  .methodology-pill {
    flex: 1 1 calc(50% - 20px);
    border-radius: 100px;
    margin-left: 0;
    padding: 40px 20px;
  }

  .methodology-pill:first-child,
  .methodology-pill:last-child {
    border-radius: 100px;
  }

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

  .excellence-grid {
    flex-wrap: wrap;
    gap: 30px;
  }

  .excellence-pillar {
    flex: 1 1 45%;
  }

  .methodology-desc {
    margin: 0 auto 50px;
  }
}

@media (max-width: 768px) {
  .service-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

  .expertise-title,
  .excellence-title {
    font-size: 42px;
  }

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

  /* Methodology Section for Tablet/Mobile */
  .methodology-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .methodology-pill {
    flex: 0 0 auto;
    width: 320px;
    height: 160px;
    border-radius: 200px;
    padding: 0;
    margin-left: 0;
    margin-top: -20px;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .methodology-pill:first-child {
    margin-top: 0;
    z-index: 4;
  }

  .methodology-pill:nth-child(2) {
    z-index: 3;
  }

  .methodology-pill:nth-child(3) {
    z-index: 2;
  }

  .methodology-pill:last-child {
    z-index: 1;
  }

  .pill-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pill-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .pill-text {
    font-size: 13px;
    font-weight: 500;
  }
}

@media (max-width: 600px) {
  .service-hero {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .service-title {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .service-pill-box {
    margin-top: -5px;
    display: block;
    height: 30px;
    position: relative;
    z-index: 5;
  }

  .service-pill {
    font-size: 24px;
    line-height: 1;
    padding: 10px 24px;
    transform: translate(-50%, -60%) rotate(-1deg);
    background-color: #fff;
    border: 1px solid #AEAEAE;
    color: #D32323;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 2;
  }

  .service-desc {
    font-size: 14px;
    line-height: 18px;
    padding: 0 20px;
    margin-bottom: 25px;
  }

  .service-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    font-size: 14px;
    padding: 14px 10px;
    letter-spacing: 0.05em;
    border: 1px solid #111;
    background: transparent;
    color: #111;
    text-transform: uppercase;
    font-weight: 600;
  }

  .service-hero-img-box {
    margin-top: 70px;
    margin-bottom: -149px;
    padding: 0;
  }

  .about-hero-img-box {
    margin-top: 70px;
    margin-bottom: -285px;
    padding: 0 20px;
  }

  .service-hero-img,
  .about-hero-img {
    height: 320px;
    border-radius: 40px;
  }

  .methodology-section {
    padding-top: 200px;
    padding-bottom: 40px;
  }

  .methodology-title {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .methodology-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .methodology-footer {
    font-size: 11px;
    margin-top: 40px;
  }

  .expertise-title,
  .excellence-title {
    font-size: 28px;
  }

  .container.hero-container {
    padding: 80px 0px;
    padding-bottom: 0;
  }

  .methodology-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0px;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .methodology-pill {
    flex: 0 0 auto;
    width: 320px;
    height: 200px;
    border-radius: 200px;
    padding: 0;
    margin-top: -20px;
    background: transparent !important;
    /* Translucent background to show overlapping borders */
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Crisp thin border */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .methodology-pill:first-child {
    margin-top: 0;
  }

  .methodology-pill:nth-child(n) {
    z-index: 1;
    /* Keep them on the same level so borders are visible at intersections */
  }

  .pill-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pill-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .pill-text {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
  }


}

.actually-do-section {
  background-color: #fff;
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
  /* Added bottom border */
}

.actually-do-container {
  display: flex;
  max-width: 100%;
  /* Changed to full width */
  margin: 0;
}

.actually-do-left {
  flex: 0 0 50%;
  /* Fixed width for left side */
  padding: 120px 80px;
  /* Padding at top to align title */
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Align title to top */
  align-items: center;
}

.actually-do-title {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 54px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 0.02em;
}

.actually-do-right {
  flex: 1;
  border-left: 1px solid #EAEAEA;
}

.actually-do-item {
  padding: 60px;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  transition: background-color 0.3s ease;
}

.actually-do-item:last-child {
  border-bottom: none;
}

.actually-do-item:hover {
  background-color: #fcfcfc;
}

.actually-do-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.actually-do-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.actually-do-content h3 {
  font-family: 'Owners';
  font-weight: 700;
  font-size: 22px;
  line-height: 35px;
  color: #111;
  margin-bottom: 5px;
  text-transform: capitalize;
  letter-spacing: 0.8%;
}

.actually-do-content p {
  font-family: 'Inter';
  font-size: 18px;
  line-height: 24px;
  line-height: 1.6;
  color: #555555;
  max-width: 450px;
}

/* Responsive for Section 03 */
@media (max-width: 1500px) {
  .actually-do-title {
    font-size: 44px;
  }

  .actually-do-content h3 {
    font-size: 20px;
    line-height: 32px;
  }

  .actually-do-content p {
    font-size: 16px;
  }

  .actually-do-item {
    padding: 50px;
    gap: 40px;
  }
}

@media (max-width: 1200px) {
  .actually-do-title {
    font-size: 38px;
    line-height: 44px;
  }

  .actually-do-item {
    padding: 40px;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .actually-do-left {
    padding: 80px 40px;
  }

  .actually-do-title {
    font-size: 40px;
  }

  .actually-do-item {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {

  .actually-do-container {
    flex-direction: column;
  }

  .actually-do-left {
    height: auto;
    position: relative;
    padding: 80px 20px 40px;
    border-bottom: 1px solid #EAEAEA;
    align-items: flex-start;

  }

  .actually-do-right {
    border-left: none;
  }

  .actually-do-item {
    padding: 40px 20px;
    gap: 20px;
  }

  .actually-do-icon {
    width: 60px;
    height: 60px;
  }

  .actually-do-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .actually-do-title {
    font-size: 32px;
    width: 100%;
    line-height: 32px;
  }

  .actually-do-content h3 {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
  }

  .actually-do-content p {
    font-size: 14px;
    line-height: 16px;
  }

  .actually-do-left {
    padding: 80px 20px 25px;
    border-bottom: none;
  }

}



/* SECTION 06: DIGITAL TRANSFORMATION & STRATEGY */
.transformation-wrapper {
  background-image: url('../images/wow-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  /* Clip the off-screen (translateX) impact section horizontally to avoid page-wide
     horizontal scroll, while keeping vertical overflow visible for the overlap. */
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.foundation-section {
  /* padding: 140px 0 100px; */
}

.foundation-section .container {
  border-bottom: 1px solid #FFFFFF80;
  padding: 140px 0 100px;
}

.foundation-grid {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.foundation-icon-box {
  flex: 0 0 300px;
}

.foundation-icon-box img {
  width: 100%;
  height: auto;
}

.foundation-content {
  flex: 1;
}

.foundation-title-animate {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  text-transform: uppercase;
  margin-bottom: 30px;
  background: linear-gradient(to right, #fff 50%, rgba(255, 255, 255, 0.2) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.1s linear;
  text-align: left;
}

.foundation-desc {
  font-family: 'Inter';
  font-size: 18px;
  line-height: 1.6;
/*   color: rgba(255, 255, 255, 0.7); */
   color: #FFF;
  margin-bottom: 30px;
  max-width: 1000px;
  text-align: left;
}

.foundation-lebal {
  font-family: 'Inter';
  font-size: 16px;
  line-height: 16px;
	font-weight:500;
  color: #FFF;
  margin-bottom: 20px;
  max-width: 600px;
  text-align: left;
}

.foundation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.foundation-tags span {
    padding: 10px 20px;
    /* border: 1px solid rgba(255, 255, 255, 0.15); */
    border-radius: 100px;
    font-size: 14px;
    line-height: 32px;
    background: #FFFFFF1F;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-family: 'Inter';
}

.foundation-tags span:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.divider-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
}

/* Strategy Horizontal Scroll Section */
.strategy-scroll-wrapper {
  height: 500vh;
  /* Increased height for 4 slides */
  position: relative;
  background: transparent;
}

.strategy-slider-section-horizontal {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.strategy-slider-track {
  display: flex;
  flex-wrap: nowrap;
  width: 400vw;
  /* Correct width for 4 full-viewport slides */
  height: 100%;
  will-change: transform;
}

.strategy-slide-horizontal {
  width: 100vw;
  height: 100%;
  flex: 0 0 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.strategy-container {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  text-align: left;
}

.strategy-slide-content {
  flex: 0 0 100%;
  z-index: 2;
  position: relative;
}

.strategy-slide-content h2 {
  font-family: 'Owners';
  font-weight: 700;
  font-size: 92px;
  line-height: 80px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
  max-width: 88%;
  letter-spacing: 2px;
}

.strategy-slide-content p {
  font-family: 'Inter';
  font-size: 22px;
  line-height: 22px;
  color: #FFFFFFCC;
  max-width: 100%;
  font-weight: 500;
}

.strategy-slide-image {
  position: absolute;
  right: 0;
  /* Align to container right edge */
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  /* Adjust width as needed */
  height: auto;
  z-index: 1;
  /* clip-path: polygon(0% 0%, 70% 0%, 90% 50%, 70% 100%, 0% 100%, 15% 50%); */
  overflow: hidden;
}

.strategy-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

/* Impact Section */
.impact-section {
  background: #D32323;
  padding: 80px 190px 80px 150px;
  margin-left: 150px;
  margin-top: 0;
  margin-bottom: 0;
  z-index: 100;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(100%) translateY(270px) !important;
  margin-top: -270px;
  margin-bottom: 300px;
}

.impact-section.visible {
  transform: translateX(0) translateY(270px) !important;
}

.impact-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.impact-content-box {
  flex: 0 0 38%;
}

.impact-title {
  font-family: 'Owners';
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 6%;
}

.impact-slider-outer {
  /* flex: 1; */
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  justify-content: center;
}

.impact-slider {
  width: 350px;
  height: 400px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}

.impact-card {
  background: #fff;
  border-radius: 40px;
  padding: 60px 40px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.impact-card-border {
  border: 1px solid #00000033;
  width: 128px;
  width: 135px;
}

.impact-card img {
  width: 150px;
  height: auto;
  margin-bottom: 40px;
  transition: transform 0.6s ease;
}

.impact-slide.active .impact-card img {
  transform: translateY(-15px);
}

/* Remove default swiper shadows completely to clear muddy overlays */
.impact-slider [class^="swiper-slide-shadow"] {
  display: none !important;
}

/* Give non-active cards a light grey solid background so they are distinct but clean, removing dark muddy shadows */
.impact-slider .swiper-slide:not(.swiper-slide-active) .impact-card {
  background-color: #f2f2f247 !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05) !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.impact-card p {
  color: #111;
  font-family: 'Owners';
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin: 0;
  letter-spacing: 6%;
  max-width: 90%;
  margin-top: 30px;
}

.impact-prev,
.impact-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.impact-prev:hover,
.impact-next:hover {
  background: #fff;
}

.impact-prev:hover img,
.impact-next:hover img {
  filter: invert(1);
}







/* Responsive for Section 04 */
@media (max-width: 1500px) {
  .foundation-section .container {
    padding: 110px 60px 80px;
  }

  .foundation-title-animate {
    font-size: 38px;
    line-height: 46px;
  }

  .foundation-desc {
    font-size: 17px;
  }

  .strategy-slide-content h2 {
    font-size: 82px;
    line-height: 70px;
  }

  .strategy-container {
    margin: 0 60px;
  }

  .strategy-slide-image {
    clip-path: none;
  }

  .impact-section {
    margin-left: 60px;
    padding: 80px 100px 80px 100px;
  }

  .impact-title {
    font-size: 38px;
    line-height: 46px;
  }
}
@media (max-width: 1200px) {
  .strategy-slide-content h2 {
    font-size: 72px;
    line-height: 70px;
  }

  .impact-section {
    padding: 70px 50px 70px 50px;
  }

  .impact-slider-outer {
    gap: 60px;
  }

  .impact-container {
    gap: 30px;
  }

  .impact-title {
    font-size: 34px;
    line-height: 42px;
  }

  .impact-card p {
    font-size: 17px;
    line-height: 27px;
    margin-top: 20px;
  }

  .impact-card img {
    width: 130px;
    margin-bottom: 30px;
  }
}

/* Section 07: Technology Expertise */
.expertise-scroll-wrapper {
  height: 400vh;
  /* Increased for more scroll time */
  position: relative;
  background: #fff;
}

.expertise-section {
  background: #fff;
  color: #111;
  padding: 0;
  position: relative;
  min-height: 400vh;
  /* Increased for more scroll time */
  z-index: 10;
}

.expertise-section .container {
  width: 100%;
}


.expertise-title .text-red {
  color: #D32323;
}

.expertise-list {
  position: sticky;
  top: 0;
  min-height: 100vh;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
}

.expertise-row {
  border-top: 1px solid #eee;
  padding: 30px 0;
  transition: all 0.5s ease;
  position: relative;
  width: 100%;
  background: #fff;
}

.expertise-row .container {
  max-width: 1500px;
  margin: 0 auto;
  text-align: left;
}

.expertise-row:last-child {
  border-bottom: 1px solid #eee;
}

.expertise-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.expertise-number {
  font-family: 'Owners';
  font-size: 28px;
  line-height: 28px;
  color: #000;
  flex: 0 0 80px;
  font-weight: 300;
  letter-spacing: 6%;
}

.expertise-name {
  font-family: 'Owners';
  font-weight: 500;
  font-size: 42px;
  line-height: 42px;
  color: #ccc;
  /* Default faded color */
  margin: 0;
  flex: 1;
  transition: color 0.5s ease;
  text-transform: uppercase;
  letter-spacing: 7%;
  padding-left: 200px;
}

.expertise-icon {
  color: #ccc;
  transition: color 0.5s ease, transform 0.5s ease;
  flex: 0 0 48px;
}

.expertise-row-details {
  max-height: 200px;
  /* Reduced from 500px for smoother timing */
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  opacity: 1;
  padding-left: 266px;
  /* Align with title */
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0px;
}

.expertise-tags span {
  padding: 8px 18px;
  border: 1px solid #ddd;
  border-radius: 100px;
  font-size: 14px;
  font-family: 'Inter';
  color: #666;
  background: transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.expertise-tags span img {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

/* Active State (Default or highlighted via JS) */
.expertise-row:not(.completed) .expertise-name {
  color: #111;
}

.expertise-row:not(.completed) .expertise-icon svg path {
  fill: #D32323;
}

/* Completed State (Faded out) */
.expertise-row.completed .expertise-name,
.expertise-row.completed .expertise-number,
.expertise-row.completed .expertise-icon {
  color: #1111114D;
}

.expertise-row.completed .expertise-row-details {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.8s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.expertise-row.completed .expertise-icon {
  opacity: 0.3;
}

/* Hover over completed should brighten it up */
.expertise-row.completed:hover .expertise-name {
  color: #111;
}

.expertise-row.completed:hover .expertise-icon {
  opacity: 1;
}

/* Hover Effects */
.expertise-row:hover .expertise-name {
  color: #111;
}

.expertise-row:hover .expertise-icon svg path {
  fill: #D32323;
}

.expertise-tags span:hover {
  background: #D32323;
  color: #fff;
  border-color: #D32323;
}

/* extra Hover Effects */
.expertise-tags span {
  position: relative;
  padding: 8px 16px;
  border-radius: 50px;
  z-index: 1;
  overflow: hidden;
}

/* hidden by default */
.expertise-tags span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 300%;
  height: 300%;
  background-image: conic-gradient(transparent,
      #D32323,
      transparent 50%);
  z-index: -2;
  opacity: 0;
}

/* inner background layer */
.expertise-tags span::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #fff;
  /* change if needed */
  border-radius: 50px;
  z-index: -1;
}

/* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ hover trigger */
.expertise-tags span:hover::before {
  opacity: 1;
  animation: rotateBorder 2s linear infinite;
}

/* your existing hover */
.expertise-tags span:hover {
  background: transparent;
  color: #666;
  border-color: #D32323;
}




/* animation */
@keyframes rotateBorder {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* extra Hover Effects */

/* Mobile Adjustments */
@media (max-width: 768px) {
  .expertise-scroll-wrapper {
    height: 400vh;
    /* Maintain sticky scroll distance */
  }

  .expertise-section {
    position: relative;
    min-height: 400vh;
    padding: 0;
  }

  .expertise-list {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .expertise-row {
    padding: 20px 20px;
  }

  .expertise-title {
    font-size: 32px;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .expertise-name {
    font-size: 20px;
    padding-left: 0;
    line-height: 1.2;
  }

  .expertise-number {
    flex: 0 0 40px;
    font-size: 14px;
  }

  .expertise-row-details {
    padding-left: 40px;
  }

  .expertise-tags span {
    padding: 5px 10px;
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  .transformation-wrapper {
    background-position: left;
  }

  .foundation-grid {
    flex-direction: column;
    gap: 40px;
  }

  .foundation-icon-box {
    flex: none;
    width: 200px;
  }

  .foundation-title-animate {
    font-size: 44px;
  }

  /* Horizontal Slider Tablet adjustments */
  .strategy-slide-horizontal {
    padding: 0;
  }

  .strategy-container {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    text-align: center;
  }

  .strategy-slide-content {
    flex: none;
    text-align: center;
    padding-bottom: 50px;
  }

  .strategy-slide-content h2 {
    font-size: 44px;
    margin: 0 auto 20px;
  }

  .strategy-slide-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex: none;
    width: 100%;
    height: 400px;
  }

  .impact-container {
    flex-direction: column;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .impact-content-box {
    flex: none;
    padding-right: 0;
  }

  .impact-slider-nav {
    justify-content: center;
  }

  .strategy-slide-content h2 {
    font-size: 62px;
    line-height: 60px;
  }

  .strategy-container {
    padding: 0;
  }

  .impact-section {
    margin-left: 0;
    margin-top: 0;
    transform: none !important;
    padding: 60px 20px;
    opacity: 1;
    /* Ensure visibility on mobile if scroll trigger is finicky */
  }

}

@media (max-width: 600px) {

  .strategy-slider-section-horizontal {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .strategy-slider-track {
    flex-direction: column;
    width: 100% !important;
    height: auto;
    transform: none !important;
    padding-bottom: 40px;
    margin: 0 35px 0px 20px;
  }

  .strategy-slide-horizontal:last-child {
    border-bottom: none;
  }

  .strategy-slide-horizontal {
    width: 100%;
    height: auto;
    flex: none;
    /* padding: 60px 0; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .strategy-container {
    height: auto;
    /* padding: 0 20px; */
    /* margin: 0 20px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 235px;
  }

  .strategy-slide-content {
    padding-bottom: 0;
  }

  .strategy-slide-content {
    z-index: 2;
    position: relative;
    width: 100%;
    pointer-events: none;
  }

  .strategy-slide-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 68%;
    height: 68%;
    z-index: 1;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%);
    overflow: hidden;
    opacity: 0.7;
    /* Light opacity so text is readable */
  }

  .strategy-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .strategy-slide-content h2 {
    font-size: 24px;
    line-height: 22px;
    margin-bottom: 10px;
    max-width: 100%;
    /* Don't let text go all the way to the right edge */
    text-align: left;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Shadow for readability on image */
    padding-bottom: 7px;

  }

  .foundation-section .container {
    padding: 60px 0px 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin: 0 20px;
  }

  .strategy-container {
    margin: 0;
  }

  .foundation-title-animate {
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 24px;
  }

  .foundation-title-animate br {
    display: none;
  }

  .strategy-slide-content p {
    font-size: 12px;
    line-height: 14px;
    max-width: 70%;
    text-align: left;
    color: #FFFFFFCC;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }

  .impact-title {
    font-size: 26px;
    line-height: 28px;
  }

  .impact-container {
    gap: 50px;
  }

  .impact-title br {
    display: none;
  }

  .impact-section {
    padding: 60px 20px 150px;
    overflow: hidden;
  }

  .impact-prev,
  .impact-next {
    bottom: -70px;
    top: auto;
  }

  .foundation-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .foundation-lebal {
    margin-bottom: 24px;
  }

  .foundation-tags span {
    background: #FFFFFF1F;
  }

  .impact-slider {
    width: 280px;
    height: 350px;
  }

  .impact-slider-outer {
    gap: 20px;
    width: 100%;
  }

  .impact-prev img,
  .impact-next img {
    width: 22px;
  }

  .impact-prev,
  .impact-next {
    width: 65px;
    height: 65px;
    position: absolute;
    bottom: -110px;
    top: auto;
  }

  button.impact-next {
    right: 25%;
  }

  button.impact-prev {
    left: 25%;
  }

  .foundation-section {
    background-image: url('../images/top.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }

  .strategy-scroll-wrapper {
    height: auto;
    background-image: url('../images/bottom.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
  }
}




@media (max-width: 1500px) {
  .expertise-row {
    padding: 30px 60px;
  }

  .expertise-title {
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 75px;
    padding-top: 100px;
  }

  .expertise-name {
    font-size: 32px;
    line-height: 32px;
    padding-left: 150px;
  }

  .expertise-icon svg {
    width: 70px;
    height: 80px;
  }

  .expertise-row-details {
    padding-left: 231px;
  }



}


@media (max-width: 1200px) {
  .expertise-title {
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 60px;
    padding-top: 80px;
  }

  .expertise-name {
    font-size: 27px;
    line-height: 27px;
    padding-left: 100px;
  }

  .expertise-row-details {
    padding-left: 178px;
  }

  .expertise-number {
    font-size: 25px;
    line-height: 26px;
  }

  .expertise-icon svg {
    width: 60px;
    height: 70px;
  }

  .expertise-tags span {
    font-size: 12px;
  }


}

/* Original Desktop Layout Restoration */
.mobile-only-item {
  display: none !important;
}

.team-marquee-inner {
  display: contents;
  /* Unwraps for desktop flex flow */
}

@media (max-width: 1024px) {
  .mobile-only-item {
    display: block !important;
  }

  .team-section {
    height: auto !important;
    padding: 80px 0  80px !important;
    /* Reduced from 100px to tighten layout */
    background: #F6F8FB !important;
    color: #111111 !important;
    overflow: visible !important;
  }

  .team-sticky-wrapper {
    position: relative !important;
    height: auto !important;
    display: block !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .team-image-track {
    display: flex !important;
    flex-direction: column-reverse !important;
    /* Stack gallery then text */
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    transform: none !important;
    animation: none !important;
  }

  .team-horizontal-scroller {
    width: 100% !important;
    overflow: hidden !important;
    padding: 20px 0 10px !important;
    /* Reduced bottom padding */
  }

  .team-marquee-inner {
    display: flex !important;
    flex-direction: row !important;
    width: max-content !important;
    gap: 0 !important;
    /* Gap removed to fix loop math */
    padding: 0 !important;
    animation: redoMarquee 10s linear infinite !important;
    will-change: transform;
  }

  .team-item {
    flex: 0 0 320px !important;
    /*height: 440px !important;*/
    position: relative !important;
    border-radius: 20px !important;
    margin: 0 !important;
    padding-right: 20px !important;
    /* Padding added here for perfect loop */
    overflow: hidden !important;
  }

  .team-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
	h2.team-heading br {
    display: none;
}

  .team-content-move {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 0px 20px 50px 20px !important;
    text-align: center !important;
    opacity: 1 !important;
    background: transparent !important;
    flex: none !important;
    height: auto !important;
  }

  .team-heading {
    color: #111111 !important;
    font-size: 38px !important;
    line-height: 42px !important;
  }

  .team-sticky-wrapper {
    top: auto;
  }

  .team-desc {
    color: #555555 !important;
    font-size: 16px !important;
    margin-top: 15px !important;
    max-width: 90%;
    margin: 0 auto;
	          line-height: 20px;
  }

  @keyframes redoMarquee {
    0% {
      transform: translate3d(0, 0, 0);
    }

    100% {
      transform: translate3d(-33.3333%, 0, 0);
      /* Perfectly loops through 1 of 3 sets */
    }
  }
}

@media (max-width: 1024px) {
  .expertise-title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 60px;
    padding-top: 80px;
  }

  .impact-section {
    margin-bottom: 0px;
  }

  .expertise-name {
    padding-left: 40px;
  }

  .expertise-row-details {
    padding-left: 117px;
  }

  .expertise-icon svg {
    width: 60px;
    height: 60px;
  }

  .expertise-tags {
    gap: 7px;
  }

  .expertise-number {
    font-size: 20px;
    line-height: 20px;
  }
}

@media (max-width: 600px) {
  .expertise-row {
    padding: 15px 0px;
  }

  .expertise-title {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 40px;
    padding-top: 80px;
  }

  .expertise-name {
    font-size: 20px;
    line-height: 20px;
    padding-left: 0;
    padding-top: 10px;
	          max-width: 80%;
  }

  .expertise-icon svg {
    width: 50px;
    height: 50px;
  }

  .expertise-icon {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: auto;
  }

  .expertise-row-header {
    position: relative;
    display: block;
  }

  .expertise-row-details {
    padding-left: 0;
    padding-top: 22px;
  }

  .expertise-section {
    padding: 0 20px;
  }

  .team-section {
    padding: 80px 0 !important;
  }

  .team-horizontal-scroller {
    padding: 0 !important;
  }

  .team-item {
    flex: 0 0 250px !important;
    height: auto !important;
    position: relative !important;
    border-radius: 14px !important;
    margin: 0 !important;
    padding-right: 10px !important;
    overflow: hidden !important;
  }

  .team-heading {
    color: #111111 !important;
    font-size: 31px !important;
    line-height: 32px !important;
  }

  .team-heading br {
    display: none;
  }

  .benefit-card {
    width: 100%;
    padding: 0 20px;
  }

  .benefits-slider-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}




/* SECTION 04: STRATEGIC BLUEPRINT */
.blueprint-scroll-wrapper {
  height: 300vh;
  /* Reduced for faster scroll */
  position: relative;
  background-color: #000;
  background-image: url('../images/wow-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.blueprint-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  /* Top align */
  justify-content: center;
  margin-bottom: 270px;
}

.blueprint-grid {
  display: flex;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0px 0;
  /* Padding top for space */
  align-items: flex-start;
  /* Top align */
}

.blueprint-left {
  flex: 0 0 50%;
  text-align: left;
  padding-top: 40px;
  /* Adjust title alignment */
}

.blueprint-main-title {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 54px;
  line-height: 54px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
}

.blueprint-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Align stack to top */
  position: relative;
  height: 600px;
  padding-top: 0;
}

.blueprint-cards-stack {
  position: relative;
  width: 550px;
  /* Increased width */
  height: 600px;
  /* Increased height to accommodate wider content */
  perspective: 2000px;
  /* Increased perspective for 3D */
}

.blueprint-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 40px;
  /* Slightly more rounded as per Figma */
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  /* Softer, larger shadow */
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.blueprint-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.blueprint-card-image-box {
  width: auto;
  /* Slightly larger */
  height: auto;
  border-radius: 50%;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blueprint-card-image-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(211, 35, 35, 0.6); 
  z-index: 1; */
}

.blueprint-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100%) brightness(0.8);  */
}

.blueprint-card-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Owners';
  font-weight: 300;
  /* Slightly heavier */
  font-size: 120px;
  /* Larger as per Figma */
  color: #fff;
  z-index: 2;
  letter-spacing: 2px;
  line-height: 1;
}

.blueprint-card-title {
  font-family: 'Owners';
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 8%;
}

.blueprint-card-line {
  width: 144px;
  height: 2px;
  background: #D32323;
  margin-bottom: 30px;
}

.blueprint-card-desc {
  font-family: 'Owners';
  font-size: 18px;
  line-height: 20px;
  color: #111111;
  max-width: 380px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 8%;
}

/* Card States */
.blueprint-card.active {
  z-index: 10;
}

.blueprint-card.next {
  z-index: 5;
}

.blueprint-card.prev {
  z-index: 1;
}

.blueprint-card.hidden {
  z-index: 0;
  display: none;
}

/* Responsive for Section 04 */
@media (max-width: 1500px) {
  .blueprint-grid {
    padding: 100px 60px 0;
  }

  .blueprint-main-title {
    font-size: 48px;
    line-height: 48px;
  }

  .blueprint-cards-stack {
    width: 480px;
    height: 550px;
  }
}

@media (max-width: 1200px) {
  .blueprint-main-title {
    font-size: 40px;
    line-height: 40px;
  }

  .blueprint-cards-stack {
    width: 420px;
    height: 500px;
  }

  .blueprint-card {
    padding: 40px 30px;
  }

  .blueprint-card-number {
    font-size: 90px;
  }
}

@media (max-width: 1024px) {
  .blueprint-scroll-wrapper {
    background-position: left;
  }

  .impact-section.visible {
    transform: translateX(0) translateY(0px) !important;
  }
}

@media (max-width: 991px) {
  .blueprint-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    gap: 100px;
  }

  .blueprint-left {
    flex: none;
    text-align: center;
    padding-top: 0;
  }

  .blueprint-main-title {
    font-size: 36px;
    line-height: 36px;
  }

  .blueprint-right {
    width: 100%;
    height: auto;
    min-height: 550px;
  }

  .blueprint-cards-stack {
    width: 100%;
    max-width: 450px;
  }

}

@media (max-width: 768px) {
  .blueprint-sticky-container {
    height: 100vh;
    /* Keep it sticky */
    padding: 40px 20px;
  }

  .blueprint-grid {
    padding: 0;
    gap: 50px;
  }

  .blueprint-main-title {
    font-size: 30px;
    line-height: 30px;
  }

  .blueprint-cards-stack {
    width: 100%;
    max-width: 100%;
    height: 450px;
  }

  .blueprint-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .blueprint-card-number {
    font-size: 70px;
  }

  .blueprint-card-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .blueprint-card-line {
    width: 80px;
    margin-bottom: 15px;
  }

  .blueprint-card-desc {
    font-size: 14px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .blueprint-main-title {
    font-size: 26px;
    line-height: 26px;
  }

  .blueprint-cards-stack {
    height: 400px;
  }

  .blueprint-card {
    padding: 25px 15px;
  }

  .blueprint-card-number {
    font-size: 60px;
  }

  .blueprint-scroll-wrapper {
    background-image: url('../images/wow-bg-mobile.png');
  }

  .blueprint-scroll-wrapper {
    background-position: center center;
  }


}

/* Section 08: Specialized Talent */
.talent-section {
  background-color: #D32323;
  padding: 100px 0 100px;
  /* Increased top padding to add space for the cards */
  position: relative;
  z-index: 50;
  /* Higher z-index to be sure it's above previous backgrounds */
  margin-top: -320px;
  /* Moved slightly upward to overlap more with Section 07 */
  width: 88vw;
  /* Spans the full viewport width */
  left: 0;
  overflow: hidden;
  transform: translateX(-100%);
  /* Initial state for animation from left */
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  /* Smooth entry */
}

.talent-section.animate-in {
  transform: translateX(0);
}

.talent-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: left;
}

.talent-title {
  font-family: 'Owners';
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
  max-width: 95%;
  letter-spacing: 1px;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* resource start */
.talent-grid.three-columns-talent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.talent-grid.three-columns-talent .talent-card{
        display: block;
        padding: 40px 35px;
}
.talent-card-inner-col {
    display: flex;
    align-items: center;
    gap: 20px;
}
p.talent-desc {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFFCC;
    font-weight: 400;
    font-family: 'Owners';
    letter-spacing: 8%;
    padding-top: 25px;
}
/* resource start */
.talent-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.talent-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-5px);
}

.talent-icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.talent-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.talent-name {
  font-family: 'Owners';
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  line-height: 20px;
  text-transform: none;
  letter-spacing: 6%;
}

/* Responsive */
@media (max-width: 1500px) {
  .talent-title {
    font-size: 40px;
    line-height: 46px;
  }

  .talent-name {
    font-size: 16px;
    line-height: 18px;
  }
   .talent-grid.three-columns-talent{
      grid-template-columns: repeat(3, 1fr);
          gap: 40px;
  }
}

@media (max-width: 1200px) {
  .talent-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .talent-title {
    font-size: 36px;
    line-height: 42px;
  }

  .talent-section {
    padding: 70px 0 70px;
  }
  .talent-grid.three-columns-talent{
      grid-template-columns: repeat(3, 1fr);
          gap: 30px;
  }
}

@media (max-width: 991px) {
  .talent-section {
    margin-top: -280px;
    padding: 80px 0;
  }

  .talent-title {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 40px;
  }

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

  .blueprint-sticky-container {
    margin-bottom: 0;
  }
   .talent-grid.three-columns-talent{
      grid-template-columns: repeat(2, 1fr);
          gap: 30px;
  }
}

@media (max-width: 600px) {
  .talent-section {
    margin-top: 0px;
    padding: 60px 0;
    width: 100vw;
  }

  .talent-container {
    padding: 0 20px;
  }

  .talent-title {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
    max-width: 85%;
    margin: 0 auto;
    padding-bottom: 41px;
  }

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

  .talent-card {
    gap: 12px;
    padding: 20px 14px;
  }

  .talent-grid {
    gap: 8px;
  }

  .talent-name {
    font-size: 14px;
    line-height: 16px;
  }

  .talent-icon-box {
    width: 35px;
    height: 35px;
  }
   .talent-grid.three-columns-talent{
      grid-template-columns: repeat(1, 1fr);
          gap: 30px;
  }
}

/* Section 08.5: Marquee */
.marquee-section {
  background-color: #D32323;
  padding: 30px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
}

.marquee-content span {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 64px;
  color: #fff;
  text-transform: uppercase;
  padding: 0 10px;
}

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

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

/* Section 09: Why Companies Choose CC */
.choose-desktop {
  display: block;
}

.choose-mobile {
  display: none;
}

.card-marquee {
  height: 100%;
  /* Fill the card height */
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex !important;
  /* Changed from block to flex for vertical centering */
  align-items: center;
  /* Vertically center the marquee wrapper */
  padding: 0 !important;
}

.card-marquee-wrapper {
  display: block;
  width: 200%;
  height: 56px;
  /* Match font size height */
  position: absolute;
  overflow: hidden;
  animation: cardMarqueeAnimation 5s linear infinite;
}

.card-marquee-content {
  float: left;
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.card-marquee-content span {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 56px;
  color: #111;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

@keyframes cardMarqueeAnimation {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

.choose-section {
  background-color: #fff;
  padding: 120px 0;
  overflow: hidden;
}

.choose-mobile {
  display: none;
}

.choose-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.choose-main-title {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 54px;
  line-height: 54px;
  text-align: center;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.choose-main-title .text-red {
  color: #D32323;
}

.choose-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 650px;
  /* Slightly taller to accommodate the design */
}

.choose-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 82%;
  flex: 1;
}

/* Specific column splits to match Figma */
.choose-col:nth-child(2) .choose-card:first-child {
  flex: 0.35;
}

/* WE'RE READY box */
.choose-col:nth-child(2) .choose-card:last-child {
  flex: 0.65;
}

.choose-col:nth-child(4) .choose-card:first-child {
  flex: 0.65;
}

.choose-col:nth-child(4) .choose-card:last-child {
  flex: 0.35;
}

/* ENTERPRISE box */

.choose-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.choose-card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: inherit;
  /* Ensure background is inherited for hover text */
}

.choose-card:not(.card-no-hover):hover .choose-card-content {
  transform: translateY(-140px);
  /* Increased reveal amount for a larger hover area */
}

.card-flex-row {
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.choose-card-label-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.choose-card-label {
  font-family: 'Owners';
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  text-transform: uppercase;
  max-width: 100%;
  text-align: end;
  letter-spacing: 1px;
}

/* Card Sizes */
.card-small {
  flex: 1;
  height: 300px;
}
.page-template-content-design .card-small{
	height: 400px;
}
.card-tall {
  flex: 1;
  height: 100%;
}

.choose-col .choose-card {
  flex: 1;
  height: 50%;
}

/* Card Themes */
.card-red {
  background-color: #D32323;
  color: #fff;
}

.card-light {
  background-color: #F5F5F5;
  color: #111;
}

.card-dark {
  background-color: #111;
  color: #fff;
}

/* Card Content Elements */
.choose-card-number {
  font-family: 'Owners';
  font-weight: 300;
  font-size: 112px;
  line-height: 1;
  transition: transform 0.5s ease;
}
img.choose-card-icon {
    width: 100px;
}
.choose-card-title {
  font-family: 'Owners';
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  text-transform: uppercase;
  text-align: left;
  transition: transform 0.5s ease;
}

.choose-circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-move-top .choose-card-content {
  padding: 15px;
}

.choose-full-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

/* .card-image-full .choose-card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
} */

.choose-avatars {
  display: flex;
  transition: transform 0.5s ease;
}

.choose-avatars .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  /* border: 2px solid #fff; */
  margin-left: -12px;
}

.choose-avatars .avatar:first-child {
  margin-left: 0;
}

/* Hover Animation: Text from Bottom to Top */
.choose-card-hover-text {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 140px;
  /* Increased height to match reveal amount */
  padding: 20px 40px;
  text-align: center;
  font-family: 'Owners';
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  /* Adjusted line-height */
  letter-spacing: 1px;
  text-transform: uppercase;
  background: inherit;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover States */
.choose-card:not(.card-no-hover):hover .choose-card-number,
.choose-card:not(.card-no-hover):hover .choose-card-title,
.choose-card:not(.card-no-hover):hover .choose-avatars {
  transform: translateY(-60px);
  /* Increased movement to give more space */
}

.choose-card.card-move-top:hover .choose-circle-img {
  transform: translateY(0px);
  /* Moves images further up to clear the larger text area */
}

.choose-card:not(.card-no-hover):hover .choose-card-hover-text {
  opacity: 1;
}

.choose-card.card-red:hover .choose-card-hover-text {
  background-color: #D32323;
  color: #fff;
}

.choose-card.card-light:hover .choose-card-hover-text {
  background-color: #F5F5F5;
  color: #111;
}

.choose-card.card-dark:hover .choose-card-hover-text {
  background-color: #111;
  color: #fff;
}

.choose-card.card-image-full:hover .choose-full-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.choose-card.card-image-full:hover .choose-card-hover-text {
  background: #D32323;
  /* As per Figma hover state for that tall card */
  color: #fff;
}

.card-no-hover {
  cursor: default;
}

/* Responsive */
@media (max-width: 1500px) {
  .choose-main-title {
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 40px;
  }

  .choose-section {
    padding: 100px 0;
  }

  .choose-card-number {
    font-size: 80px;
  }

  .choose-card-label {
    font-size: 16px;
    line-height: 19px;
  }

  .choose-card-content {
    padding: 27px;
  }

  .choose-grid {
    gap: 10px;
    height: 500px;
  }

  .card-marquee-content span {
    font-size: 38px;
  }

  .choose-card-hover-text {
    font-size: 18px;
    line-height: 21px;
  }

  .choose-card-title {
    font-size: 19px;
    line-height: 20px;
  }
	.page-template-content-design .card-small {
    	height: 300px;
	}
	.page-template-content-design img.choose-card-icon {
    	width: 60px;
	}
	.page-template-content-design .choose-card-label{
		        font-size: 14px;
        line-height: 17px;
	}
}

@media (max-width: 1200px) {
  .choose-main-title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .choose-card-number {
    font-size: 60px;
  }

  .choose-card-label {
    font-size: 12px;
    line-height: 15px;
  }

  .card-marquee-content span {
    font-size: 30px;
  }

  .card-small {
    flex: 1;
    height: 200px;
  }

  .choose-grid {
    height: 400px;
  }

  .choose-card-hover-text {
    font-size: 16px;
    line-height: 19px;
  }

  .choose-card:not(.card-no-hover):hover .choose-card-content {
    transform: translateY(-111px);
  }
	img.choose-card-icon {
    	width: 50px;
	}
	.choose-card-content {
    	padding: 20px;
	}
}

@media (max-width: 1024px) {
  .choose-grid {
    height: 340px;
  }

  .choose-container {
    padding: 0 40px;
  }

  .choose-card-title {
    font-size: 12px;
    line-height: 16px;
  }

  .choose-card-number {
    font-size: 45px;
  }

  .choose-card-label {
    font-size: 10px;
    line-height: 13px;
  }

  .choose-avatars .avatar {
    width: 25px;
    height: 25px;
  }

  .card-marquee-content span {
    font-size: 16px;
  }

  .choose-card {
    border-radius: 10px;
  }

  .card-small {
    flex: 1;
    height: 165px;
  }

  .choose-card-hover-text {
    font-size: 12px;
    line-height: 16px;
  }
	.page-template-content-design .card-small {
    	height: 190px;
	}
	.page-template-content-design img.choose-card-icon {
    	width: 50px;
	}
	
}

@media (max-width: 991px) {
  .choose-desktop {
    display: none;
  }

  .choose-mobile {
    display: block;
  }

  .choose-section {
    padding: 60px 0;
  }

  .choose-container {
    padding: 0 20px;
  }

  .choose-main-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 40px;
  }

  .choose-mobile-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .choose-mobile-row-2col {
    display: flex;
    gap: 15px;
    height: 180px;
  }

  .choose-mobile-row-2col .choose-card {
    flex: 1;
    height: 100%;
  }

  .choose-mobile-row-2col .choose-card-content.card-flex-row {
    padding: 30px;
  }

  .choose-mobile-row-2col {
    height: 200px !important;
  }

  .choose-mobile-row-2col .choose-card-number {
    font-size: 70px !important;
    flex-shrink: 0;
    text-align: left;
  }

  .choose-mobile-row-2col .choose-card-label-box {
    align-items: flex-end;
    text-align: right;
  }

  .card-image-circle-row {
    height: 250px !important;
  }

  .choose-card-content-row {
    display: flex;
    align-items: center;
    gap: 90px;
    padding: 20px;
    width: 100%;
    height: 100%;
  }

  .choose-circle-img-small {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .choose-card-title-row {
    font-family: 'Owners';
    font-weight: 800;
    font-size: 34px;
    line-height: 38px;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    max-width: 50%;
  }

  .choose-card-title-small {
    font-family: 'Owners';
    font-weight: 800;
    font-size: 34px;
    line-height: 38px;
    text-transform: uppercase;
    color: #111;
    text-align: left;
  }

  .card-strategy-mobile {
    height: 400px !important;
    background: #D32323;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
  }

  .strategy-mobile-split {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .strategy-mobile-left {
    flex: 0 0 50%;
    padding: 40px;
    background: #D32323;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: left;
    font-family: 'Owners';
    font-weight: 800;
    font-size: 34px;
    line-height: 38px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
  }

  .choose-main-title {
    font-size: 30px;
  }

  .strategy-mobile-right {
    flex: 0 0 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .strategy-mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
  }

  .choose-card-number {
    font-size: 60px !important;
  }

  .choose-card-label {
    font-size: 16px !important;
    text-align: right;
  }

  .choose-avatars .avatar {
    width: 30px;
    height: 30px;
  }

  .card-marquee-content span {
    font-size: 55px;
    letter-spacing: 1px;
  }
}

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

  .choose-mobile-row-2col {
    height: 150px;
  }
}

@media (max-width: 600px) {
  .choose-section {
    padding: 60px 0 0;
  }

  .choose-container {
    padding: 0 20px;
  }

  .choose-main-title {
    font-size: 32px;
    line-height: 32px;
  }

  .choose-card {
    height: auto;
    /* Allow content-based height on mobile rows */
    min-height: 120px;
  }

  .card-tall-mobile {
    height: 350px !important;
  }

  .choose-mobile-row-2col .choose-card-number {
    font-size: 47px !important;
  }

  .choose-mobile-row-2col .choose-card-content.card-flex-row {
    padding: 15px;
  }

  .choose-card-label {
    font-size: 16px !important;
    text-align: right;
    line-height: 18px;
  }

  .card-marquee-content span {
    font-size: 35px !important;
  }

  .choose-mobile-row-2col {
    height: 185px !important;
  }

  .choose-circle-img-small {
    width: 100px;
    height: 100px;
  }

  .choose-card-content-row {
    gap: 20px;
    padding: 16px;
  }

  .choose-card-title-row {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 1px;
  }

  .card-image-circle-row {
    height: 140px !important;
  }

  .strategy-mobile-left {
    padding: 11px;
    font-size: 20px;
    line-height: 21px;
  }

  .choose-card-title-small {
    font-size: 20px;
    line-height: 21px;
    font-weight: 700;
  }

  .choose-card-content {
    padding: 15px;
  }

  .card-strategy-mobile {
    height: 210px !important;
    background: #D32323;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
  }

  .choose-card-hover-text {
    font-size: 14px;
    padding: 10px 20px;
    height: 100px;
  }

  .choose-card:not(.card-no-hover):hover .choose-card-content {
    transform: translateY(-100px);
  }

  .benefit-image {
    flex: 0 0 auto;
    height: 240px;
    width: 100%;
  }

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

  .benefit-number {
    top: 200px;
    width: 70px;
    height: 70px;
    font-size: 28px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
  }

  .benefit-content {
    padding: 50px 20px 40px 20px;
  }

  .benefit-heading {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 14px;
  }

  .benefit-tag {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 8px;
  }

  .benefit-pills-grid {
    gap: 6px;
  }

  .benefit-pill {
    font-size: 12px;
    line-height: 20px;
    padding: 6px 14px;
  }

  .benefit-card {
    width: 96%;
    border-radius: 20px;
  }

  .benefit-card::before {
    height: 30px;
  }

  .strategy-grid {
    display: block;
  }
	.page-template-content-design .choose-card-label {
		font-size: 10px !important;
		text-align: right;
		line-height: 13px;
	}
}

/* SECTION 11: MAIN FOOTER */
.main-footer {
  padding: 150px 0 120px;
  background: #F6F8FB;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  text-align: left;
  align-items: start;
}

.footer-left-area {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-heading {
  font-family: 'Owners';
  font-weight: 700;
  font-size: 24px;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 25px;
}

.footer-links li a {
  font-family: 'Inter';
  font-size: 18px;
  line-height: 20px;
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-weight: 400;
}

.footer-links li a:hover {
  color: #D32323;
  padding-left: 5px;
}

.partners-heading {
  font-family: 'Owners';
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  color: #111111;
  margin-bottom: 35px;
  letter-spacing: 0.08em;
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 30px;
}

.partners-logos img {
  height: 45px;
  object-fit: contain;
}

/* INQUIRY FORM */
.footer-col-form {
  width: 100%;
}

.inquiry-form-card {
  background: #FFFFFF;
  border-radius: 40px;
  padding: 50px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
  margin-left: auto;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inquiry-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.inquiry-form .form-group input {
  width: 100%;
  padding: 18px 25px 18px 55px;
  background: #F9F9F9;
  border: 1px solid #EEEEEE;
  border-radius: 15px;
  font-family: 'Inter';
  font-size: 14px;
  color: #111;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #D32323;
  background: #fff;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

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

.country-select {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F9F9F9;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  padding: 0 15px;
  cursor: pointer;
  font-family: 'Inter';
  font-size: 14px;
  color: #555;
  height: 58px;
}

.country-select .flag {
  width: 20px;
  border-radius: 2px;
}

.country-select .chevron {
  font-size: 10px;
  margin-left: auto;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: #D32323;
  color: #FFFFFF;
  border: none;
  border-radius: 15px;
  font-family: 'Owners';
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-transform: capitalize;
}

.submit-btn:hover {
  background: #b21e1e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(211, 35, 35, 0.2);
}

.partnership-row {
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.partnership-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.partnership-logos img {
  height: 45px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partnership-logos img:hover {
  opacity: 1;
}

/* SECTION 12: DARK FOOTER */
.dark-footer {
  background-color: #F9FAFB;
  padding: 0 0 40px;
  position: relative;
  z-index: 2;
}

.dark-footer-card {
  background-color: #111111;
  border-radius: 40px;
  padding: 60px 80px 80px;
  margin: 0 60px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.dark-footer-top {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 100px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}

.spiral-logo-img {
  width: 160px !important;
  height: 160px !important;
  object-fit: contain;
  margin-bottom: 0 !important;
}

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

.brand-name {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-sub {
  font-family: 'Owners';
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #D32323;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-icon:hover {
  background: #D32323;
  border-color: #D32323;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(211, 35, 35, 0.3);
}

.offices-title {
  font-family: 'Owners';
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 8%;
  line-height: 25px;
}

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

.office-name {
  font-family: 'Owners';
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: 8%;
}

.office-address {
  font-family: 'Owners';
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 8%;
}

.contact-info p {
  font-family: 'Owners';
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: 8%;
  padding-bottom: 5px;
}

.dark-footer-bottom {
  padding: 40px 0 0 60px;
  text-align: left;
}

.dark-footer-bottom p {
  font-family: 'Owners';
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 6%;
  font-weight: 400;
  text-align: center;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1500px) {
  .dark-footer-card {
    margin: 0 40px;
  }

  .main-footer {
    padding: 100px 40px 90px;
    background: #F6F8FB;
  }
}

@media (max-width: 1200px) {
  .footer-grid {
    gap: 20px;
  }

  .dark-footer-card {
    padding: 50px 50px;
    margin: 0 30px;
    border-radius: 30px;
  }

  .dark-footer-top {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-align: left;
    gap: 40px;
  }

  .offices-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
  }

  .social-links {
    gap: 30px;
  }

  .offices-title {
    width: 100%;
    text-align: left;
  }

  .footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0px;
    justify-content: left;
  }

  .footer-brand-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  .spiral-logo-img {
    width: 120px !important;
    height: 120px !important;
  }

  .main-footer {
    padding: 100px 40px 70px;
    background: #F6F8FB;
  }

  .footer-heading {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .partners-heading {
    font-size: 20px;

  }

  .offices-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .partners-heading {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 30px;
  }

}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-left-area {
    gap: 40px;
  }

  .footer-col-form {
    grid-row: span 1;
  }

  .dark-footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
  }

  .dark-footer-card {
    padding: 60px 40px;
  }

  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
  }

  .offices-title {
    width: 100%;
    text-align: left;
  }

  .spiral-logo-img {
    width: 120px !important;
    height: 120px !important;
  }

  .main-footer {
    padding: 70px 30px 70px;
  }

  .footer-links li {
    margin-bottom: 15px;
  }

  .footer-heading {
    margin-bottom: 15px;
  }

  .inquiry-form-card {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .dark-footer-card {
    padding: 60px 40px;
    border-radius: 40px;
    margin: 0 20px;
  }

  .dark-footer-bottom {
    padding-left: 20px;
  }

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

  .footer-logo {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .main-footer {
    padding: 50px 20px 50px;
  }

  .footer-brand-box {
    display: block;
    width: 100%;
    align-items: center;
  }

  .footer-links li a {
    font-size: 16px;
    line-height: 17px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-heading {
    margin-bottom: 0;
  }

  .footer-heading {
    font-size: 18px;
  }

  .footer-links-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-left-area {
    gap: 30px;
  }

  .partners-heading {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 25px;
  }

  .inquiry-form-card {
    padding: 30px 20px;
    border-radius: 15px;
    margin-top: 21px;
  }

  .dark-footer-card {
    padding: 40px 25px;
    border-radius: 30px;
    margin: 0 15px;
  }

  .dark-footer-bottom {
    padding: 30px 0 0 30px;
  }

  .dark-footer {
    padding: 0 0 30px;
  }

  .dark-footer-bottom p {
    font-family: 'Owners';
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 6%;
    font-weight: 400;
    text-align: center;
  }

  .dark-footer-top {
    gap: 40px;
  }

  .spiral-logo-img {
    width: 100px !important;
    height: 100px !important;
  }

  .offices-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .offices-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .dark-footer-bottom {
    padding-left: 0;
    max-width: 75%;
    margin: 0 auto;
  }
}


/* Footer Updated css start */

.footer-flex.footer-grid {
  display: flex;
  gap: 120px;
  justify-content: space-between;
}

.footer-col.footer-right-form {
  max-width: 517px;
}

.footer-col.footer-cols-company {
  max-width: 174px;
}

.footer-col.footer-cols-news {
  max-width: 180px;
}

.footer-links-grid .partners-heading {
  text-transform: uppercase;
}

.footer-links-grid.footer-cols {
  display: flex;
  gap: 120px;

}

.footer-flex .footer-left-area {
  gap: 110px;
}

.footer-right-form .inquiry-form .form-group input,
.footer-right-form .form-group.country-select {
  border-radius: 2px;
}

.footer-right-form .inquiry-form .form-group {
  margin-bottom: 5px;
}

.inquiry-form .form-group textarea {
  width: 100%;
  padding: 18px 25px 18px 25px;
  background: #F9F9F9;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  font-family: 'Inter';
  font-size: 14px;
  color: #111;
  transition: all 0.3s ease;
  min-height: 110px;

}

.email-flex-box input {
  width: 100%;
  padding: 18px 25px 18px 25px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  font-family: 'Inter';
  font-size: 14px;
  color: #111;
  transition: all 0.3s ease;
  width: 397px;
}

.email-flex-box button {
  background-color: #111111;
  border: none;
  opacity: 1;
  border-radius: 8px;
  padding: 5px 7px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.email-flex-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgb(94 94 94 / 47%);
}

.email-flex-box {
  display: flex;
  gap: 7px;
}

/* Footer newsletter signup — beats homepage.css global input[type=email] dark styles */
.main-footer .footer-newsletter-slot .email-flex-box {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 7px;
  align-items: stretch;
}

.main-footer .footer-newsletter-slot .email-flex-box input {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  width: 100% !important;
  max-width: 100% !important;
  height: 52px;
  padding: 18px 25px;
  background-color: #ffffff !important;
  background: #ffffff !important;
  border: 1px solid #eeeeee !important;
  border-radius: 2px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.2;
  color: #111111 !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.main-footer .footer-newsletter-slot .email-flex-box input::placeholder {
  color: #555555 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  opacity: 1 !important;
}

.main-footer .footer-newsletter-slot .email-flex-box input:focus {
  outline: none;
  border-color: #d32323 !important;
  box-shadow: none !important;
}

.main-footer .footer-newsletter-slot .email-flex-box button {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0;
  background-color: #111111 !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  cursor: pointer;
}

.main-footer .footer-newsletter-slot .email-flex-box button img {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0;
  object-fit: contain;
  object-position: center center;
}

.footer-right-form .input-icon {
  right: 20px;
  left: auto;
}

.footer-right-form .inquiry-form .form-group input {
  padding: 18px 25px 18px 25px;
}

.footer-cols .footer-links li a {
  font-family: 'Owners';
  letter-spacing: 1.3px;
  /* font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 45px; */
  text-transform: capitalize;

}

.footer-view-all a {
  color: #D32323 !important;
  font-weight: 600 !important;
}

.footer-right-form .submit-btn {
  letter-spacing: 1.3px;
  font-weight: 500;

}

.footer-cols .footer-links li a {
  padding-right: 5px;
}

.footer-cols .footer-links li a:hover {
  padding-right: 0px;

}

.logo-box-footer .partnership-logos img {
  height: 57px;
}

.logo-box-footer .partnership-logos {
  gap: 20px;
}

.office-box-header {
  display: flex;
  justify-content: space-between;
}

.office-address-mail-box a {
  position: relative;
  background-color: #313131;
  padding: 15px 35px 15px 70px;
  border-radius: 120px;
  color: white;
  text-decoration: none;
  font-family: Owners;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 1.3px;
  transition: all 0.3s ease;

}

.office-address-mail-box a .input-icon {
  left: 25px;
}

.office-address-mail-box a:hover {
  box-shadow: 0 0px 3px rgb(145 145 145 / 47%);
  color: #ffffff;
}

.dark-footer .contact-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.dark-footer .contact-info a:hover,
.dark-footer .contact-info a:focus {
  color: #ffffff;
  text-decoration: none;
}

.footer-dark-offices .office-address-mail-box a {
  color: #ffffff;
}

.footer-dark-offices .office-address-mail-box a:hover,
.footer-dark-offices .office-address-mail-box a:focus {
  color: #ffffff;
}

.office-address-mail-box {
  padding-right: 30px;
}

.footer-dark-offices .dark-footer-top {
  grid-template-columns: 0fr 3fr;
  gap: 120px;
}

.footer-cc-address .office-item {
  width: 33%;
}

.footer-dark-offices .offices-grid {
  display: flex;
  gap: 100px;
}

/* Footer Updated css end */

/* contact us css start */
section.contact-methodology {
  padding: 120px 20px;
  text-align: left;
}

.contact-methodology .methodology-container {
  max-width: 1500px;
  padding: 0 20px;
  margin: auto;
}

.methodology-box {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}

.location-box {
  display: flex;
  margin-top: 80px;
}

.location-box .one-location {
  width: 33.33%;
  border: 1px solid #AEBBC4;
  padding: 60px;
  border-right: none;
  background-repeat: no-repeat;
  background-position: bottom right 40px;
  text-align: left;
}

.one-location h4 {
  font-family: Owners;
  font-weight: 400;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 5px;
  border-bottom: 2px solid #00000021;
  padding: 0px 0 30px 0px;
  margin: 0px 0 30px 0px;
  width: 104px;    color: #111111;
}

.one-location p {
  font-family: Owners;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 2px;
  color: #555555;
  margin-bottom: 80px;
  padding-right: 40px;
}

.one-location {
  position: relative;
}

.one-location::after {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: bottom right;
  right: 40px;
  bottom: 0px;
}

.one-location.uk-address::after {
  background-image: url(../images/uk.svg);
  /* background-repeat: no-repeat;
  background-position: bottom right; */
}

.one-location.usa-address::after {
  background-image: url(../images/usa.svg);

}

.one-location.india-address::after {
  background-image: url(../images/ind.svg);

}

.location-box .one-location.india-address {
  border-right: 1px solid #AEBBC4;
}

span.methodology-title {
  font-family: Owners;
  font-weight: 500;
  font-size: 38px;
  line-height: 54px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.left-methodology h2 {
  font-family: Owners;
  font-weight: 800;
  font-size: 126.45px;
  line-height: 113px;
  letter-spacing: 2.69px;
  text-transform: uppercase;
  margin-bottom: 130px;
}

.left-methodology {
  margin-top: 20px;
}

.right-methodology .footer-heading {
  text-align: center;
  margin-bottom: 10px;
}

.right-methodology .footer-right-form {
  max-width: 639px;
  /* border: 2px solid #DA2E35; */
  border-radius: 40px;
  position: relative;
  padding-left: 30px;
  padding-bottom: 30px;
  z-index: 4;
  display: block;
}

.right-methodology .inquiry-form-card {}

.right-methodology .inquiry-form-card::before {
  content: "";
  width: calC(100% - 70px);
  display: block;
  border-radius: 30px;
  border: 2px solid #DA2E35;
  height: 590px;
  background-color: transparent;
  z-index: -1;
  position: absolute;
  left: 0;
  bottom: 0;
}

.contact-hero .service-desc {
  max-width: 1000px;
}

/* .right-methodology {
  margin: 90px 50px 50px -50px;
} */

.right-methodology .service-desc {
  padding: 0px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-align: center;
  vertical-align: middle;
}

.contact-boxes {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 50px;
}

.icon-circle {
  border: 1px solid #FFFFFF80;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact-boxes p {
  font-family: Owners;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 8%;
  text-transform: capitalize;
  color: #FFFFFF80;
	margin: 0;
}

.info-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-boxes a {
  font-family: Owners;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 8%;
  text-transform: capitalize;
  color: #FFFFFF;
  text-decoration: none;
}

.contact-boxes.top-align {
  align-items: flex-start;
}

.contact-boxes a:hover {
  color: #D32323;
}

@media (max-width: 1500px) {
  .footer-col.footer-right-form {
    max-width: 450px;
  }

  .footer-flex.footer-grid {
    gap: 0;
  }

  .footer-links-grid.footer-cols {
    gap: 60px;
  }

  .footer-dark-offices .dark-footer-top {
    gap: 60px;
  }

  .footer-dark-offices .offices-grid {
    gap: 60px;
  }

  .footer-cc-address .office-item {
    max-width: 220px;
  }

  .dark-footer-card.footer-dark-offices {
    padding: 80px 50px;
  }

  .right-methodology .footer-right-form {
    max-width: 550px;
  }

  span.methodology-title {
    font-size: 36px;
    line-height: 52px;
  }

  .left-methodology h2 {
    font-size: 96.45px;
    line-height: 93px;
  }

  section.contact-methodology {
    padding: 100px 20px;
  }

  .right-methodology .inquiry-form-card::before {

    /* width: 480px; */
  }
}

@media (max-width: 1280px) {
  .footer-links-grid.footer-cols {
    gap: 30px;
    justify-content: space-between;
  }

  .footer-links-grid.footer-cols {
    gap: 30px;
  }

  .logo-box-footer .partnership-logos {
    gap: 14px;
  }

  .email-flex-box input {
    width: 310px;
  }

  .main-footer .footer-newsletter-slot .email-flex-box input {
    width: 100% !important;
    max-width: 100% !important;
  }

  .one-location p {
    font-size: 18px;
    line-height: 23px;
    padding-right: 0px;
  }

  .one-location h4 {
    font-size: 40px;
    line-height: 45px;
  }
}

@media (max-width: 1200px) {
  .footer-dark-offices .offices-grid {
    justify-content: space-between;
  }

  .footer-offices-box {
    width: 100%;
  }

  .email-flex-box input {
    width: 260px;
  }

  .main-footer .footer-newsletter-slot .email-flex-box input {
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-cc-address .office-item {
    max-width: 30%;
  }

  .office-address-mail-box a {
    padding: 12px 40px 12px 75px;

  }

  .office-box-header {
    margin-bottom: 30px;
  }

  .left-methodology h2 {
    font-size: 86.45px;
    line-height: 83px;
  }

  span.methodology-title {
    font-size: 30px;
    line-height: 45px;
  }

  .footer-links-grid.footer-cols.parner-grid {
    justify-content: flex-start;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .footer-links-grid.footer-cols {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 150px !important;
  }

  .footer-links-grid.footer-cols.parner-grid {
    justify-content: start;
  }

  .footer-flex .footer-left-area {
    gap: 70px;
  }

  .footer-cc-address .office-item {
    max-width: 40% !important;
    width: 100%;
  }

  .footer-dark-offices .offices-grid {
    flex-wrap: wrap;
  }


  .footer-flex.footer-grid {
    flex-wrap: wrap;
    gap: 70px !important;
  }

  .office-address-mail-box {
    padding-right: 0;
  }

  .office-address-mail-box a {
    padding: 12px 30px 12px 80px;
  }

  .location-box {
    flex-wrap: wrap;
  }

  .location-box .one-location {
    width: 50%;
  }

  .one-location.usa-address {
    border-right: 1px solid #AEBBC4;
  }

  .location-box .one-location.india-address {
    border-top: none;
  }

  .left-methodology h2 {
    font-size: 76.45px;
    line-height: 73px;
  }

  section.contact-methodology {
    padding: 80px 20px;
  }

  span.methodology-title {
    font-size: 24px;
    line-height: 38px;
  }

  .right-methodology .service-desc {
    font-size: 14px;
    line-height: 18px;
  }

  .contact-boxes a {
    font-size: 16px;
    line-height: 18px;
  }
}

@media (max-width: 991px) {
  .footer-links-grid.footer-cols {
    gap: 70px !important;
  }

  .location-box {
    margin-top: 50px;
  }

  .one-location h4 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .one-location p {
    font-size: 16px;
  }

  .left-methodology h2 {
    margin-bottom: 0;
  }

  .contact-boxes {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 50px;
    flex-direction: column;
    align-content: flex-start;
  }

  .contact-box {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    flex-wrap: wrap;
  }

  .right-methodology .footer-right-form {
    max-width: 100%;
  }

  section.contact-methodology {
    padding: 60px 20px 80px;
  }

  .methodology-box {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;

  }

  .one-location::after {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .footer-links-grid.footer-cols {
    gap: 50px !important;
  }

}

@media (max-width: 600px) {

  .footer-links-grid.footer-cols {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 35px 45px !important;
  }

  .footer-cc-address .office-item {
    max-width: 100% !important;
  }

  .office-box-header {
    display: flex;
    gap: 60px;
    flex-direction: column-reverse;
    align-items: flex-start;

  }

  .office-address-mail-box a {
    font-size: 12px;
    padding: 12px 20px 12px 55px !important;
  }

  .office-address-mail-box a .input-icon {
    left: 15px;
  }

  .dark-footer-card.footer-dark-offices {
    padding: 80px 30px;
  }

  .location-box .one-location {
    width: 100%;
    border-top: none;
    padding: 40px;
  }

  .one-location.uk-address {
    border: 1px solid #AEBBC4;
    border-top: 1px solid #AEBBC4;
  }

  .right-methodology {
    margin: 0;
    padding: 0;
  }

  .right-methodology .footer-right-form {
    border: none;
  }

  .right-methodology .inquiry-form-card {
    margin: 0;
  }

  .contact-boxes {
    margin-top: 30px;
  }

  .icon-circle {
    padding: 12px;
  }

  .container.hero-container {
    padding: 70px 0;
  }

  section.contact-methodology {
    padding: 60px 20px 70px;
  }

  .contact-boxes {
    flex-direction: row;
  }

  .methodology-box {
    gap: 50px;
  }

  .contact-box {
    gap: 0
  }

  .contact-methodology .methodology-container {
    padding: 0;
  }

  .right-methodology .inquiry-form-card::before {
    height: 570px;
  }

  .contact-hero h1.service-title {
    max-width: 350px;
    margin: auto;
  }

  .right-methodology .footer-right-form {
    padding-left: 20px;
    padding-bottom: 20px;
  }
}


/* Footer start  */
.section-footer-cta-services {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 110px 0 0;
	background: #111111;
	cursor: none;
}
.section-footer-cta-services .container{
	max-width: 100%;
	align-items: center;
	justify-content: center;
}
.section-footer-cta-services__title {
	color: #fff;
	font-family: 'Owners', system-ui, sans-serif;
	font-weight: 500;
	font-size: 90px;
	line-height: 86px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
}
.section-footer-cta-services__marquee {
	padding-top: 40px;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
}
.section-footer-cta-services__marquee-track {
	display: inline-flex;
	width: max-content;
	animation: section-footer-cta-services-scroll 28s linear infinite;
}
.section-footer-cta-services__marquee-item {
	font-family: 'Owners', system-ui, sans-serif;
	font-size: 26px;
	line-height: 100%;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	padding-right: 80px;
}
.footer-bottom-row-services .col-6 {
    width: 50%;
    text-align: start;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    margin: 0 auto;
}

.footer-bottom-row-services .row {
    display: flex;
    align-items: center;
    justify-content: center !important;
    text-align: center !important;
    align-content: center;
}

.footer-bottom-row-services p {
    color: #FFF;
    padding: 0;
    font-size: 18px;
    text-align: center;
    margin: 0;
    width: 100%;
    text-transform: capitalize;
    font-weight: 400;
	    font-family: 'Owners';
    letter-spacing: 8%;

}
.footer-bottom-row-services a {
    color: #FFF;
    padding: 40px;
    text-decoration: none;
    font-size: 32px;
}

.footer-bottom-row-services {
    border-top: 1px solid #FFFFFF80;
        margin-top: 100px;
}

.footer-bottom-row-services .col-6 {
     border-right: 1px solid #FFFFFF80;
     width: 50%;
     border-bottom: 1px solid #FFFFFF80;
     text-align: center;
     min-height: 150px;
     display: flex;
     /* flex-wrap: wrap; */
     padding: 0 20px;
}
@keyframes section-footer-cta-services-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}
.section-footer-cta-services__cursor {
	--cx: 50%;
	--cy: 50%;
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 120px;
	margin-left: -60px;
	margin-top: -60px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at var(--cx) var(--cy),
			rgba(255, 255, 255, 0.18),
			rgba(255, 255, 255, 0.05) 20%,
			transparent 45%),
		linear-gradient(180deg, #ef6666, #d32323);
	box-shadow:
		inset 0 8px 15px rgba(255, 255, 255, 0.15),
		inset 0 -10px 15px rgba(0, 0, 0, 0.08),
		0 12px 25px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}
.section-footer-cta-services__cursor.is-visible {
	opacity: 1;
	visibility: visible;
}
.section-footer-cta-services__cursor svg {
	width: 38px;
	height: 38px;
	stroke: #fff;
	stroke-width: 2.5;
	fill: none;
}
.footer-bottom-row-services .col-6 span {
    color: #FFFFFF99;
    font-size: 18px;
    text-align: start !important;
    font-family: 'Owners';
    font-weight: 400;
    letter-spacing: 8%;
    text-transform: capitalize;
    justify-content: start;
    text-align: start;
}
.footer-bottom-row-services .col-6 h3 {
    font-size: 20px;
    color: #FFF;
    text-align: start;
    font-family: 'Owners';
    letter-spacing: 8%;
}

.col-6 .footer-inner-item-list img {
    margin: 0 auto;
}

.footer-inner-item-list {
    text-align: center;
    justify-content: center;
    align-items: self-start;
}

.footer-inner-item-list h4 {
    text-align: start;
    font-family: "Owners";
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #D32323;
    text-transform: capitalize;
}

.footer-bottom-row-services .col-6:first-child{
	    width: 60%;
}
.footer-bottom-row-services .col-6:last-child{
	    width: 60%;
}
.footer-bottom-row-services .col-6:first-child .footer-inner-item-list{
	    text-align: start !important;
}
.footer-bottom-row-services .col-6:last-child .footer-inner-item-list h4{
	    text-align: center !important;
}
.footer-inner-item-list h4 {
    text-transform: uppercase;
    letter-spacing: 8%;
}
@media (max-width: 1400px) {
  .section-footer-cta-services__title{
        font-size: 55px;
    line-height: 60px;
  }
}
@media (max-width: 1100px) {
    .footer-bottom-row-services .row{
        flex-wrap: wrap;
    }
    .footer-bottom-row-services .col-6:first-child {
        width: 50%;
    }
    .footer-bottom-row-services .col-6:last-child {
        width: 100%;
    }
    .footer-bottom-row-services .col-6{
            min-height: 120px;
    }
}
@media (max-width: 1024px) {
  .footer-bottom-row-services .col-6:first-child{
        padding: 20px;
  }
  .footer-bottom-row-services .col-6:first-child br{
    display: none;
  }
}

@media (max-width: 991px) {
    .footer-bottom-row-services .col-6{
            width: 50%;
    }
   .footer-bottom-row-services .col-6:first-child {
        border-bottom: 1px solid #FFFFFF80;
            width: 100%;
                text-align: center;
    }
    .footer-bottom-row-services .col-6 h3{
          text-align: center;
    }
    .footer-bottom-row-services a{
          font-size: 25px;
              padding: 0;
    }
    .footer-bottom-row-services .col-6 h3{
          font-size: 16px;
    }
    .section-footer-cta-services__title{
          font-size: 50px;
    line-height: 50px;
    }
    .footer-bottom-row-services{
            margin-top: 70px;
    }
    .footer-bottom-row-services .row {
        display: flex;
    }
    .footer-bottom-row-services p{
                margin: 0;
                        text-align: center;
    }
    .footer-bottom-row-services .col-6:first-child {
        width: 50%;
    }
    .footer-bottom-row-services .col-6:last-child {
        width: 100%;
    }
}

@media (max-width: 768px) {
	.section-footer-cta-services {
		cursor: auto;
	}
	.section-footer-cta-services__title {
		font-size: 36px;
		line-height: 38px;
	}
	.section-footer-cta-services__cursor {
		display: none;
	}
    .footer-bottom-row-services .col-6:first-child {
        width: 100%;
    }
    .footer-bottom-row-services .col-6 {
        width: 100%;
    }
    .footer-inner-item-list h4{
            text-align: center;
    }
    .footer-bottom-row-services .col-6:first-child .footer-inner-item-list {
        text-align: center;
    } 
    .footer-bottom-row-services .col-6:first-child .footer-inner-item-list {
    text-align: center !important;
}
   
}
@media (max-width: 600px) {
	 .footer-bottom-row-services a{
            font-size: 20px;
    }
    .footer-bottom-row-services p{
            font-size: 15px;
    }
    p.career-footer-cta{
            padding: 20px;
                padding-bottom: 0;
    }
    .career-methodology .methodology-container{
            padding: 0 0px; 
    }
    .footer-right-form .career-page-inquiry.inquiry-form .form-row {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }
    .footer-right-form .career-page-inquiry.inquiry-form .form-group select{
            padding: 18px 10px 18px 10px;
    }
}

/* Google reCAPTCHA v3: hide floating badge (disclosure shown inside form instead) */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
}

/* reCAPTCHA v3 compliance disclosure shown near the form submit button */
.cc-recaptcha-disclosure {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.5;
    color: #9aa0a6;
}

.cc-recaptcha-disclosure a {
    color: #c7c7c7;
    text-decoration: underline;
}

.cc-recaptcha-disclosure a:hover {
    color: #000000;
}


