@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap");

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

body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
}

/* section 1 */
header {
  padding: 1rem;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #333;
}

.logo img {
  height: 36px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 80vh;
  background-image: url("../newAssets/Frame427321240.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  flex-direction: column;
}

.section1-container {
  max-width: 80vw;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.title {
  font-size: 2.8rem;
  font-weight: medium;
  line-height: 65px;
  margin-bottom: 1.2rem;
  color: white;
}

.highlight {
  background: linear-gradient(90deg, #ffbc4b 0%, #f16824 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 50%;
  margin-bottom: 2rem;
}

.cta-button {
  background: linear-gradient(90deg, #ffbc4b 0%, #f16824 100%);
  color: white;
  padding: 0.9rem 1.8rem;
  font-size: 24px;
  font-weight: medium;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 106, 61, 0.4);
}

/* section 2 */

.metrics-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  background-image: url("../newAssets/Component152.png");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center calc(100% - 180px);
}

/* add a pseudo-element for hover background */
.metrics-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../newAssets/component152.svg");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center calc(100% - 50px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none; /* don’t block interactions */
  z-index: -1;
}

.metrics-section.hovered::after {
  opacity: 1;
}

.metrics-container {
  padding: 6rem 1rem;
  position: relative;
}

.metrics-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.metrics-header img {
  width: 80px;
  height: 80px;
}

.metrics-header h2 {
  color: #000;
  text-align: center;
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.metrics-header p {
  margin-top: 1rem;
  margin-bottom: 3rem;
  width: 100%;
  color: #000;
  text-align: center;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 80vw;
  margin: 2rem auto 0;
}

.metric-card {
  flex: 0 1 auto;
  width: calc((100% - 4rem) / 3);
  max-width: fit-content;
  min-width: 332px;
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  border: 2px solid rgba(255, 188, 75, 0.2);
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.metric-value {
  color: #474747;
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: color 0.3s ease;
}

.divider {
  width: 4px;
  height: 90.604px;
  background: #474747;
  transition: all 0.3s ease;
}

.metric-label {
  text-align: left;
  color: #474747;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.metric-card:hover {
  box-shadow: 0 0 10px rgba(255, 188, 75, 0.4);
}

.metric-card:hover .metric-value {
  color: #ffbc4b;
}

.metric-card:hover .divider {
  background-color: #ffbc4b;
  box-shadow: 0 0 5px rgba(255, 188, 75, 0.8);
}

/* section 3 */
.segment-section {
  background-color: black;
  background-image: url("../newAssets/Component152.png");
  background-size: cover;
  background-position: center 60%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.segment-container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 80vw;
  gap: 4rem;
}

.segment-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 50%;
}

.segment-content h2 {
  color: #fff;
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.segment-highlight {
  background: linear-gradient(90deg, #ffbc4b 0%, #f26925 82.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.segment-content p {
  color: #ffffff;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.segment-cta {
  background: linear-gradient(90deg, #ffbc4b 0%, #f16824 125.77%);
  /* padding: 0.9rem 1.6rem; */
  color: #fff;
  border: none;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 100, 0, 0.4);
  width: 418.817px;
  height: 60.06px;
  flex-shrink: 0;
}

.segment-image-card {
  flex: 1 1 550px;
  border-radius: 20px;
  position: relative;
  height: 477.752px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  background: linear-gradient(90deg, #ffbc4b 0%, #f16824 125.77%);
  border: 1px solid rgba(255, 255, 255);
}

.segment-image-overlay {
  background: url("../newAssets/Rectangle61.png") no-repeat center;
  background-size: cover;
  flex-grow: 1;
  border-radius: 20px;
  padding: 3rem 0rem 3rem 1rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.segment-card-wrapper {
  border-radius: 20px;
  width: 290px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.segment-box {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  font-size: 0.95rem;
  padding: 0.8rem;
  color: white;
  backdrop-filter: blur(4px);
  width: 291.515px;
  height: 334.205px;
}

.segment-box-header {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-weight: 600;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  border-radius: 10px;
}

#segmentImage {
  padding-top: 10px;
}

/* section 4 */
.section4 {
  position: relative;
  text-align: center;
  overflow: hidden;
  background-image: url("../newAssets/Component152.png");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center calc(100% - 950px);
}

.section4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../newAssets/component152.svg");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center calc(100% - 950px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none; /* don’t block interactions */
  z-index: -1;
}

.section4.hovered::after {
  opacity: 1;
}

/* make the content layer sit above the pseudo-element */
.section4 > .services-grid-container {
  position: relative;
  z-index: 1;
}

.services-grid-container {
  padding: 6rem 0rem;
  display: flex;
  /* width: 85vw; */
  /* height: 1196px; */
  /* padding: 0.239px 125.934px 0.603px 125.934px; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /* margin: 0 auto; */
}

.services-grid-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.services-grid-header img {
  width: 80px;
  height: 80px;
}

.services-grid-header h2 {
  color: #000;

  text-align: center;
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.services-grid-header p {
  font-size: 20px;
  font-weight: light;
  margin-top: 1rem;
  margin-bottom: 3rem;
  width: 100%;
  color: black;
  text-align: center;
}

.services-grid {
  width: 983px;
  height: 1195px;
  position: relative;
}

.service-card {
  position: absolute;
  border-radius: 20px;
  padding: 24px;
  color: #fff;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-card:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-title {
  font-family: "Outfit", -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #fff;
  margin-bottom: 16px;
}

.service-description {
  font-family: "Outfit", -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: normal;
  color: #fff;
  opacity: 0.7;
}

/* B2B Data - Top left */
.b2b-data {
  position: absolute;
  width: 729px;
  height: 216px;
  left: 0px;
  top: 0px;
  overflow: hidden;
  border-radius: 20px;
  text-align: left;
}

.b2b-data .card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.b2b-data::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(
          270deg,
          rgba(40, 40, 40, 0) 0%,
          #010101 55%
        ); */
  border-radius: 20px;
  z-index: 1;
}

.b2b-data .service-title,
.b2b-data .service-description {
  position: relative;
  z-index: 2;
  color: white;
}

.b2b-data .service-title {
  font-size: 32px;
  width: 300px;
  margin-top: 24px;
}

.b2b-data .service-description {
  font-size: 14px;
  width: 369px;
  margin-top: 8px;
}

/* Full-Funnel Pipeline Generation - Top right */
.pipeline-generation {
  position: absolute;
  width: 229px;
  height: 587px;
  left: 754px;
  top: 0px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(44, 44, 44, 0) -4.97%, #000 74.61%);
  text-align: left;
}

.pipeline-generation .card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pipeline-generation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(44, 44, 44, 0) -4.97%, #000 74.61%);
  border-radius: 20px;
  z-index: 1;
}

.pipeline-generation .service-title,
.pipeline-generation .service-description {
  position: relative;
  z-index: 2;
  color: white;
}

.pipeline-generation .service-title {
  font-size: 32px;
  width: 163px;
  margin-top: 278px;
}

.pipeline-generation .service-description {
  font-size: 14px;
  width: 182px;
  /* margin-top: 32px; */
}

/* Telemarketing - Center left */
.telemarketing {
  width: 229px;
  height: 352px;
  left: 0px;
  top: 235px;
  background: linear-gradient(0deg, #000 0%, #000 100%);
  background-blend-mode: saturation;
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: left;
}

.telemarketing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) -4.97%, #000 65.08%);
  border-radius: 20px;
}

.service-card.telemarketing {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.service-card.telemarketing .card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  object-fit: cover;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

.service-card.telemarketing h3,
.service-card.telemarketing p {
  position: relative;
  z-index: 1;
  color: #fff;
}

/* heading */
.telemarketing .service-title {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;

  width: 192px;
  height: 38px;
  margin-top: 134px;
  position: relative;
  z-index: 1;
  text-align: left;
}

/* description */
.telemarketing .service-description {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #fff;

  width: 182px;
  height: 144px;
  margin-top: 0px;
  position: relative;
  z-index: 1;
  text-align: left;
}

/* big radial glow */
.telemarketing::after {
  width: 300px;
  height: 300px; /* taller glow */
  background: radial-gradient(
    circle at top left,
    rgba(255, 180, 0, 0.15) 0%,
    /* dull yellow/orange */ rgba(255, 140, 0, 0.2) 40%,
    rgba(0, 0, 0, 0) 80%
  );
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

/* show glow on hover */
.telemarketing:hover::after {
  opacity: 1;
}

/* Tech Marketing - Center */
.tech-marketing {
  width: 475px;
  height: 352px;
  left: 254px;
  top: 235px;
  background: linear-gradient(0deg, #2c2c2c -4.97%, #000 63.85%);
  text-align: left;
}

.tech-marketing .service-title {
  font-size: 32px;
  width: 219px;
  height: 40px;
  margin-top: 1px;
}

.tech-marketing .service-description {
  font-size: 14px;
  width: 289px;
  height: 72px;
}

/* big radial glow */
.tech-marketing::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 250px;
  height: 250px; /* taller glow */
  background: radial-gradient(
    circle at top right,
    rgba(255, 180, 0, 0.35) 0%,
    /* dull yellow/orange */ rgba(255, 140, 0, 0.2) 40%,
    rgba(0, 0, 0, 0) 80%
  );
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

/* show glow on hover */
.tech-marketing:hover::after {
  opacity: 1;
}

.tech-icon {
  position: absolute;
  right: 34px;
  top: 34px;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  border: 2px solid #ffbc4b;
  background: linear-gradient(180deg, #222 0%, #141414 100%);
  box-shadow: 0 7px 12px 0 #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* AI Card - Center circle */
.ai-card {
  position: absolute;
  width: 365px;
  height: 365px;
  left: 309px;
  top: 415px;
  border-radius: 50%;
  background: white; /* Outer circle */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ai-card .card-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 335px; /* Middle circle size */
  height: 335px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: cover;
  z-index: 0;
}

.ai-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px; /* Increased inner circle size */
  height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgb(207, 205, 205); /* Grey border */
  backdrop-filter: blur(6px);
  z-index: 1;
}

.ai-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  /* added font properties */
  color: #fff;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px; /* 114.286% */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px; /* Adjusted to fit inside larger inner circle */
  height: 180px;
  padding: 0 8px;
  box-sizing: border-box;
}

.ai-card .service-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.ai-card .service-description {
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.9;
}

/* ABM/Digital - Center bottom */
.abm-digital {
  width: 475px;
  height: 352px;
  left: 254px;
  top: 608px;
  z-index: 1;
  position: absolute;
  background: linear-gradient(0deg, #2c2c2c -4.97%, #000 63.85%);
  overflow: hidden;

  /* ✅ new fix */
  overflow: hidden; /* keep glow inside */
  text-align: left;
}

/* Glow effect */
.abm-digital::after {
  content: "";
  position: absolute;
  bottom: 0; /* align with bottom of icon */
  right: 0; /* align with right of icon */
  width: 350px; /* focused glow size */
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 100% 100%,
    /* bottom right of the pseudo-element */ rgba(255, 180, 0, 0.7) 0%,
    /* bright near the icon corner */ rgba(255, 140, 0, 0.3) 40%,
    rgba(0, 0, 0, 0) 80%
  );
  filter: blur(20px); /* soft glow edges */
  opacity: 0; /* hidden initially */
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  pointer-events: none;
  z-index: 1;
  transform: translate(
    30%,
    30%
  ); /* shifts glow slightly for natural emission */
}

/* Show glow on hover */
.abm-digital:hover::after {
  opacity: 1;
  transform: translate(30%, 30%) scale(1.2); /* subtle expansion for effect */
}

.abm-digital .service-title {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;

  width: 184px;
  height: 40px;
  margin-top: 162px;
}

.abm-digital .service-description {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #fff;

  width: 306px;
  height: 72px;
  margin-top: 8px;
}

.abm-icon {
  position: absolute;
  right: 34px;
  top: 192px;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  border: 2px solid #ffbc4b;
  background: linear-gradient(180deg, #222 0%, #141414 100%);
  box-shadow: 0 7px 12px 0 #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Advisory - Bottom right */
.advisory {
  position: absolute;
  width: 229px;
  height: 352px;
  left: 754px;
  top: 608px;
  background: linear-gradient(0deg, #2c2c2c -4.97%, #000 74.61%);
  border-radius: 20px;
  padding: 16px;
  box-sizing: border-box;
  color: #fff;
  overflow: hidden;
  text-align: left;
}

/* soft local glow just around the icons */
.advisory-gear::after {
  content: "";
  position: absolute;
  bottom: 0; /* align with icon bottom */
  right: 0; /* align with icon right */
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(242, 105, 37, 0.4) 0%,
    rgba(242, 105, 37, 0.2) 40%,
    rgba(0, 0, 0, 0) 80%
  );
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 1;
  pointer-events: none;
  transform: translate(50%, 50%);
}

/* Show glow on card hover */
.advisory:hover .advisory-gear::after {
  opacity: 1;
  transform: translate(50%, 50%) scale(1.1);
}

.advisory .service-title {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.advisory .service-description {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.advisory-graphics {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: auto;
  height: auto;
}

.advisory-gear {
  position: relative; /* ensures absolute positioning works */
  width: 150px; /* adjust as needed */
  height: 170px; /* adjust as needed */
}

/* First SVG (colored triangular shape) */
.advisory-gear svg:nth-child(1) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: auto;
  z-index: 3; /* top-most */
}

/* Second SVG (gear-like grey circle shape) */
.advisory-gear svg:nth-child(2) {
  position: absolute;
  bottom: -10px; /* adjust overlap */
  right: -15px;
  width: 110px;
  height: auto;
  z-index: 2;
}

/* Add transition to second SVG path for smooth color change */
.advisory-gear svg:nth-child(2) path {
  transition: fill 0.5s ease-in-out;
  fill: #888888; /* default color (grey) */
}

/* On hovering the whole card, change second SVG path to white */
.advisory:hover .advisory-gear svg:nth-child(2) path {
  fill: #ffffff;
}

/* Third SVG (small compass/needle icon) */
.advisory-gear svg:nth-child(3) {
  position: absolute;
  bottom: 40px; /* adjust to center on second SVG */
  right: 145px;
  width: 25px;
  height: auto;
  z-index: 4; /* above both */
}

/* Third SVG (small compass/needle icon) */
.advisory-gear svg:nth-child(4) {
  position: absolute;
  top: -40px;
  right: 0px;
  width: 15px;
  height: auto;
  z-index: 4; /* above both */
}
/* - */
.advisory-gear svg:nth-child(5) {
  position: absolute;
  bottom: 52px;
  right: 120px;
  width: 15px;
  height: auto;
  z-index: 4; /* above both */
}

/* N- */
.advisory-gear svg:nth-child(6) {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 18px;
  height: 25px;
  z-index: 4;
}

/* Campaign Orchestration - Bottom left */
.campaign-orchestration {
  position: absolute;
  width: 229px;
  height: 587px;
  left: 0px;
  top: 608px;
  overflow: hidden;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 20px; /* space from bottom */
}

.campaign-orchestration .card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* lighten overlay so video pops */
.campaign-orchestration::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.65) 0%,
    /* softer black at bottom */ rgba(0, 0, 0, 0.25) 40%,
    /* more transparent in middle */ rgba(0, 0, 0, 0) 80% /* clear at top */
  );
  border-radius: 20px;
  z-index: 1;
}

.campaign-orchestration .service-title,
.campaign-orchestration .service-description {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
}

/* heading */
.campaign-orchestration .service-title {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: auto;
}

/* description */
.campaign-orchestration .service-description {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

/* Cloud Apps - Bottom center */
.cloud-apps {
  position: absolute;
  width: 729px;
  height: 216px;
  left: 254px;
  top: 978px;
  overflow: hidden;
  border-radius: 20px;
}

.cloud-apps .card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the whole card */
  z-index: 0;
}

.cloud-apps::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(40, 40, 40, 0.28) 0%, #000 100%);
  border-radius: 20px;
  z-index: 1;
}

.cloud-apps .text-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: flex-start; /* left align */
  height: 100%;
  padding: 0 40px 0 400px; /* push content so it starts near the mid */
  text-align: left;
  color: #fff;
}

/* heading */
.cloud-apps .service-title {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  color: #fff;
}

/* description */
.cloud-apps .service-description {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
}

.ai-card {
  z-index: 3;
}

.service-card {
  transform: none !important; /* prevent any movement */
  box-shadow: none !important; /* remove hover shadow */
}

.service-card:hover {
  transform: none !important; /* disable hover pop */
  box-shadow: none !important; /* disable hover shadow */
}

/* section 5 */
.section5 {
  background-color: rgb(0, 0, 0);
  margin: auto;
}

.section5-main-div {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0px;
}

.section5-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 110px;
  left: 0;
  z-index: 0;
}

.section5-container {
  position: relative;
  z-index: 1;
  width: 85%;
  /* max-width: 1300px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.table-page-heading {
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 64px;
}

.highlight-table-heading {
  background: linear-gradient(90deg, #ffbc4b 0%, #f26925 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section5-tables {
  display: flex;
  justify-content: center;
  gap: 20rem;
  width: 100%;
  flex-wrap: wrap;
}

.left-table img {
  width: 140px;
  margin-bottom: 1.5rem;
  margin-top: -25px;
}

.left-table-list,
.right-table-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  border: 1px solid #fff;
}

.left-table-list li {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.left-table-list li strong {
  color: #ffbc4b;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.right-table h2 {
  color: #ababab;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1.5rem;
}

.right-table-list tr {
  color: #c0c0c0;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

/* LEFT LIST (ul > li) alternate bg + border-radius */
.left-table-list li:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1rem;
}

.left-table-list li:nth-child(even) {
  background-color: rgba(13, 13, 13, 0.7);
  padding: 0.5rem 1rem;
}

/* Rounded corners for first & last li */
.left-table-list li:first-child {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 0.5rem;
}

.left-table-list li:last-child {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 0.5rem;
}

/* RIGHT TABLE (table > tr) alternate bg + padding */
.right-table-list tr:nth-child(odd) td {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.9rem 1rem;
}

.right-table-list tr:nth-child(even) td {
  background-color: rgba(13, 13, 13, 0.7);
  padding: 0.9rem 1rem;
}

/* Rounded corners for first & last tr */
.right-table-list tr:first-child td {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.right-table-list tr:last-child td {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* section 6 */
.section6 {
  position: relative;
  text-align: center;
  overflow: hidden;
  background-image: url("../newAssets/Component152.png");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center calc(100% - 380px);
}

/* add a pseudo-element for hover background */
.section6::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../newAssets/component152.svg");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center calc(100% - 180px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none; /* don’t block interactions */
  z-index: -1;
}

.section6.hovered::after {
  opacity: 1;
}

.section6-container {
  max-width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem 0rem;
}

/* Header */
.section6-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

.section6-header-icon-wrap {
  display: grid;
  place-items: center;
}

.section6-header-icon {
  width: 80px;
  height: 80px;
}

.section6-header-text {
  color: #000;
  text-align: center;
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Content */
.section6-content {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
}

.section6-content-text {
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  align-items: start;
  padding-top: 1rem;
  text-align: start;
}

.section6-content-text > p {
  padding-bottom: 1rem;
  color: #000;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

/* custom orange bullets */
.section6-content-text ul {
  padding: 0;
  margin: 0;
  display: grid;
}

.section6-content-text li::marker {
  color: #e39f2d;
}

.li-title {
  color: #e39f2d;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
}

.li-desc {
  color: #000;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 48px;
}

/* Right dashboard card */
.section6-content-image {
  position: relative;
  box-shadow: none; /* Ensure no shadow is applied */
}

.section6-content-image .screen {
  position: relative;
}

.section6-content-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease-in-out; /* Added smooth transition */
  box-shadow: none; /* Ensure no shadow is applied */
}

/* Place the hover image above the default one */
.section6-content-image .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out; /* Added smooth transition */
  box-shadow: none; /* Ensure no shadow is applied */
}

/* Fade in hover image when hovering over container */
.section6-content-image:hover .img-hover {
  opacity: 1;
  box-shadow: none; /* Remove any shadow during hover */
}

/* Footer pill */
.section6-footer {
  padding-top: 2rem;
  display: flex;
  margin: 0 auto;
}

.section6-footer-text {
  color: #000;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 16px 20px;
  border-radius: 40px;
  border: 3px solid #ffbc4b;

  background: #fff;
}

.accent {
  background: linear-gradient(90deg, #ffbc4b 12.02%, #f26925 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* section 7 */
.trusted-brands-section {
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;
}

.trusted-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.highlight-line {
  height: 2px;
  width: 80vw;
  background: linear-gradient(to right, black 0%, #ffbc4b 50%, black 100%);
  border-radius: 2px;
}

.trusted-text h2 {
  color: #ffbc4b;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.trusted-text p {
  font-size: 18px;
  font-weight: 300;
  max-width: 65vw;
  color: #fff;
  text-align: center;
  font-style: normal;
  line-height: normal;
}

.trusted-logos {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 80vw;
  background: white;
  display: flex;
  align-items: center;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  align-items: center;
  padding: 0 50px;
  gap: 60px;
}

.logo-track img {
  padding: 34px 0px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(0%);
}

.trusted-logos::before,
.trusted-logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trusted-logos::before {
  left: 0;
  background: linear-gradient(to right, black 0%, transparent 100%);
}

.trusted-logos::after {
  right: 0;
  background: linear-gradient(to left, black 0%, transparent 100%);
}

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

/* section 8 */
.section8 {
  width: 100%;
  padding: 5rem 0rem 3rem 0rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  background-image: url("../newAssets/Component152.png");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center calc(100% - 180px);
}

.section8::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../newAssets/component152.svg");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center calc(100% - 230px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: -1;
}

.section8.hovered::after {
  opacity: 1;
}

.timeline-background {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  z-index: 1;
}

.section8-container {
  width: 80%;
  margin: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.section8-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.section8-header-content {
  display: flex;
  align-items: center;
}

.section8-header img {
  width: 80px;
  height: 80px;
}

.section8-header h1 {
  color: #000;

  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section8-header p {
  color: #000;

  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.timeline-items {
  position: relative;
  width: 100%;
  height: 300px;
}

.timeline-item {
  position: absolute;
  width: 220px;
  min-height: 140px; /* ✅ ensures same height for all boxes */
  padding: 1rem;
  background: #fff;
  border-top: 3px solid #f26925;
  border-radius: 10px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  text-align: left; /* ✅ left align text */
  display: flex; /* ✅ allow vertical alignment control */
  flex-direction: column;
  justify-content: flex-start;
}

.timeline-item h2 {
  font-size: 18px;
  color: #f26925;
  margin-bottom: 10px;
  text-align: left; /* ✅ title also left aligned */
}

.timeline-item p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  text-align: left; /* ✅ paragraph also left aligned */
}

/* Adjusted card positions (since background is now 100% width) */
.item-1 {
  top: -7.5rem; /* moves upward relative to font size */
  left: -5%; /* start near the left edge */
}

.item-2 {
  top: 6rem; /* moves downward */
  left: 18%; /* position slightly right */
}

.item-3 {
  top: -7.5rem; /* aligned with item-1 vertically */
  left: 43%; /* centered-ish */
}

.item-4 {
  top: 6rem; /* aligned with item-2 vertically */
  left: 70%; /* far right */
}

.item-5 {
  top: -7.5rem; /* aligned with first row */
  left: 90%; /* near right edge */
}

/* section 9 */
.section9 {
  width: 100%;
  padding: 5rem;
  display: flex;
  justify-content: center;
}

/* Card */
.section9-container {
  position: relative;
  width: min(100%, 1336px);
  border-radius: 15px;
  overflow: hidden;
  isolation: isolate;
}

.section9-container > img[alt="background-img"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Content row */
.section9-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  padding: 5rem 4rem;
}

.section9-title {
  color: #fff;
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section9-highlight {
  background: linear-gradient(90deg, #ffbc4b 0%, #f16824 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA row */
.section9-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section9-button {
  color: #fff;
  text-align: center;
  font-family: Outfit;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 49px;
  background: linear-gradient(90deg, #ffbc4b 0%, #f16824 100%);
}

.arrow-icon {
  color: #ff7f32; /* initial fill color */
  opacity: 0.38;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.section9-cta:hover .arrow-icon {
  color: #ff7f32; /* brighter orange on hover */
  opacity: 1;
  transform: translateX(1px);
}

/* Footer */
.footer-section {
  position: relative;
  /* background: black; */
  color: #e5c17c;
  padding: 6rem;
  overflow: hidden;
  background-image: url("../newAssets/Flow 1.gif");
  background-size: cover;
  background-position: center;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 80vw;
  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-top img.logo {
  height: 30px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons img {
  height: 20px;
  cursor: pointer;
}

.footer-line-seperator {
  border-bottom: 1px solid rgba(229, 193, 124, 0.3);
  margin: 0.5rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-bottom-left p {
  color: #fff;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-bottom-right {
  display: flex;
  gap: 1rem;
}

.footer-bottom-right p {
  color: #98a2b3;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
