/* ==================== Import Fonts ==================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* ====================== ROOT ============================= */
:root {
  --primary-color: #FFBC00;
  --gradient: linear-gradient(90deg, #FFBC00 0%, #FFC931 100%);
  --hover-gradient: linear-gradient(90deg, #FFC931 0%, #FFBC00 100%);
  --white: #ffffff;
  --border: 1px solid rgb(0, 0, 0, .1);
  --light-grey: #f8f8f8;
  --black: #000000;
  --border-radius: 12px;
  --transition: all 0.3s ease-in-out;
  --dec-color: #1E3A8A;
  --font-poppins: "Poppins", sans-serif;
  --font-outfit: "Outfit", sans-serif;
  --font-rubik: "Rubik", sans-serif;
}

/* ==================== RESET ==================== */

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

html {
  scroll-behavior: smooth;
}

html.lenis {
  scroll-behavior: auto !important;
}

html.lenis body {
  height: auto;
}

body {
  width: 100%;
  background-color: var(--white);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: var(--black);
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-position: center;
  object-fit: contain;

}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  font-size: inherit;
  transition: var(--transition);
  display: inline-block;
}

button,
input,
textarea {
  border: none;
  outline: none;
  resize: none;
  background: transparent;
}

.form-control:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
}

/* ==================== Common Layout ==================== */

.wrapper {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow-x: clip;
}

.common-sec {
  padding-block: 120px 120px;
}

.container {
  max-width: 1440px;
  padding: 0;
  margin: 0 auto;
}

.container-fluid {
  max-width: 1720px;
  padding: 0;
  margin: 0 auto;
}

/* ==================== Icons ==================== */

.icon {
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: var(--transition);
}

.icon.vector-arrow {
  mask-image: url(../img/svg/chervicon-down.svg);
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  width: 10px;
  height: 6px;
}

/* ==================== Utility ==================== */

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}


p:last-child {
  margin-bottom: 0;
}

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

.bg-fit {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pop,
.smooth {
  transition: var(--transition);
}

.pop:hover {
  transform: scale(1.05);
}

/* ==================== Typography ==================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-outfit);
  line-height: 1.13;
}

p {
  opacity: .7;
}

/* ==================== Common Heading Classes ==================== */

.hero-title {
  font-size: 72px;
  font-weight: 500;
  margin-bottom: 20px;
}




.sec-head:has(p) {
  margin-bottom: 50px;
}

.sec-head p {
  font-size: 18px;
  font-weight: 400;
}

.sec-head:not(:has(p)) {
  margin-bottom: 0px;
}

.sec-head:not(:has(p)) .sec-title {
  margin-bottom: 50px;
}

.sec-head.center {
  text-align: center;
}

.sec-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 15px;
}

.sub-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color, --service-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sub-title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/svg/gem-star.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* =======================BTN========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 17px 24px;
  line-height: 1;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
  user-select: none;
  transition: var(--transition);
}


.btn-primary {
  background: var(--gradient);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(30deg);
  animation: shimmer 4s infinite;
}

.btn-black {
  background: var(--black);
  color: var(--white);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-black::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.btn-black:hover {
  color: var(--black);
}

.btn-black:hover::before {
  opacity: 1;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  20%,
  100% {
    left: 150%;
  }
}

.btn-primary:hover {
  background: var(--hover-gradient);
  color: var(--black);
  box-shadow: 0 8px 25px rgba(255, 188, 0, 0.3);
}

/* back to top icon */

.arrowTop-icon {
  mask-image: url(../img/svg/arrow-up.svg);
}

.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(201, 163, 98, 0.3);
  z-index: 1000;
  overflow: hidden;
}

.arrowTop-icon {
  color: var(--white);
  font-size: 30px;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--secondary-color);
  box-shadow: 0 6px 20px rgba(201, 163, 98, 0.4);
}

.back-to-top-btn:active {
  transform: translateY(0);
}

.back-to-top-btn:hover .icon {
  animation: arrowSlideUp 0.6s ease-in-out;
}

@keyframes arrowSlideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-30px);
    opacity: 0;
  }

  51% {
    transform: translateY(30px);
    opacity: 0;
  }

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



/* ====================  header style ==================== */
.header {
  position: relative;
}

.header .container {
  background-color: var(--white);
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
}

.header.absolute .container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1440px;
  width: 100%;
  z-index: 999;
}

.sticky-header .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(-100%);
  animation: slideDown 0.8s ease forwards;
}

.sticky-header .header .container {
  top: 10px;
  border: 1px solid rgb(0, 0, 0, .2);
  box-shadow: rgb(0, 0, 0, .2) 0px 2px 0px 0px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* ============================ header Style ==========================*/
.logo-wrapper {
  height: 28px;
  width: auto;
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header nav ul li {
  position: relative;
  display: inline-block;
  margin-right: 20px;

}

.header nav ul li:last-child {
  margin-right: 0;
}

.header nav ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: var(--black);
  text-decoration: none;
  transition: var(--transition);
}

.header nav ul li a:hover {
  font-weight: 500;
  color: var(--primary-color);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ===================== HERO SECTION ================== */
.first_page {
  padding-top: 200px !important;
  padding-bottom: 100px !important;
}

.hero-content.center {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 24px;
  background-color: var(--white);
  border-radius: 50px;
  border: 1px solid #00000033;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 40px;
  transition: var(--transition);
}

.hero-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hero-badge:hover img {
  transform: rotate(90deg);
}

.hero-desc {
  font-size: 18px;
  color: var(--black);
  max-width: 960px;
  margin: 0 auto 41px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.btn-secondary {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-secondary:hover {
  background-color: var(--black);
  color: var(--white);
}




/* ===================== Floating Elements ================== */
.hero-sec .container {
  position: relative;
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.floating-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  transition: transform 0.2s ease-out;
}

.f-badge {
  padding: 3px 16px;
  border: 1px solid var(--dec-color);
  border-radius: 100px;
  background-color: #1E3A8A0A;
  font-size: 16px;
  font-weight: 500;
  color: var(--dec-color);
  text-transform: capitalize;
}

.f-arrow {
  width: 27px;
  height: 31px;
}

.shopify-partner {
  top: -20px;
  left: 42px;
}

.shopify-partner .f-arrow {
  transform: rotate(0deg) translate(20px, 30px);
  position: absolute;
  right: 0;
}

.woo-expert {
  top: -21px;
  right: 45px;
}

.woo-expert .f-arrow {
  transform: scaleX(-1) rotate(0deg) translate(18px, 30px);
  position: absolute;
  left: 0;
}

.clutch-badge {
  bottom: -11%;
  right: 12.8%;
  flex-direction: column-reverse;
}

.clutch-badge .f-arrow {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(-1) rotate(-1deg) translate(15px, 27px);
}




/* ===================== LOGOS SECTION ================== */
.logos-sec {
  position: relative;
  padding: 50px 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: #1E3A8A1A;
  z-index: 1;
  /* overflow: visible; is default, allowing glows to bleed out */
}

.logos-sec::before,
.logos-sec::after {
  content: "";
  position: absolute;
  top: -100%;
  height: 898px;
  width: 868px;
  background-color: #EAB308;
  filter: blur(575px);
  opacity: .1;
  z-index: -1;
  pointer-events: none;
}

.logos-sec::before {
  left: -450px;

}

.logos-sec::after {
  right: -450px;

}

.logos-title {
  font-size: 32px;
  margin-bottom: 50px;
}


.logos-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
  display: flex;
  gap: 65px;
  animation: logo-scroll 40s linear infinite;
  white-space: nowrap;
}

.logo-item {
  flex: 0 0 auto;
}

.logo-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

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

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

/* ===================== PLATFORM GUIDE SECTION ================== */
.platform-guide {
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.platform-guide::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 188, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.platform-guide .sec-title {
  color: var(--black);
  margin-top: 10px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.platform-guide .sec-head p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.platform-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1.5px solid #f0f0f0;
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.platform-card:hover {
  border-color: #e8e8e8;
  background: linear-gradient(135deg, #ffffff 0%, #fcfcfc 100%);
}

/* Shopify Specific (Theme Yellow) */
.shopify-card {
  border: 1.5px solid #ffe8b3;
  background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.shopify-card:hover {
  border-color: #ffd580;
}

.shopify-icon {
  background-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(255, 188, 0, 0.25);
}

.shopify-card .platform-features li::before {
  background-color: var(--primary-color);
}

/* WooCommerce Specific (Theme Blue) */
.woo-card {
  border: 1.5px solid #e8d9ff;
  background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
}

.woo-card:hover {
  border-color: #e8d9ff;
}

.woo-icon {
  background: linear-gradient(135deg, #873EFF 0%, #7B34E0 100%);
  color: white;
}

.woo-card .platform-features li::before {
  background-color: #873EFF;
}

/* Components */
.platform-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: linear-gradient(135deg, #FFBC00 0%, #FFC931 100%);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(255, 188, 0, 0.35);
}

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

.platform-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}



.shopify-icon {
  color: var(--black);
}

/* Yellow background needs dark icon */

.brand-info .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
  letter-spacing: -0.3px;
}

.brand-info p {
  font-size: 13px;
  margin: 0;
  color: #888;
  font-weight: 500;
}

.platform-pricing {
  text-align: right;
}

.platform-pricing .price {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.5px;
}

.platform-pricing .price small {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  display: inline;
  margin-left: 4px;
}

.platform-pricing .price-info {
  font-size: 12px;
  color: #aaa;
  display: block;
  margin-top: 6px;
  font-weight: 500;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1.5px solid #f5f5f5;
  padding-top: 32px;
}

.platform-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.platform-features li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-image: url("../img/svg/check.svg");
  mask-image: url("../img/svg/check.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}



.platform-features li+li {
  border-top: none;
  padding-top: 0;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

/*  */

.problems-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.problem-card,
.common-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background-color: var(--light-grey);
  border-radius: 14px;
  border: 1px solid #0000001A;
  transition: var(--transition);
  overflow: hidden;
}


.problem-card::before,
.common-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 10%, rgba(255, 188, 0, 0.15), transparent 40%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.problem-card .problem-card__img img,
.common-card .common-card__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 20px;
  transition: var(--transition);
}


.common-card__icon {
  height: 60px;
  width: 60px;
  background-color: var(--white);
  border-radius: 50%;
  padding: 16px;
  border: 1px solid #0000001A;
  margin-bottom: 20px;
  /* Added spacing */
}

.problem-card__top,
.common-card__top {
  display: block;
}

.problem-card__content,
.common-card__content {
  display: block;
}


.common-card__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.problem-card:hover,
.common-card:hover {
  transform: translateY(0);
  border-color: rgba(255, 188, 0, 0.4);
}

.problem-card:hover::before,
.common-card:hover::before {
  opacity: 1;
}

.problems-cta-wrap {

  text-align: center;
}

.mt-50 {
  margin-top: 50px;
}

.problem-card__title {
  font-size: 22px;
}

.problem-card__icon {
  margin-bottom: 20px;
}

/* ==================== Who Should Choose Section ==================== */



.choose-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--light-grey);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius);
  padding: 28px 30px;
  transition: var(--transition);
  height: 100%;
}

.choose-card:hover {
  border-color: rgba(255, 188, 0, 0.3);
  box-shadow: 0 4px 20px rgba(255, 188, 0, 0.08);
}

.choose-card__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.choose-card__icon img {
  width: 26px;
  height: 26px;
}

.choose-card__content {
  flex: 1;
}

.choose-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.choose-card__title {
  font-family: var(--font-outfit);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.choose-card__content p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.choose-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.shopify-badge {
  background: rgba(0, 128, 96, 0.1);
  color: #008060;
  border: 1px solid rgba(0, 128, 96, 0.25);
}

.woo-badge {
  background: rgba(126, 93, 152, 0.1);
  color: #7e5d98;
  border: 1px solid rgba(126, 93, 152, 0.25);
}

.scale-badge {
  background: rgba(255, 188, 0, 0.12);
  color: #b38600;
  border: 1px solid rgba(255, 188, 0, 0.3);
}

/* ==================== Footer Section ==================== */

.footer {
  background-color: var(--light-grey);
}

/* Top Footer (CTA) */
.top-footer {
  position: relative;
  background-color: var(--white);
  z-index: 1;
}

.top-footer .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.top-footer::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  background-color: var(--light-grey);
  z-index: -1;
  bottom: 0;
  left: 0;
  border-top: 1px solid #00000014;
}

.top-foot-wrap {
  background-color: var(--black);
  border-radius: 100px;
  padding: 29px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.top-foot-wrap .top_foot_title {
  color: var(--white);
  font-family: var(--font-outfit);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: capitalize;

}

.top-foot-wrap p {
  color: var(--white);
  opacity: 0.7;
  margin-bottom: 0;
}

/* Main Footer */
.main-footer {
  padding: 60px 0 20px;
}

.foot-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.foot-col {
  flex: 1;
  position: relative;
}

/* Vertical Dividers using ::before */
.foot-col::before {
  content: "";
  position: absolute;
  right: -1%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #0000001a;
}

.foot-logo {
  height: 32px;
  margin-bottom: 25px;
}

.foot-col p {
  margin-bottom: 28px;
  color: var(--black);
}

/* Social Icons */
.social-icon ul {
  display: flex;
  gap: 12px;
}

.social-icon li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #0000001a;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  transition: var(--transition);
}

.social-icon li a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.social-icon .icon {
  width: 16px;
  height: 16px;
  background-color: var(--black);
}

.in_icon {
  mask-image: url(../img/svg/in.svg);
}

.tw_icon {
  mask-image: url(../img/svg/tw.svg);
}

.fb_icon {
  mask-image: url(../img/svg/fb.svg);
}

/* Footer Title Style */
.footer-title {
  font-family: var(--font-outfit);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  text-transform: capitalize;
  margin-bottom: 12px;
  color: var(--black);
  letter-spacing: 0.03em;
}

.foot-col ul {
  gap: 0;
}

.foot-col ul li {
  margin-bottom: 10px;
}

.foot-col ul li:last-child {
  margin-bottom: 0;
}

footer .social-icon ul li {
  margin-bottom: 0;
  margin-right: 12px;
}

footer .social-icon ul li a {
  height: 30px;
  width: 30px;
  font-size: 14px;
  color: var(--black);
}

.foot-col ul li a {
  color: var(--black);
  opacity: 0.7;
  transition: var(--transition);
}

.foot-col ul li a:hover {

  opacity: 1;
  color: var(--primary-color);
}

/* Contact Details */
.foot-contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.foot-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-contact-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.foot-contact-item p {
  margin-bottom: 0;
  opacity: 0.7;
}

.foot-contact-item a {
  color: inherit;
}

/* Bottom Footer */
.bottom-footer .container {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #0000001a;
}

.bottom-foot-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.bottom-foot-wrap p {
  margin-bottom: 0;
  opacity: 0.7;
}

.bottom-foot-wrap a {
  color: inherit;
  transition: var(--transition);
}

.bottom-foot-wrap a:hover {
  color: var(--primary-color);
}

/* ===================== Comparison Section ================== */
.comparison-sec .sec-head p {
  max-width: 837px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

/* Base cell styling */
.comparison-table th,
.comparison-table td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 30px;
  text-align: left;
  /* default */
  vertical-align: middle;
}

/* Center all columns except first */

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
}

/* Header */
.comparison-table thead th {
  background-color: var(--light-grey);
  font-family: var(--font-outfit);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--black);
}

/* Body */
.comparison-table tbody tr {
  transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
  background-color: rgba(255, 188, 0, 0.05);
}

.comparison-table tbody td {

  font-weight: 400;
  font-size: 18px;
  padding: 11px 30px;
  color: var(--black);
}

/* REMOVE flex from comp-data */
.comp-data {
  display: block;
}

/* Stars */
.stars {
  display: flex;
  gap: 9px;
}

.stars img {
  width: 18px;
  height: 18px;
}

/* Star Rating Logic */
.stars[data-rating="1"] img:nth-child(n+2) {
  display: none;
}

.stars[data-rating="2"] img:nth-child(n+3) {
  display: none;
}

.stars[data-rating="3"] img:nth-child(n+4) {
  display: none;
}

.stars[data-rating="4"] img:nth-child(n+5) {
  display: none;
}

.stars[data-rating="5"] img:nth-child(n+6) {
  display: none;
}

/* Align last column (WooCommerce) to the right */
.comparison-table th:last-child,
.comparison-table td:last-child {
  text-align: right;

}

.comparison-table th:last-child .comp-data,
.comparison-table td:last-child .comp-data {
  min-width: 150px;
}



/* Column widths */
.comparison-table th:nth-child(1) {
  width: 30%;
}

.comparison-table th:nth-child(2) {
  width: 35%;
}

.comparison-table th:nth-child(3) {
  width: 35%;
}

.column-1 .foot-logo-side {
  max-width: 300px;
}

.column-2 .center-align {
  padding-right: 50px;
}

.column-2::before {
  right: 16%;
}

.column-2 {
  display: flex;
  justify-content: center;
}

.contact-foot-detail {
  padding-left: 20px;
}

.foot-col:last-child:before {
  display: none;
}

.cards-wrap {
  display: flex;
  gap: 20px;
}

.one-team-sec .common-card__title {
  font-size: 38px;
}

.one-team-sec .common-card p {
  word-break: break-word;
}

.one-team-sec .common-card {
  border-radius: 20px;
  padding: 40px 19px 40px 30px;
}

.one-team-sec .right-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;

}

.one-team-sec .sec-head {
  margin-bottom: 36px;
}

.one-team-sec .sec-head p {
  max-width: 630px;
}

.comp-data {
  display: inline-block;
  min-width: 126px;
  text-align: left;
}

/* Services Marquee Section */


.services-marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 22px;
}

.side-shade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 26%;
  z-index: 10;
  pointer-events: none;
}

.left-shade {
  left: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 7.22%, #FFFFFF 40.23%);
}

.right-shade {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 7.22%, #FFFFFF 40.23%);
}

.marquee-row {
  display: flex;
  margin-bottom: 24px;
  overflow: hidden;
}

.marquee-row:last-child {
  margin-bottom: 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.upper-row .marquee-track {
  animation: scroll-left 40s linear infinite;
}

.bottom-row .marquee-track {
  animation: scroll-right 40s linear infinite;
}

.service-card {
  background-color: var(--white);
  width: 342px;
  flex-shrink: 0;
  padding-right: 16px;
}

.service-card .common-card__title {
  font-size: 22px;

}

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

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

@keyframes scroll-right {
  0% {
    transform: translateX(calc(-50% - 15px));
  }

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

/* Pause on hover */
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}


/* Process Section */
.process-sec .sec-head p {
  max-width: 781px;
  margin: 0 auto;
  line-height: 1.4;
}

.process-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* Connecting Dashed Line */
.process-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 30px;
  /* Center of the icon */
  right: calc(50% + 50px);
  width: calc(100% - 60px);
  height: 1px;
  background-image: linear-gradient(to right, var(--primary-color) 60%, transparent 40%);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  z-index: -1;
  animation: marchingAnts 0.8s linear infinite;
}

@keyframes marchingAnts {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 12px 0;
  }
}

@keyframes marchingAntsVertical {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 12px;
  }
}

.process-item {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  max-width: 260px;
}

.process-icon-wrap {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.process-icon {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0000001A;
  transition: var(--transition);
  position: relative;
}

.process-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  animation: ripple 2s infinite;
  opacity: 0;
  z-index: -1;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.process-item:hover .process-icon {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.process-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.process-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--black);
}

.process-content p {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 10px;
}






/* Industries Section */
.industries-grid {
  display: flex;
  width: 100%;
  height: 350px;
  gap: 2px;
  overflow: hidden;
}

.industry-item {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--transition);
}


.industry-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 67.09%, #000000 100%);
  z-index: 1;
}

/* Gold Gradient Hover Overlay */
.industry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 188, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-item:hover::after {
  opacity: 1;
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 23px 15px;
  z-index: 2;
  transition: var(--transition);
}

.industry-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.industry-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.industry-name {
  font-family: var(--font-poppins);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  white-space: nowrap;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.4s ease;
}

.industries-sec .sec-head p {
  max-width: 800px;
  margin: 0 auto;
}

/* Hover Effects */


.industry-item:hover .industry-overlay {
  padding-bottom: 40px;
}







/* Enhanced Results Styling */
.results-slider {
  margin: 0;
  /* padding-bottom: 20px; */
  padding-left: 16px;
}

.result-item.swiper-slide {
  height: auto;
  padding: 0;
  /* Swiper handles spacing via spaceBetween */
}

.result-img {
  border-radius: 24px;
  /* Matching the 'Hug' rounded corners */
  position: relative;
  overflow: hidden;
  aspect-ratio: 10 / 11;
}

.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.result-item:hover .result-img img {
  transform: scale(1.05);
}

.result-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;

  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  line-height: 1;
}

.result-info {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.result-cat,
.result-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  opacity: .4;
  display: block;
  margin-bottom: 6px;
}

.result-name,
.result-stat {
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  margin: 0;
}

.result-right {
  text-align: right;
}

.result-stat {

  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
  display: block;
}

.result-label {
  margin: 0;
  margin-top: 4px;
  display: block;
}

/* Stats Section */
.stats-grid {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 23px 20px;
  background: var(--white);
  border: 1px solid #0000001A;
  border-radius: 16px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-family: var(--font-outfit);
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  text-align: center;

}

.stat-label {

  text-transform: uppercase;
  margin: 0;
}





/* Pricing Section */


.mb-30 {
  margin-bottom: 30px;
}


.pricing-card {
  height: 100%;
  background-color: var(--white);
  border: 3px solid #000000;
  box-shadow: 0px 6px 0px 0px #000000;
  border-radius: 25px;
  padding: 31px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 0px 0px #000000;
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.pricing-badge {
  background-color: var(--black);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 100px;
  font-weight: 500;
  text-transform: capitalize;
}

.most-popular {
  font-size: 12px;
  font-weight: 700;
  color: var(--dec-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-price {
  font-family: var(--font-outfit);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 38px;
  display: flex;
  align-items: baseline;
}

.pricing-price .month {

  font-weight: 400;
  font-size: 20px;
  color: var(--black);

  margin-left: 5px;
}

.pricing-including {

  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 14px;
}

.pricing-features {
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-features li {

  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--black);
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("../img/svg/check-tik.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

section {
  position: relative;
  z-index: 1;
}

section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/doted.png);
  background-size: auto;
  background-repeat: repeat;
  z-index: -1;
  opacity: 55%;
}

/* ==================== Why Ecomthinker Section ==================== */
.why-ecom-sec .sec-head p {
  max-width: 580px;
  word-spacing: -.02em;
  line-height: 1.4;
}

.why-ecom-sec .sec-head {
  margin-bottom: 0px !important;
}

.why-ecom-sec .left-side img {
  margin-top: 28px;
  border-radius: 30px;
}

.why-ecom-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.why-ecom-list li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.why-ecom-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 30px;
  color: var(--black);
  font-family: var(--font-outfit);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.why-ecom-list li a:hover {
  color: var(--primary-color);
}

.why-ecom-list li a .icon-wrap img {
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.why-ecom-list li a:hover .icon-wrap img {
  transform: rotate(90deg);
}

.why-ecom-list .icon-wrap {
  flex-shrink: 0;
}

/* ==================== Testimonial Section ==================== */
.testimonial-sec {
  background-color: var(--light-grey);
  padding-top: 100px;
  padding-bottom: 110px;
}


.testimonial-left .sec-title {
  margin-bottom: 25px;
}

.testimonial-left p {
  max-width: 605px;
  margin-bottom: 40px;
}

.testimonial-nav {
  display: flex;
  gap: 15px;
}

.testi-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.testi-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.testi-btn img {
  width: 18px;
}

.testimonial-card {
  padding: 10px;
}

.quote-icon {
  margin-bottom: 30px;
}

.quote-icon img {
  opacity: .2;
  width: 70px;
}

.testimonial-text {
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 38px;
  opacity: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 22px;
  margin-bottom: 9px;
  font-weight: 400;
}

.testimonial-slider {
  padding-left: 60px;
}

.testimonial-author .stars {
  gap: 5px;
}

.testimonial-author .stars img {
  height: 14px;
  width: 14px;
}

/* globe presence */
.globe-map-wraper {
  position: relative;
  width: 100%;
  max-width: 1143px;
  margin: 0 auto;
}

.globe-map-wraper img {
  width: 100%;
  height: auto;
  display: block;
}

.location-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.location-marker .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.place {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 4px 8px 0px #00000040;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--white);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.location-marker.active .place,
.location-marker:hover .place {
  opacity: 1;
  visibility: visible;
  bottom: 35px;
}

.place::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--white);
  box-shadow: 0px 4px 8px 0px #00000040;
  z-index: -1;
}

/* Map Coordinates based on standard world map projection */
.loc-dubai {
  top: 42%;
  left: 59%;
}

.loc-california {
  top: 38.4%;
  left: 20.5%;
}

.loc-london {
  top: 29%;
  left: 50%;
}

.loc-india {
  top: 45%;
  left: 65.5%;
}

.loc-australia {
  top: 74%;
  left: 86.5%;
}

/* ==================== Insights Section ==================== */
/* .insights-sec .sec-head {
  margin-bottom: 50px;
} */

.blog-card {
  transition: var(--transition);
}

.blog-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

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

.blog-content {
  display: flex;
  flex-direction: column;
  max-width: 420px;
}

.blog-meta {
  font-family: var(--font-rubik);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;

}

.blog-meta span {
  opacity: 0.6;
}

.blog-meta img {
  width: 24px;
}

.blog-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-title a {
  color: var(--black);
  text-decoration: none;
  transition: var(--transition);
}

.blog-title a:hover {
  color: var(--primary-color);
}

.read-more {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--black);
}

/* ==================== Digital Success Section ==================== */
.digital-success-sec .sec-head {
  max-width: 1135px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.digital-success-sec .sec-head p {
  font-size: 16px;
}

.digital-img-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 714px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.digital-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(8, 3, 0, 0) 0%, #000000 70%);
  z-index: 2;
  opacity: .9;
}

.digital-cards-row {
  position: relative;
  z-index: 3;
  padding: 0 0px 50px;
}

.digital-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 33px;
  height: 100%;
}

.digital-card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.digital-card-head .img {
  height: 26px;
  width: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.digital-card-head .title {

  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.digital-card p {
  color: var(--white);
  margin: 0;
  max-width: 355px;
}

/*  =========================  Mobile Hamburger Menu  ========================= */

.hamburger {
  cursor: pointer;
}



.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  margin: -15px 0;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: var(--black);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

body.nav-open .hamburger svg {
  transform: rotate(-45deg);
}

body.nav-open .hamburger svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* ==================== Right Platform Section ==================== */
.right-platform-sec {
  border-radius: 30px;
  max-width: calc(100% - 60px);
  margin: 0 auto;
  background-color: var(--light-grey);
}

.right-platform-sec .left-side {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 100px;
}

.right-platform-sec .right-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.right-platform-sec .common-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px 40px;
  border-radius: 20px;
  border: 1px solid #0000001A;
  background: var(--white);
  justify-content: flex-start;
}

.right-platform-sec .common-card::before {
  display: none;
}

.right-platform-sec .common-card_left {
  max-width: 246px;
  width: 100%;
}

.right-platform-sec .common-card_left img {
  height: 50px;
  width: auto;
}

.right-platform-sec .common-card__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--black);
}

.right-platform-sec .cms-con ul li+li {
  margin-top: 6px;
}

/* Logo Watermark */
.logofade-wrapper {
  margin-top: 30px;
}

.logo-fade img {
  opacity: 0.08;
  mix-blend-mode: luminosity;
  height: 68px;
  pointer-events: none;
  user-select: none;
}