@font-face {
  font-family: "Tungsten-Medium";
  src: url("../fonts/Tungsten-Medium (2).ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "MYRIADPRO-REGULAR";
  src: url("../fonts/MYRIADPRO-REGULAR.OTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary-color: #ffffff;
  --secondary-color: #963596;
  --third-color: #dadada;
  --fourth-color: #3f3f3f;
  --fifth-color: #382261;
  --primary-font: "Tungsten-Medium", sans-serif;
  --secondary-font: "MYRIADPRO-REGULAR", sans-serif;
  --text-color: #333;
}
body {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--primary-font);
  color: var(--text-color);
  background: var(--primary-color);
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 84px;
  line-height: 100%;
  font-weight: 500;
}
h2 {
  font-size: 48px;
  line-height: 100%;
  font-weight: 500;
}
h4 {
  font-size: 36px;
  line-height: 100%;
  font-weight: 500;
}
hr {
  border: none;
  height: 3px;
  background: rgba(218, 218, 218, 0.35);
}

span {
  color: var(--secondary-color);
  font-size: 29px;
}
/* === BASE BUTTON === */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-size: 18px;
  font-family: var(--secondary-font);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  gap: 10px;
  line-height: 100%;
  font-weight: 400;
  height: 55px;
}
.btn-transparent {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  font-family: var(--secondary-font);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  gap: 10px;
  line-height: 100%;
  font-weight: 400;
  background-color: transparent;
  color: hsla(261, 48%, 26%, 1);
}
/* === BUTTON VARIANTS === */
.btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn-secondary {
  background: var(--fifth-color);
  color: var(--primary-color);
}

.btn-accent {
  background: var(--secondary-color);
  color: var(--primary-color);
}
.btn-border {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid white;
  height: 55px;
}

.btn-light {
  background: #e6dbe6;
  color: var(--fifth-color);
}

.btn-outline {
  background: var(--primary-color);
  color: var(--fifth-color);
  border: 1px solid var(--secondary-color);
}

.btn-ghost {
  background: var(--primary-color);
  color: #000000;
}

.btn-muted {
  background: #dadada59;
  color: hsla(0, 0%, 25%, 1);
  font-weight: 400;
}
.btn-outlineblack {
  background-color: white;
  color: rgba(63, 63, 63, 1);
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-size: 18px;
  font-family: var(--secondary-font);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  gap: 10px;
  line-height: 100%;
  font-weight: 400;
  height: 55px;
}
.btn-outlineblack img {
  height: 0.7rem;
}
.btn img {
  vertical-align: middle;
  height: 1em;
}

.btn img:last-child {
  margin-left: 0.5em;
}
/* ..........................................navbar...................................................... */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 2rem;
  background: rgba(243, 243, 245, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(190 190 190 / 30%);
  z-index: 1000;
}

.navbar.scrolled {
  /* background: #ffffff; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Left & right halves still the same */
.navbar-left,
.navbar-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 3vw;
}
.primary-button {
  display: flex;
  gap: 3vw;
}
/* Menu & buttons same as before */
.menu-items {
  display: flex;
  gap: 3vw;
  list-style: none;
  font-size: 18px;
  font-family: "MYRIADPRO-REGULAR";
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-weight: 400;
}

.navbar-buttons {
  display: flex;
  gap: 20px;
}

.menu-items li {
  position: relative;
  padding: 10px 0;
}
.menu-items a {
  text-decoration: none;
  color: rgba(63, 63, 63, 1);
}
.menu-item-with-sub {
  position: relative;
  font-weight: 400;
}

.menu-item-with-sub.active {
  /* font- weight: bold; */
}

.menu-dot {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: rgba(150, 53, 150, 1);
  border-radius: 50%;
  margin-top: 5px;
  display: block;
}
.submenu {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(150, 53, 150, 1); /* Purple background */
  padding: 1rem;
  border-radius: 10px;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 10px;
  min-width: 175px;
  color: #fff;
  z-index: 999;
  text-align: left;
}

.menu-item-with-sub:hover .submenu {
  display: flex;
}

.submenu li a {
  font-family: "MYRIADPRO-REGULAR";
  color: white;
}

.submenu li.active {
  font-weight: bold;
}

/* .........................................demo form................................................... */
.book-demo-container-section{
  margin: 7vh 0vw;
}
.demo-form {
  background-image: url("../Images/demobackgroundimage.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book-demo-section {
  z-index: 99;
  position: relative;
}
.book-demo-section h1 {
  text-align: center;
  margin: 40px 0 0 0;
  color: #963596;
}
.book-demo-section p {
  text-align: center;
  margin: 15px 0 0 0;
  color: black;
  font-size: 18px;
  font-family: "MYRIADPRO-REGULAR";
}
.book-demo-contact-form {
  height: 487px;
  border-radius: 20px;
  margin: 40px;
  border-left: 1px solid var(--secondary-color);
}
.book-demo-contact-form-container {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--secondary-color);
}
.book-demo-details {
  width: 50%;
  height: 100%;
}
.book-demo-details h4 {
  margin: 0;
  padding: 50px;
}
.book-demo-form {
  width: 50%;
  height: 100%;
  background: rgba(208, 181, 213, 0.4); /* Use same color with lower opacity */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.book-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.book-detail-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 400;
  font-family: "MYRIADPRO-REGULAR";
}
.book-detail-list li img {
  display: block;
  height: 1em;
}
.book-demo-form form {
  display: flex;
  flex-direction: column;
  gap: 33px;
  padding: 50px;
}

.book-demo-form input {
  width: 100%;
  height: 7vh;
  border-radius: 20px;
  background: #fff;
  padding: 12px 20px;
  font-size: 16px;
  color: #000;
  box-sizing: border-box;
  border: 1px solid black;
}
.book-demo-form input:nth-of-type(3) {
  height: 14vh;
}

.book-demo-form input::placeholder {
  color: #aaa;
}

.book-demo-form h4 {
  margin-bottom: 10px;
  color: #000;
  margin: 0px;
}
.book-demo-form .btn {
  align-self: flex-start;
}

/* ..............................................hero section home page .......................... */
.video-content-section {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 100vh;
}

.video-container {
  width: 50%;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .................................................................................... */
/* Right side: scrollable content */
.content-container {
  width: 50%;
  padding: 8vh 0vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8vh;
}

.content-block {
  max-width: 90%;
}

.content-block h2 {
  font-size: 86px;
  margin-bottom: 1rem;
  font-weight: 500;
  color: rgba(92, 92, 92, 1);
  letter-spacing: 1px;
}

.content-block h3 {
  font-family: "MYRIADPRO-REGULAR";
  font-size: 48px;
  font-weight: 400;
  color: rgba(150, 53, 150, 1);
  line-height: 53.33px;
}

.content-block p {
  font-family: "MYRIADPRO-REGULAR";
  font-size: 18px;
  font-weight: 400;
  color: rgba(63, 63, 63, 1);
}
/* .................................................................................................. */

.values-section {
  position: relative;
  width: 34vw;
}

.section-title {
  display: inline-block;
  margin-bottom: 30px;
  padding: 6px 12px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  border-radius: 15px;
  background: #f3f3f3;
}

.values-list {
  position: relative;
  padding-left: 30px;
}

.values-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #eee;
}

.value-item {
  position: relative;
  font-size: 29.33px;
  font-weight: 400;
  color: rgba(56, 34, 97, 1);
  margin: 4vh 0vw;
  cursor: pointer;
  font-family: "MYRIADPRO-REGULAR";
}

.value-desc {
  font-size: 32px;
  color: #666;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  max-height: 0;
  overflow: hidden;
  position: relative;
  font-family: "MYRIADPRO-REGULAR";
}

.sidebar-indicator {
  position: absolute;
  left: 0;
  width: 3px;
  height: 16vh;
  background: #8a2be2;
  border-radius: 3px;
  transition: top 0.4s ease;
}

.value-item.active {
  color: rgba(150, 53, 150, 1);
}

.value-item.active .value-desc {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 2vh;
}
/* ........................................................................................... */
.accordian-container {
  margin-top: 35vh;
  max-width: 81%;
}

.accordian-title-container h2 {
  font-size: 64px;
  margin: 3vh 0;
  color: rgba(92, 92, 92, 1);
}

/* .accordian-title-container p {
  font-size: 18px;
  margin: 3vh 0;
  color: rgba(92, 92, 92, 1);
  font-family: "MYRIADPRO-REGULAR";
} */

.accordian-item {
  border-top: 1px solid #ddd;
  padding: 15px 0;
}

.accordian-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  color: rgba(92, 92, 92, 1);
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: "MYRIADPRO-REGULAR";
}

.accordian-icon {
  font-size: 1.7rem;
  transition: transform 0.3s ease;
}

.accordian-content {
  max-height: 0;
  overflow: hidden;
  font-size: 18px;
  color: rgba(92, 92, 92, 0.9);
  line-height: 1.5;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  padding-top: 5px;
  font-family: "MYRIADPRO-REGULAR";
}

.accordian-item.active .accordian-content {
  max-height: 100%;
  opacity: 1;
  max-width: 82%;
  font-size: 24px;
}

.accordian-item.active .accordian-icon {
  content: "-";
}

.accordian-header:hover {
  color: rgba(150, 53, 150, 1);
}
/* ......................................................................................... */
/* ==== Question Section Wrapper ==== */

.question-carousel,
.first-carousel,
.carousel-image img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
}

.question-carousel {
  cursor: grab;
}
.question-carousel.dragging {
  cursor: grabbing;
}

.question-section {
  width: 98vw;
  height: auto;
  padding: 10vh;
}

.questions {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 3vh;
}

.questions p {
  font-size: 84px;
  margin: 0px;
  font-weight: 500;
}

.question-carousel {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  width: 100%;
  height: 484px;
}

.first-carousel {
  position: relative;
  display: flex;
  width: 50%;
  height: 100%;

  background-color: hsla(0, 0%, 85%, 0.35);
  border-radius: 25px;
  border-bottom: 2px solid #963596;
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: unset;
  opacity: 0.85;
}

.carousel-content {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  padding: 0vh 0vw 5vh 4vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.carousel-content h3 {
  font-size: 64px;
  font-weight: 500;
  margin: 0;
  color: #3a2f5a;
}

.carousel-content p {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.85);
  margin: 0;
}

.carousel-content .btn {
  width: fit-content;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.question-carousel {
  display: flex;
  gap: 2vw;
  transition: transform 0.5s ease-in-out;
}

.first-carousel {
  flex: 0 0 calc(50% - 1vw);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 3vh;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: #d5b4e7;
  transition: all 0.3s ease;
  border-radius: 2px;
  cursor: pointer;
}

.carousel-dots .dot.active {
  width: 30px;
  height: 10px;
  background: #963596;
  border-radius: 50px;
}
/* .......................................................................... */

.empower {
  width: 98vw;
  padding: 10vh 5.3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.empower-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5vw;
  width: 100%;
}

.empower-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.empower-content h1 {
  font-size: 84px;
  font-weight: 500;
  color: #3a2f5a;
  margin: 0;
}

.empower-content p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  max-width: 500px;
  line-height: 1.5;
}
.empower-content span {
  font-size: 84px;
}
.btn-outline {
  width: fit-content;
  height: 55.33px;
}

.empower-image {
  flex: 1;
  text-align: right;
}

.empower-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
}
/* ............................................................................................... */
.case-studies {
  width: 98vw;
  padding: 10vh 5.3vw;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}
.case-study-heading h1 {
  margin: 3vh 0vw;
  font-size: 84px;
  color: hsla(0, 0%, 25%, 1);
}
.case-study-container {
  height: 357px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1vw;
}
.case-study-box {
  display: flex;
  flex-direction: column;
  gap: 1vh;
  width: 40%;
  height: 100%;
}

.case-study-boxes {
  height: 142.67px;
  width: 80%;
  border-left: 4px solid rgba(150, 53, 150, 1);
  border-radius: 20px;
  background: linear-gradient(to right, #f5f5f5 0%, #ffffff 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.case-study-boxes p {
  margin: 0;
  font-size: 29.33px;
  width: 50%;
}
.case-study-boxes img {
  height: 20.8px;
  width: 16px;
}
/* ....................................................................... */

.case-study-box-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #f5f5f5;
  border-radius: 20px;
  border-left: 4px solid rgba(150, 53, 150, 1);
  width: 60%;
  min-height: 300px;
  padding: 40px;
  box-sizing: border-box;
  overflow: visible;
  z-index: 1;
}

.case-study-content {
  max-width: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  position: relative;
}
.case-study-content h2 {
  font-size: 86px;
  margin: 0px;
}
.case-study-content p {
  font-size: 24px;
  margin: 0px;
}

.case-study-img {
  position: absolute;
  right: 0px;
  top: -59px;
  max-height: 116%;
  z-index: 3;
  pointer-events: none;
}
.btn-light {
  width: fit-content;
}
/* ........................................................................................................ */
.technology-banner {
  width: 100%;
  height: 80vh;
  background: url("Images/tech\ banner.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8vw;
  box-sizing: border-box;
  color: #fff;
  position: relative;
  top: 5vh;
}

.technology-banner-container {
  max-width: 100%;
}

.technology-banner-container h1 {
  font-size: 146.67px;
  color: rgba(63, 63, 63, 1);
  margin: 0;
}

.technology-banner-container h1 span {
  font-size: 146.67px;
  display: block;
  color: var(--secondary-color);
}
/* ......................................................................................... */
.Introduction-section {
  width: 100%;
  padding: 10vh 5.3vw;
}
.introduction-component {
  padding: 0vh 0vw 0vh 10vw;
  border-left: 2px solid rgba(150, 53, 150, 1);
}
.introduction-component p {
  font-size: 30px;
  width: 95%;
  font-family: "MYRIADPRO-REGULAR";
}
/* ................................................................................................ */
.platform-section {
  width: 100%;
  padding: 10vh 5.3vw;
}
.platform-container {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  width: 100%;
}
.platform-container-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}
.platform-container-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}
.platform-container-right h1 {
  margin: 0px;
}
.platform-container-right p {
  font-size: 24px;
  font-family: "MYRIADPRO-REGULAR";
}
.platform-container-boxes {
  height: 142.67px;
  width: 80%;
  border-left: 4px solid rgba(150, 53, 150, 1);
  border-radius: 20px;
  background-color: rgba(218, 218, 218, 0.35);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.platform-container-boxes p {
  margin: 0;
  font-size: 29.33px;
  width: 50%;
}
.platform-container-boxes img {
  height: 20.8px;
  width: 16px;
}
/* ............................................................................................. */
.quote-section {
  margin: 2vh 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  background-color: rgba(218, 218, 218, 0.35);
}
.quote-heading {
  display: flex;
  flex-direction: row;
  gap: 3vw;
  align-items: center;
  padding: 0vh 5.3vw;
}
.quote-heading h1 {
  width: 100%;
}
.quote-heading p {
  width: 100%;
  font-size: 24px;
  font-family: "MYRIADPRO-REGULAR";
}
.quote-carousel-container {
  padding: 5vh 5.3vw;
}
.quote-carousel {
  background-color: white;
  width: 100%;
  padding: 12vh 3vw;
  border-radius: 20px;
  background-image: url("Images/quotex.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.quote-carousel-quote {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  width: 100%;
  text-align: left;
}

.quote-carousel-quote h2 {
  width: 64%;
  font-size: 64px;
  color: rgba(150, 53, 150, 1);
  line-height: 110%;
  margin: 0 2vw;
  text-align: left;
}

.quote-carousel-quote img {
  height: 64px;
}

.quote-close {
  align-self: flex-end;
}

.quote-carousel p {
  color: rgba(56, 34, 97, 1);
  font-size: 24px;
  margin-left: 5vw;
}
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
}

.quote-carousel {
  min-width: 100%;
  box-sizing: border-box;
}
.quote-carousel-dots {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  margin-top: 3vh;
}

.quote-carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: #d5b4e7;
  transition: all 0.3s ease;
  border-radius: 2px;
  cursor: pointer;
}

.quote-carousel-dots .dot.active {
  width: 30px;
  height: 10px;
  background: #963596;
  border-radius: 50px;
}
.quote-footer {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  margin-top: 2vh;
}
.footer-cta {
  display: flex;
  gap: 2vw;
}
/* ...................................................................... */
.technolgy-accordian-section {
  margin: 0;
  width: 100%;
}
.technolgy-accordian {
  display: flex;
  flex-direction: row;
  gap: 2vw;
}
.technolgy-accordian-content {
  padding: 2vh 6vw 0vh 0vw;
}
.technolgy-accordian-content h1 {
  margin: 0px;
}
.technolgy-accordian-content h2 {
  margin: 0px;
  font-size: 48px;
  color: rgba(150, 53, 150, 1);
  padding: 3vh 0vw;
}
.technolgy-accordian-content p {
  font-size: 24px;
  font-family: "MYRIADPRO-REGULAR";
  color: rgba(63, 63, 63, 1);
  width: 75%;
}
.technolgy-accordian-wrapper {
  margin-top: 2vh;
  border-top: 1px solid rgba(218, 218, 218, 0.35);
}

.technolgy-accordian-item {
  border-bottom: 1px solid rgba(41, 39, 39, 0.35);
}

.technolgy-accordian-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5vh 0;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: rgba(56, 34, 97, 1);
  font-weight: 500;
  height: 9vh;
}
.technolgy-accordian-header span {
  font-size: 30px;
  font-family: "MYRIADPRO-REGULAR";
  color: rgba(63, 63, 63, 1);
}
.technolgy-accordian-icon {
  font-size: 24px;
  color: rgba(150, 53, 150, 1);
  transition: transform 0.3s ease;
}
.technolgy-accordian-header span:first-child {
  color: rgba(56, 34, 97, 1);
  transition: color 0.3s ease;
}

.technolgy-accordian-item.active .technolgy-accordian-header span:first-child {
  color: rgba(150, 53, 150, 1);
}

.technolgy-accordian-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.technolgy-accordian-item.active .technolgy-accordian-body {
  max-height: 200px;
  opacity: 1;
}
/* ................................................................................................ */
.scalable-section {
  margin: 5vh 5.3vw;
}
.scalable {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1vw;
}
.scalable-content {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  width: 50%;
}
.scalable-content h1 {
  font-size: 86px;
  margin: 0;
  color: rgba(63, 63, 63, 1);
}
.scalable-content p {
  font-size: 24px;
  margin: 0;
  color: rgba(63, 63, 63, 1);
  font-family: "MYRIADPRO-REGULAR";
  width: 70%;
}
.scalable-metrix {
  display: flex;
  flex-direction: row;
  gap: 3vw;
}
.metrix-item h1 {
  margin: 0;
  font-size: 128px;
  color: rgba(150, 53, 150, 1);
}
.metrix-item p {
  margin: 0;
  font-family: "MYRIADPRO-REGULAR";
  font-size: 24px;
  width: 80%;
}
/* .......................................................................................... */
.Compliance-section {
  margin: 5vh 5.3vh 0vh 5.3vh;
}
.Compliance {
  background-color: rgba(150, 53, 150, 1);
  padding: 5vh;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  gap: 1vw;
}
.compliance-content {
  width: 50%;
}
.compliance-content h1 {
  margin: 0;
  color: white;
  width: 80%;
}
.compliance-content p {
  color: white;
  width: 80%;
  font-family: "MYRIADPRO-REGULAR";
  font-size: 24px;
}
.compliance-items {
  width: 50%;
  border-left: 1px solid white;
}
.compliance-items li img {
  margin-right: 2vw;
  vertical-align: middle;
}

.compliance-items ul li {
  font-size: 29px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 2vh;
  font-family: "MYRIADPRO-REGULAR";
  font-weight: 400;
}
/* ........................................................................................``` */
.pitch-section {
  margin: 0vh 5.3vw;
}
.pitch {
  background: url("Images/pitchimage.png") no-repeat right center;
  background-size: contain;
  height: 43vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2vw;
}
.pitch h1 {
  margin: 0;
  color: rgba(150, 53, 150, 1);
}
/* .............................................................................................. */
.footer {
  margin: 10vh 5.3vw;
}

/* Footer Links Layout */
.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  font-family: "MYRIADPRO-REGULAR";
}

.footer-logo {
  width: 14vw;
  height: 5vh;
}
.footer-logo img {
  width: 100%; /* increase size */
  height: auto;
}
.footer-column {
  padding: 2vh;
}
/* Column Titles */
.footer-column h4 {
  font-size: 29px;
  font-weight: bold;
  margin: 0 0 3vh 0;
}

/* Normal footer lists */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 2vh;
}

.footer-column ul li a {
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s ease;
  color: rgba(126, 126, 126, 1);
}

.footer-column ul li a:hover {
  color: rgba(150, 53, 150, 1);
}

/* Solutions Two-Column Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px 50px; /* row gap and column gap */
}

/* Bottom row */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  color: #666;
  font-family: "MYRIADPRO-REGULAR";
}

.footer-bottom a {
  text-decoration: none;
  color: #666;
  transition: color 0.3s ease;
}

/* ................................................................................................ */
.solution-banner {
  width: 100%;
  height: 80vh;
  background: url("Images/solutionbanner.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8vw;
  box-sizing: border-box;
  color: #fff;
  position: relative;
  top: 5vh;
}

.solution-banner-container {
  max-width: 100%;
}

.solution-banner-container h1 {
  font-size: 80px;
  color: rgba(63, 63, 63, 1);
  margin: 0;
}

.solution-banner-container h1 span {
  font-size: 80px;
  display: block;
  color: var(--secondary-color);
}
.solution-banner-container p {
  font-size: 22px;
  color: rgba(63, 63, 63, 1);
  font-family: "MYRIADPRO-REGULAR";
  width: 48%;
  margin: 2vh 0;
}
/* ......................................................................................................... */
.solution-accordian-section {
  margin: 5vh 5.3vh;
}
.solution-accordian {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 2vw;
}

/* ........................................................................................................ */
.Capabilities-banner {
  width: 100%;
  height: 80vh;
  background: url("Images/Capabilities.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8vw;
  box-sizing: border-box;
  color: #fff;
  position: relative;
  top: 5vh;
}

.Capabilities-banner-container {
  max-width: 100%;
}

.Capabilities-banner-container h1 {
  font-size: 80px;
  color: rgba(63, 63, 63, 1);
  margin: 0;
}

.Capabilities-banner-container h1 span {
  font-size: 80px;
  display: block;
  color: var(--secondary-color);
}
.Capabilities-banner-container p {
  font-size: 22px;
  color: rgba(63, 63, 63, 1);
  font-family: "MYRIADPRO-REGULAR";
  width: 48%;
  margin: 2vh 0;
}
/* ............................................................................................. */
.capabilitie-content-section {
  margin: 2vh 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}
.capabilitie-content-heading {
  display: flex;
  flex-direction: row;
  gap: 3vw;
  align-items: center;
  padding: 7vh 5.3vw;
}
.capabilitie-content-heading h1 {
  width: 100%;
}
.capabilitie-content-heading p {
  width: 100%;
  font-size: 24px;
  font-family: "MYRIADPRO-REGULAR";
}
/* ..................................................................................... */
.capabilities-carousel {
  margin: 0 5.3vw;
}
.capabilities-question-carousel,
.capabilities-first-carousel,
.capabilities-carousel-image img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
}

.capabilities-questions {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 3vh;
}

.capabilities-questions p {
  font-size: 84px;
  margin: 0px;
  font-weight: 500;
}

.capabilities-question-carousel {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  width: 100%;
  height: 484px;
}

.capabilities-first-carousel {
  position: relative;
  display: flex;
  width: 50%;
  height: 100%;
  background-color: hsla(0, 0%, 85%, 0.35);
  border-radius: 25px;
  border-bottom: 3px solid #963596;
  overflow: hidden;
  min-height: 567px;
}

.capabilities-carousel-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.capabilities-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: unset;
  opacity: 0.85;
}

.capabilities-carousel-content {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  padding: 0vh 0vw 5vh 4vw;

  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 2rem;
}

.capabilities-carousel-content h3 {
  font-size: 64px;
  font-weight: 500;
  margin: 0;
  color: rgba(150, 53, 150, 1);
}

.capabilities-carousel-content p {
  font-size: 29.33px;
  color: rgba(63, 63, 63, 1);
  margin: 0;
  font-family: "MYRIADPRO-REGULAR";
}

.capabilities-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.capabilities-question-carousel {
  display: flex;
  gap: 2vw;
  transition: transform 0.5s ease-in-out;
}

.capabilities-first-carousel {
  flex: 0 0 calc(33.333% - 1vw);
}

.capabilities-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 15vh 0;
}

.capabilities-carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: #d5b4e7;
  transition: all 0.3s ease;
  border-radius: 2px;
  cursor: pointer;
}

.capabilities-carousel-dots .dot.active {
  width: 30px;
  height: 10px;
  background: #963596;
  border-radius: 50px;
}
/* ............................................................................................. */

.platform-banner {
  width: 100%;
  height: 80vh;
  background: url("Images/platformbanner.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8vw;
  box-sizing: border-box;
  color: #fff;
  position: relative;
  top: 5vh;
}

.platform-banner-container {
  max-width: 100%;
}

.platform-banner-container h1 {
  font-size: 80px;
  color: rgba(63, 63, 63, 1);
  margin: 0;
}

.platform-banner-container h1 span {
  font-size: 80px;
  display: block;
  color: var(--secondary-color);
}
.platform-banner-container p {
  font-size: 22px;
  color: rgba(63, 63, 63, 1);
  font-family: "MYRIADPRO-REGULAR";
  width: 48%;
  margin: 2vh 0;
}
.platform-hero-section {
  margin: 10vh 5.3vw 0vh 5.3vw;
}
.platform-hero {
  display: flex;
  flex-direction: row;
  gap: 2vw;
}
.platform-image {
  width: 50%;
  display: flex;
  justify-content: space-between;
  gap: 2vw;
}
.platform-image img {
  width: 50%;
  border-radius: 20px;
}

.platform-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.platform-content p {
  font-family: "MYRIADPRO-REGULAR";
  font-size: 24px;
  color: rgba(63, 63, 63, 1);
}
.platform-content span {
  font-family: "MYRIADPRO-REGULAR";
  font-size: 24px;
  color: rgba(150, 53, 150, 1);
}
/* ....................................................................................................... */

.platform-content-section {
  margin: 2vh 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}
.platform-content-heading {
  display: flex;
  flex-direction: row;
  gap: 3vw;
  align-items: center;
  padding: 7vh 5.3vw;
}
.platform-content-heading h1 {
  width: 100%;
}
.platform-content-heading p {
  width: 100%;
  font-size: 24px;
  font-family: "MYRIADPRO-REGULAR";
}
/* ..................................................................................................... */
.Powers-helix-section {
  margin: 2vh 5.3vw;
}

.power-helix {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  width: 100%;
}

/* Common styles for both boxes */
.powers-helix-left,
.powers-helix-right {
  background-color: rgba(150, 53, 150, 1); /* Purple overlay */
  border-radius: 20px;
  width: 50%;
  padding: 2vh;
  position: relative;

  /* ✅ Add background image aligned center-right */
  background-image: url("Images/platformvector.png");
  background-repeat: no-repeat;
  background-position: center right 0px;
}

.powers-helix-left h2,
.powers-helix-right h2 {
  font-size: 64px;
  color: white;
  margin: 1vh 0 2vh 2vw;
}

.powers-helix-left p,
.powers-helix-right p {
  font-size: 24px;
  color: white;
  font-family: "MYRIADPRO-REGULAR";
  margin: 1vh 0 2vh 2vw;
  width: 50%;
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .power-helix {
    flex-direction: column;
  }
  .powers-helix-left,
  .powers-helix-right {
    width: 100%;
    background-position: center bottom; /* move image below text */
    background-size: 150px auto;
  }
  .powers-helix-left p,
  .powers-helix-right p {
    width: 80%;
  }
}
/* ........................................................................................................ */
.platform-slider {
  background-color: rgba(218, 218, 218, 0.35);
  padding: 85px 0;
}
.platform-header-section {
  margin: 2vh 5.3vw;
  display: flex;
  flex-direction: row;
  gap: 2vw;
  align-items: center;
  text-align: left;
  padding: 2vh;
}
.platform-header-section h1 {
  margin: 8vh 0 0 0;
  width: 50%;
}
.platform-header-section p {
  margin: 8vh 0 0 0;
  width: 50%;
  font-family: "MYRIADPRO-REGULAR";
  font-size: 24px;
}
.platform-footer-section {
  margin: 10vh 5.3vw 5vh 5.3vw;
  /* height: 850px; */
  background-color: white;
  border-radius: 20px;
  border-bottom: 3px solid var(--secondary-color);
}
.platform-footer-slider {
  padding: 32px;
  display: flex;
  flex-direction: row;
  gap: 2vw;
  align-items: end;
}
.platform-footer-content {
  width: 50%;
}
.platform-footer-content h2 {
  font-size: 64px;
  color: #963596;
}
.platform-footer-content p {
  font-size: 24px;
  color: rgba(63, 63, 63, 1);
  margin: 0px;
  font-family: "MYRIADPRO-REGULAR";
}
.platform-footer-image {
  width: 50%;
}
.platform-footer-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.platform-footer-box-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  padding: 32px;
}
.platform-footer-box p {
  font-family: "MYRIADPRO-REGULAR";
  font-size: 30px;
  width: 60%;
}
.platform-footer-box {
  border-bottom: 2px solid var(--secondary-color);
  border-radius: 20px;
  padding: 2vh;
}
.slider-cta {
  padding: 30px;
}
/* Container for tabs */
.platform-slider-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 3vw;
  position: relative;
  /* padding: 10px 5.3vw; */
  border-bottom: 3px solid #ddd;
}

/* Individual tab text */
.platform-slider-tabs .tab {
  font-family: "MYRIADPRO-REGULAR";
  font-size: 30px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  padding: 15px 0;
  position: relative;
  transition: color 0.3s ease;
}

/* Active tab text color */
.platform-slider-tabs .tab.active {
  color: #963596; /* purple */
}
.slider-carosal-platform {
  padding: 32px;
}
/* Purple underline for active tab */
.platform-slider-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 5px;
  background: #963596;
}
.slider-inner {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
/* ................................................................................................... */
.capabilities-filter {
  min-height: 1400px;
  background-color: rgba(218, 218, 218, 0.35);
  padding: 2vh;
}
.capabilities-filter-heading {
  margin: 0 4.2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
}
.capabilities-filter-heading h1 {
  width: 50%;
}
.capabilities-filter-heading p {
  font-size: 24px;
  font-family: "MYRIADPRO-REGULAR";
  color: rgba(63, 63, 63, 1);
  width: 50%;
}
.capabilities-filter-content {
  margin: 0 4.2vw;
  display: flex;
  justify-content: space-between;
  gap: 2vw;
  height: 900px;
}
.capabilities-filter-input {
  width: 15%;
}
.capabilities-filter-input h2 {
  color: rgba(150, 53, 150, 1);
  margin: 0;
}

.capabilities-filter-box-container {
  width: 85%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1vw;
}
.capabilities-filter-box {
  width: 472.89px;
  height: 300px;
  background-color: white;
  border-radius: 20px;
  padding: 5vh 0vw 2vh 1vw;
}
.capabilities-filter-box h2 {
  color: #963596;
}

.capabilities-filter-by {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}
.filter-title {
  display: flex;
  justify-content: space-between; /* text on left, icon on right */
  align-items: center; /* vertical centering */
  border-bottom: 2px solid #963596;
  padding-bottom: 5px;
  font-size: 24px;
  color: #333;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 2vh 0;
  font-size: 19px;
  font-family: "MYRIADPRO-REGULAR";
  border-bottom: 1px solid gray;
}

.filter-option input {
  display: none;
}
.filter-option input {
  border: 2px solid rgba(184, 184, 184, 1);
}
/* Custom checkbox box */
.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(184, 184, 184, 1); /* default border */
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
}

/* Active (checked) state styling */
.filter-option input:checked + .custom-checkbox {
  background-color: #963596;
  border: 2px solid gray;
}

/* Tick mark centered inside */
.filter-option input:checked + .custom-checkbox::after {
  content: "✔";
  font-size: 12px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
