html, body{
  color: #111;
  font-size: 18px;
  /* line-height: 33px; */
}

#navbarTogglerDemo02 .navbar-nav{
  margin-left: auto !important;
}

.fraunces-verylight {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
}
.fraunces-light {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
}
.fraunces-normal {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
}
.fraunces-medium {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
}
.fraunces-bold {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
}
.fraunces-bolder {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
}
.fraunces-bolderer {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
}

/* HERO SECTION */

.hero-section {
  padding: 50px 0;
  padding-bottom: 80px;
  /* background: #f7f8fc; */
  overflow: hidden;
  position: relative;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: #eef2ff;
  color: #5b34ea;
  /* font-size: 15px; */
  font-weight: 600;
  margin-bottom: 30px;
  /* border: 1px solid #dfe4ff; */
  /* background: linear-gradient(
    90deg,
    rgba(243, 236, 253, 0.5) 0%,
    rgba(242, 215, 236, 0.5) 48.56%,
    rgba(196, 228, 255, 0.5) 100%
  ); */
  background: #7C7BFF26;


}

.hero-badge span {
  /* background: linear-gradient(90deg, #2301ff 0%, #990136 100%);

  
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent; */
  color: #4C57FE;
  
}

.hero-left h1 {
  font-size: 50px;
  /* line-height: 65px; */
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 28px;
  letter-spacing: -1.8px;
}

/* PURPLE HIGHLIGHT WORD */
.hero-left h1 .highlight {
  /* background: radial-gradient(50% 50% at 50% 50%, #ed00ff 0%, #890ad7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.hero-left p {
  /* font-size: 18px;
  line-height: 1.9; */
  /* color: #475569; */
  max-width: 540px;
  margin-bottom: 42px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-demo {
  /* background: linear-gradient(90deg, #f97eff 0%, #8e43cf 100%); */
  background: linear-gradient(90deg, #3243FE 0%, #8A86FF 100%);

  color: #fff;
  padding: 18px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.22);
  transition: 0.35s ease;
}

.btn-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(124, 58, 237, 0.28);
  color: #fff;
}

.btn-suite {
  background: #fff;
  color: #111827;
  padding: 18px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #cbd5e1;
  transition: 0.35s ease;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.btn-suite:hover {
  transform: translateY(-3px);
  border-color: #94a3b8;
  color: #111;
}

/* RIGHT SIDE */

.hero-right {
  position: relative;
  /* height: 700px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-hero-wrapper {
  width: 100%;
  max-width: 720px;
  position: relative;
}

/* ===================================
   SVG SWITCHER
=================================== */

.hero-svg-slider {
  position: relative;
  width: 100%;
  min-height: 520px;
}

/* BOTH SVG SAME PLACE */

.hero-svg {
  position: absolute;
  inset: 0;

  width: 100%;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 2s ease,
    visibility 2s ease;

  pointer-events: none;
}

/* ACTIVE SVG */

.hero-svg.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-svg svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-svg.hero-svg-2 {
  top: -4px;
}

/* =========================
   FLOATING CARDS
========================= */

.hero-svg g[filter] {
  /* animation: floatCard 5s ease-in-out infinite; */
  transform-origin: center;
}

.hero-svg g[filter]:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-svg g[filter]:nth-child(3) {
  animation-delay: 1s;
}

.hero-svg g[filter]:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================
   DASHED LINE FLOW
========================= */

.hero-svg path[stroke="#0C2BF8"] {
  stroke-dasharray: 8;
  animation: dashMove 25s linear infinite;
}

/* REVERSE ONLY THIS PATH */
.hero-svg path[d="M173.1 295H283.1"] {
  animation: dashMoveReverse 25s linear infinite;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -1000;
  }
}

@keyframes dashMoveReverse {
  to {
    stroke-dashoffset: 1000;
  }
}

/* =========================
   CENTER LOGO PULSE
========================= */

.hero-svg rect[x="280.1"][y="175.1"] {
  animation: pulseCenter 3s infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes pulseCenter {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

/* =========================
   BACKGROUND RINGS
========================= */

.hero-svg ellipse,
.hero-svg circle {
  transform-origin: center;
  transform-box: fill-box;
}

.hero-svg ellipse {
  animation: rotateSlow 30s linear infinite;
}

.hero-svg circle:nth-of-type(1) {
  animation: rotateReverse 45s linear infinite;
}

.hero-svg circle:nth-of-type(2) {
  animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/* =========================
   HOVER EFFECT
========================= */

.hero-svg g[filter] {
  transition: 0.4s;
  cursor: pointer;
}

.hero-svg g[filter]:hover {
  /* transform: translateY(-10px) scale(1.04); */
  scale: calc(1.05);
}

/* TOP LABEL FLOAT */
.hero-svg g[filter="url(#filterTag)"] {
  animation: floatTag 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes floatTag {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .hero-right {
    margin-top: 60px;
    height: auto;
  }

  .svg-hero-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-right {
    /* display: none; */
  }
}

/* MOBILE */

@media (max-width: 991px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-left {
    text-align: center;
    margin-bottom: 60px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left p {
    margin: auto auto 30px;
  }

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

  .hero-right {
    transform: scale(0.8);
    height: 560px;
  }
}

@media (max-width: 767px) {
  

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-left p {
    font-size: 16px;
    line-height: 1.8;
  }

  .btn-demo,
  .btn-suite {
    width: 100%;
    text-align: center;
  }
}












/* =========================================
   STACK SECTION
========================================= */

.stack-section {
  padding: 70px 0;
  background: #F1F1FF;
}
.stack-section.back-office{
  background: #E3E3FF;
}

 .horizontal-line{
  margin: 50px 0px;
}

/* CONTAINER */

.stack-section .container {
  /* max-width: 1180px; */
}

/* =========================================
   TOP
========================================= */

.stack-top {
  max-width: 760px;
  margin-bottom: 48px;
}

.stack-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  padding: 0 28px;

  background: #BEB9FF;

  border-radius: 50px;

  color: #1D12AF;
  /* font-size: 15px; */
  font-weight: 600;

  margin-bottom: 34px;
}

.stack-top h2 {
  font-size: 40px;
  line-height: 53px;
  font-weight: 800;
  letter-spacing: -2px;
  color: #111;
  margin-bottom: 26px;
}

.stack-top p {
  max-width: 720px;
  /* font-size: 15px; */
  /* line-height: 2; */
  /* color: #4d4d4d; */
  margin: 0;
}

.stack-top .highlight{
  /* background: linear-gradient(90deg, #FF2121 0%, #940B88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}
/* =========================================
   SWITCH
========================================= */

.stack-switch-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.stack-switch {
  height: 45px;
  padding: 10px 25px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* font-size: 13px; */
  font-weight: 700;
  color: #fff;
}

.stack-switch-row span {
  /* font-size: 14px; */
  /* color: #222; */
}

.stack-switch-gold {
  background: #4f4fed;
}

.stack-switch-blue {
  background: #0174FF;
}

/* =========================================
   GRID
========================================= */

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

/* =========================================
   CARD
========================================= */

.stack-card {
  background: #fff;
  border: 1px solid #000000;
  border-radius: 12px;
  padding: 35px 20px;
  min-height: 185px;
box-shadow: 0px 4px 7.7px 0px #9A9AF980;

  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}

/* BOTTOM LINE */

.stack-card::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: 0;

  width: 0%;
  height: 3px;

  background: #ffb800;

  transition: width 0.35s ease;
}

/* HOVER */

.stack-card:hover::after {
  width: 100%;
}


.stack-card:hover {
  transform: translateY(-4px);
}

/* =========================================
   CARD TOP
========================================= */

.stack-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* ICON */

.stack-icon {
  width: 50px;
  height: 35px;
  border-radius: 4px;
  background: #F9E9E0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* =========================================
   TAG
========================================= */

.stack-tag {
    height: 30px;
    padding: 0 15px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #B06100;
    background: #F9E9E0;
    border: 1px solid #FFA100;
}

/* SALES */

/* .sales-tag {
 background: #FFE6B180;

  color: #B06100;
  border: 1px solid #FFA100;
} */

/* HR */

/* .hr-tag {
  background: #D9E0FF80;

  color: #3F76FF;
  border: 1px solid #7B77FF;
} */

/* FIN */

/* .fin-tag {
  background: #B8F7B680;
  color: #094D24;
  border: 1px solid #1BA311;
} */

/* OPS */

/* .ops-tag {
  background: #FFCBCB80;

  color: #EC5252;
  border: 1px solid #E13838;
} */

/* =========================================
   TEXT
========================================= */

.stack-card h4 {
  font-size: 18px;
  /* line-height: 1.3; */
  font-weight: 700;
  /* color: #111; */
  margin-bottom: 12px;
}

.stack-card p {
  font-size: 16px;
  /* line-height: 1.9; */
  /* color: #333; */
  margin: 0;
}

/* =========================================
   BACK OFFICE
========================================= */

.backoffice-wrap {
  /* margin-top: 20px; */
}

.backoffice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 24px;
}

/* BOX */

.backoffice-card {
  /* background: linear-gradient(180deg, #196CD2 0%, #0D386C 100%); */
background: #fff;
  border-radius: 12px;
  padding: 35px 20px;
  min-height: 190px;
  border: 1px solid #000000;
  position: relative;
    overflow: hidden;
    transition: transform 0.25s ease;
    box-shadow: 0px 4px 7.7px 0px #9A9AF980;

}

.backoffice-card:hover::after {
    width: 100%;
}


.backoffice-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #ffb800;
    transition: width 0.35s ease;
}

.backoffice-card:hover {
    transform: translateY(-4px);
}

/* ICON */

.backoffice-icon {
  width: 50px;
  height: 35px;
  border-radius: 4px;
  background: #FCF4EF;
  border: 1px solid #FFA100;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.backoffice-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* TEXT */

.backoffice-card h4 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  /* color: #fff; */
  margin-bottom: 14px;
}

.backoffice-card p {
  font-size: 16px;
  /* line-height: 1.9; */
  /* color: #fff; */
  margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .stack-grid,
  .backoffice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stack-top h2 {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .stack-section {
    padding: 70px 0;
  }

  .stack-top h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .stack-grid,
  .backoffice-grid {
    grid-template-columns: 1fr;
  }

  .stack-switch-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .stack-card {
    min-height: auto;
  }
}











/* =========================================
   WORKFLOW SECTION
========================================= */

/* ── Section ── */

.workflow-section {
  padding: 70px 0;
  background: #f5f5f5;
}

/* TOP */

.workflow-top {
  max-width: 760px;
  margin: auto;
  margin-bottom: 40px;
}

.workflow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 34px;
  padding: 0 18px;

  background: #c9c3ff;
  border-radius: 50px;

  color: #4c45c9;
  /* font-size: 13px; */
  font-weight: 600;

  margin-bottom: 26px;
}

.workflow-top h2 {
  font-size: 40px;
  line-height: 53px;
  font-weight: 800;
  margin-bottom: 20px;
}

.workflow-top p {
  /* font-size: 15px; */
  /* line-height: 1.9; */
  /* color: #444; */
  max-width: 720px;
  margin: auto;
}


.workflow-tabs-wrapper {
  position: sticky;
  top: 78px;
  z-index: 300;
  background: #f5f5f5;
  padding: 8px 0 12px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.workflow-tabs-wrapper.tabs-end {
  position: relative;
  top: auto;
}

/* CARDS TRACK */

.workflow-cards-track {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(var(--cards-count, 4), var(--card-height, 420px));
  gap: 48px 0;
  padding-bottom: 180px;
}

/* TABS */

.workflow-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.workflow-tab {
  height: 42px;
  padding: 0 22px;

  border-radius: 30px;
  border: 1px solid #999;

  background: #fff;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
}

.workflow-tab.active {
  background: #4a63d9;
  color: #fff;
  border-color: #4a63d9;
}

/* ================================
   CARD
================================ */

.workflow-card {
  position: sticky;
  top: var(--workflow-stick-top, 140px);
  z-index: 1;
}

.workflow-card:nth-child(2) {
  z-index: 2;
}

.workflow-card:nth-child(3) {
  z-index: 3;
}

.workflow-card:nth-child(4) {
  z-index: 4;
}

.workflow-card__inner {
  will-change: transform;
  transform-origin: center top;
  background: #ffffff;
  border: 1px solid #d8dce8;
  border-radius: 16px;
  padding: 32px 36px 36px;
  box-shadow: 0 12px 48px -12px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

/* ================================
   CONTENT
================================ */

.workflow-card-content {
  margin-bottom: 28px;
}

.workflow-card-content h3 {
  font-size: 25px;
  line-height: 1.25;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}

.workflow-card-content p {
  /* font-size: 14px; */
  /* line-height: 1.85; */
  /* color: #444; */
  max-width: 100%;
  margin: 0;
}

/* ================================
   STEPS
================================ */

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}


/* 4 ITEMS VERSION */

.workflow-steps--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;

  width: 100%;
}





/* ICON */

.workflow-steps--4 .workflow-step-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}




/* ================================
   STEP BOX
================================ */

.workflow-step {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 15px;

  overflow: hidden;

  transition: 0.25s ease;
}

.workflow-step:hover {
  transform: translateY(-3px);
}


.workflow-steps,
.workflow-steps--4 {
  margin-top: 10px;
}

/* ================================
   BLUE TOP
================================ */

.workflow-step-top {
  height: 64px;
  background: #3f5dc3;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

/* DARK CIRCLE */

.workflow-step-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  background: #18307b;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */

.workflow-step-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ================================
   BOTTOM TEXT
================================ */

.workflow-step-bottom {
  padding: 10px 8px 12px;

  text-align: center;
  background: #fff;
}

.workflow-step-bottom h4 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #111;

  margin-bottom: 3px;
}

.workflow-step-bottom span {
  font-size: 14px;
  line-height: 1.4;

  color: #3f5dc3;
  font-weight: 500;
}

/* RESPONSIVE */



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


@media (max-width: 991px) {
  .workflow-steps,
  .workflow-steps--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .workflow-section {
    padding: 60px 0;
  }

  .workflow-top h2 {
    font-size: 34px;
  }

  .workflow-card__inner {
    padding: 20px;
  }

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

  .workflow-tab {
    width: 100%;
  }
}




















/* =========================================
   WHY SECTION
========================================= */

.why-section {
  padding: 60px 0;
  background: #F1F1FF;
  position: relative;
}

/* =========================================
   TOP
========================================= */

.why-top {
  max-width: 900px;
  margin: auto;
  margin-bottom: 90px;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  padding: 0 28px;
  background: #BEB9FF;

  /* background: linear-gradient(
    90deg,
    rgba(187, 211, 255, 0.5) 0%,
    rgba(255, 0, 200, 0.5) 0.01%,
    rgba(7, 142, 255, 0.5) 100%
  ); */

  border-radius: 50px;

  color: #4238C8;
  /* font-size: 15px; */
  font-weight: 600;

  margin-bottom: 34px;
}

.why-top h2 {
  font-size: 40px;
  line-height: 53px;
  font-weight: 800;
  /* color: #111; */
  letter-spacing: -0.8px;
  margin: 0;
}

.why-top h2 span {
  /* background: linear-gradient(90deg, #ff6b6b 0%, #994040 100%);
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent; */
}

/* =========================================
   GRID
========================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 56px;
  row-gap: 70px;
}

/* =========================================
   ITEM
========================================= */

.why-item {
  position: relative;
  grid-column: span 2;
}



/* SECOND ROW CENTERED */
.why-item:nth-child(4) {
  grid-column: 2 / span 2;
}

.why-item:nth-child(5) {
  grid-column: 4 / span 2;
}

/* TOP LINE */

.why-line {
  width: 100%;
  height: 1px;
  border: 1px solid #0000004D;
  margin-bottom: 34px;
}

/* CONTENT */

.why-content {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* =========================================
   ICON
========================================= */

.why-icon {
  width: 54px;
  height: 54px;

  background: #8888FF;

border-radius: 10px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* =========================================
   TEXT
========================================= */

.why-text h4 {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  /* color: #111; */
  margin-bottom: 10px;
}

.why-text p {
  font-size: 15px;
  /* line-height: 1.95; */
  /* color: #333; */
  margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */





@media (max-width: 1199px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-item,
  .why-item:nth-child(4),
  .why-item:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .why-section {
    padding: 80px 0;
  }

  .why-top {
    margin-bottom: 55px;
  }

  .why-top h2 {
    font-size: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  .why-text h4 {
    font-size: 24px;
  }

  .why-text p {
    font-size: 14px;
    line-height: 1.85;
  }
}









/* =========================================
   INDUSTRIES SECTION
========================================= */

.industries-section{
    padding: 70px 0;
    background: #fff;
}


/* =========================
   TOP
========================= */

.industries-top{
    max-width: 720px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.industries-badge{
    display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  padding: 0 28px;

  /* background: linear-gradient(
    90deg,
    rgba(187, 211, 255, 0.5) 0%,
    rgba(255, 0, 200, 0.5) 0.01%,
    rgba(7, 142, 255, 0.5) 100%
  ); */

  border-radius: 50px;
  background: #BEB9FF;

  color: #4238C8;
  /* font-size: 15px; */
  font-weight: 600;

  margin-bottom: 34px;
}

.industries-top h2{
    font-size: 40px;
    line-height: 53px;
    font-weight: 800;
    /* color: #3A2F2F; */

    margin-bottom: 22px;
}

.industries-top h2 span{
     /* background: linear-gradient(90deg, #c14357 0%, #8b49a4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.industries-top p{
    max-width: 520px;
    margin: auto;

    /* font-size: 18px; */
    /* line-height: 1.9; */
    /* color: #5C5550; */
}


/* =========================
   GRID
========================= */

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


/* =========================
   CARD
========================= */

.industry-card{
    background: #FCF4EF;

    border: 1px solid #000000;
    border-radius: 18px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease;
    box-shadow: 0px 4px 7.7px 0px #ecd3c3;
}

.industry-card:hover{
  transform: translateY(-3px);
}


/* =========================
   TOP
========================= */

.industry-card-top{
    display: flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 14px;
    border-bottom: 1px solid #00000080;

    margin-bottom: 18px;
}

.industry-icon{
    width: 40px;
    height: 35px;

    background: #FCF4EF;
    
border: 1px solid #FFA100;
    border-radius: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.industry-icon img{
    width: 20px;
}

.industry-card-top h3{
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
    /* color: #2F2B28; */
    margin: 0;
}


/* =========================
   DESC
========================= */

.industry-desc{
    /* font-size: 14px; */
    /* line-height: 1.8; */
    font-size: 16px;
font-weight: 600;
    margin-bottom: 22px;
}


/* =========================
   LIST
========================= */

.industry-list{
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.industry-list li{
    position: relative;

    padding-left: 18px;
    padding-bottom: 16px;
    margin-bottom: 16px;

    font-size: 16px;
    font-weight: 400;
    /* line-height: 1.8; */
    border-bottom: 1px dotted #00000080;
}

.industry-list li:last-child{
    margin-bottom: 0;
    border-bottom: unset;
}

.industry-list li::before{
    content: "";

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #EBB97E;

    position: absolute;
    left: 0;
    top: 9px;
}


/* =========================
   TAGS
========================= */

.industry-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: auto;
}

.industry-tag{
    min-width: 120px;

    background: #FFE9CF;

    border: 0.5px solid #00000080;
    border-radius: 4px;

    padding: 10px 12px;
}

.industry-tag strong{
    display: block;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    /* color: #2B2724; */

    margin-bottom: 3px;
}

.industry-tag span{
    display: block;

    font-size: 10px;
    /* line-height: 1.4; */
    /* color: #5A514A; */
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1199px){

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

}

@media(max-width: 767px){

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

    .industries-top{
        margin-bottom: 50px;
    }

    .industries-top h2{
        font-size: 40px;
    }

    .industries-top p{
        font-size: 16px;
    }

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

}









/* =========================================
   PHILOSOPHY SECTION
========================================= */

.philosophy-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #E9E9E9 0%, #FFFFFF 100%);

}



/* =========================================
   WRAPPER
========================================= */

.philosophy-wrapper {
  position: relative;
  overflow: hidden;

  border-radius: 34px;
color: #fff;
  padding: 50px 60px;

  /* BACKGROUND IMAGE */
/* background: linear-gradient(144.37deg, #7A466F -59.97%, #E33ABD 115.32%); */
background: linear-gradient(180deg, #196CD2 0%, #0D386C 100%);


}


/* SOFT TOP HIGHLIGHT */

.philosophy-wrapper::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top center,
      rgba(255,255,255,0.10),
      transparent 55%
    );

  pointer-events: none;
}

/* =========================================
   LEFT
========================================= */

.philosophy-left {
  position: relative;
  z-index: 2;
  max-width: 420px;

}

/* LABEL */

.philosophy-label {
  display: inline-block;

  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;

  
  margin-bottom: 26px;
}

/* TITLE */

.philosophy-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
letter-spacing: -1.2px;
    line-height: 1.2;
  margin-bottom: 25px;
}


.philosophy-left h2 span {
  /* display: inline-block; */
  color: #F8FF27;
}

/* TEXT */

.philosophy-left p {
  max-width: 460px;
font-weight: 300;

  margin: 0;
}

/* =========================================
   RIGHT
========================================= */

.philosophy-right {
  position: relative;
  z-index: 2;


  padding: 28px 32px;

  border-radius: 16px;

  background: #072C58;

  border: 1px solid rgba(255,255,255,0.06);

  backdrop-filter: blur(4px);
  color: #fff;
}


.philosophy-right p{
  line-height: 32px;
  font-weight: 300;
}

/* YELLOW EMPHASIS */

.philosophy-right  strong {
  color: #F8FF27;
  font-weight: 700;
}



/* DIVIDER */

.philosophy-divider {
  width: 100%;
  height: 1px;

  background: #10488B;

  margin-bottom: 18px;
}


/* NAME */

.philosophy-right h4 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;

  color: #fff;

  margin-bottom: 0px;
}

/* SUBTEXT */

.philosophy-right span {
  /* font-size: 20px; */
  /* line-height: 1.7; */
  font-size: 15px;
font-weight: 300;
  color: rgb(226 224 224 / 88%);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {
  .philosophy-wrapper {
    padding: 70px 50px;
  }

  .philosophy-left h2 {
    font-size: 46px;
  }

  .philosophy-right blockquote {
    font-size: 22px;
  }
}

@media (max-width: 991px) {

.philosophy-wrapper {
    padding: 40px 30px;
  }

  .philosophy-left {
    margin-bottom: 50px;
  }

  .philosophy-right {
    padding-left: 0;
    max-width: 100%;

  }
  .philosophy-section .see-break{
display: none;
}
}

@media (max-width: 767px) {
  .philosophy-section {
    padding: 80px 0;
  }

  .philosophy-wrapper {
    border-radius: 24px;
    padding: 50px 24px;
  }

  .philosophy-left h2 {
    font-size: 36px;
  }

    .philosophy-right {
    padding: 24px 20px;
  }

  .philosophy-right .fraunces-verylight {
    font-size: 15px;
    line-height: 1.9;
  }

  .philosophy-left p {
    /* font-size: 16px; */
    /* line-height: 1.8; */
    font-weight: 400;
  }



  .philosophy-right h4 {
    font-size: 24px;
  }

  .philosophy-right span {
    font-size: 15px;
  }
}








/* =========================================
   FINAL CTA SECTION
========================================= */

.final-cta-section {
  padding: 70px 0;
  background: linear-gradient(359.2deg, #D0D0FF -71.65%, #F9FAFF 137.65%);

   
  
  position: relative;
  overflow: hidden;
}

/* =========================================
   CONTENT
========================================= */

.final-cta-content {
}

/* =========================================
   LABEL
========================================= */

.final-cta-label.fraunces-light{
  display: inline-block;

  font-size: 20px;
  line-height: 1.5;

  font-style: italic;
  /* color: #fff; */

  margin-bottom: 30px;
}

/* =========================================
   TITLE
========================================= */

.final-cta-content h2 {
  font-size: 60px;
  line-height: 1.12;
  letter-spacing: -1.5px;
/* max-width: 750px; */
/* margin: 0 auto; */
  /* color: #fff; */
    font-weight: 600;
  margin-bottom: 30px;
}

/* YELLOW TEXT */

.final-cta-content h2 span {
  color: #2222E8;
}

/* =========================================
   DESCRIPTION
========================================= */

.final-cta-content p {
  /* color: #fff; */
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto;
  max-width: 545px;
  margin-bottom: 30px;
}

.final-cta-content .description{
  font-weight: 500;
}

/* =========================================
   BUTTONS
========================================= */

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* PRIMARY */

.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  height: 68px;
  padding: 0 34px;

  background: linear-gradient(90deg, #3243FE 0%, #8A86FF 100%);
  border-radius: 40px;

  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;

  transition: 0.2s ease;
}

.cta-primary-btn:hover {
  transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(124, 58, 237, 0.28);
    color: #fff;
}

/* OUTLINE */

.cta-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  height: 68px;
  padding: 0 34px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;

  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;

  transition: 0.2s ease;
}

.cta-outline-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ARROW */

.cta-primary-btn span,
.cta-outline-btn span {
  font-size: 18px;
  line-height: 1;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {
  .final-cta-content h2 {
    font-size: 68px;
  }
}

@media (max-width: 767px) {
  .final-cta-section {
    padding: 90px 0;
  }

  .final-cta-label {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .final-cta-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 28px;
  }

  .final-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 38px;
  }

  .final-cta-buttons {
    gap: 16px;
  }

  .cta-primary-btn,
  .cta-outline-btn {
    width: 100%;
    height: 60px;
    font-size: 15px;
  }
}



footer{
  background-color: #000000;
  color: #ffffff;
  font-weight: 400;

}

footer .aboutus-company .footer-section .company-footer ul li a, footer .aboutus-company .footer-section .follow-footer ul li a, footer .aboutus-company .footer-section .support-footer ul li a{
  color: #ffffff;
}