* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

:root {
  --bg: #3b3b3b;
  --base: #f6f5ea;
  --fill: #ff6968;
  --text: #27271f;
  --hoverText: #f7f7ed;
  --lightPrimary: #ff69681a;
}

.primary-color {
  color: var(--fill);
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ================= NAVBAR ================= */
/* .navbar {
  position: fixed;
  top: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
   z-index: 9999;
} */

.nav-left {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 20px;

  width: max-content;

  padding: 8px 20px;

  background: #fff;
  border: 1px solid #e3e3e373;
  border-radius: 999px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-left ul {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-left ul li {
  position: relative;
  z-index: 2;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: color .28s ease;
}

.nav-left ul li.active {
  color: #fff;
}

.hover-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--fill);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
}

.logo a {
  height: 31px;
}

.logo img {
  width: 140px;
}

.logo-circle {
  width: 16px;
  height: 16px;
  background: #ff6968;
  border-radius: 50%;
}

.book-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 9999;

  border: none;
  padding: 8px 8px 8px 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  background: #111;
  color: white;
  font-size: 15px;
  cursor: pointer;
}

.book-btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}


/*  */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--lightPrimary);
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #222;
  transition: .35s;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(2) {
  top: 22px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(3) {
  top: 28px;
  transform: translateX(-50%);
}

/* X */
.menu-toggle.active span:nth-child(1) {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

@media(max-width:991px) {
  .book-btn {
    display: none;
  }

  #navMenu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-left {
    left: 30px;
    right: 30px;
    top: 30px;
    width: auto;
    transform: none !important;
    justify-content: space-between;
  }

  .mobile-menu {
    position: fixed;
    top: 105px;
    left: 30px;
    right: 30px;
    background: #fff;
    border-radius: 30px;
    padding: 0 25px;
    display: block;
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
  }

  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu li {
    margin: 16px 0;
  }

  .mobile-menu a {
    text-decoration: none;
    color: #242424;
    font-size: 22px;
    font-weight: 500;
  }
}

@media(max-width:768px) {
  .nav-left {
    left: 20px;
    right: 20px;
    top: 20px;
    width: auto;
    transform: none !important;
    justify-content: space-between;
  }

  .mobile-menu {
    left: 20px;
    right: 20px;
  }
}

/* ==========================================
   Dropdown Menu
========================================== */
/* Company Dropdown */
.has-dropdown {
  position: relative !important;
}

.has-dropdown .submenu {
  position: absolute;
  top: calc(100% + 12px);
  /* top: 100%; */
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  /* Vertical items */
  align-items: stretch;
  gap: 0;

  width: auto;
  padding: 8px;

  margin: 0;
  list-style: none;

  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  z-index: 9999;
}

.has-dropdown .submenu li {
  width: 100%;
  padding: 0 !important;
}

.has-dropdown .submenu li a {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  color: #222;
  text-decoration: none;
  transition: .25s;
}

.has-dropdown .submenu li a:hover {
  background: var(--fill);
  color: #ffffff;
}

/* ==========================================
   Mobile  Dropdown Menu
========================================== */
.mobile-dropdown {
  color: #242424;
  font-size: 22px;
  font-weight: 500;
}

.mobile-dropdown-toggle {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.mobile-dropdown-toggle i {
  font-size: 20px;
  font-size: 16px;
  margin-top: 6px;
}

.mobile-arrow {
  transition: .35s;
}

.mobile-dropdown.active .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  overflow: hidden;
  padding-left: 20px !important;
  margin-top: 12px !important;
}

.mobile-submenu li {
  margin: 0;
}

.mobile-submenu a {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  color: #242424;
  text-decoration: none;
  font-size: 18px !important;
}

/* .mobile-submenu a {
  font-size: 18px !important;
  color: #555;
} */

/* ================= HERO  START ================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 850px;
  background: #fff;
  overflow: hidden;
  padding: 20px;
}

/* IMAGE CONTAINER */
.hero-image-wrapper {
  /* position: absolute;
  top: 20px;
  left: 20px;
  inset: 20px; */
  /* width: calc(100% - 40px); */
  width: 100%;
  height: calc(100vh - 40px);
  --overlayOpacity: 0.4;
  --blur: 0px;
  overflow: hidden;
  border-radius: 36px;
  transform-origin: center center;
  will-change: transform, width, height, border-radius;
  z-index: 10;
}

/* OVERLAY */
.hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  /* backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur)); */
  z-index: 2;
  pointer-events: none;
}

/* IMAGE */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
  z-index: 1;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%; */
  /* height: 100vh;
  padding: 160px 80px 60px; */
  /* height: calc(100vh - 40px);
  padding: 150px 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 11; */

  position: absolute;
  inset: 20px;
  padding: 60px 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 40px);
  z-index: 11;
}

.top-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top-content h1 {
  font-size: 70px;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 1.2;
  max-width: 1000px;
  color: white;
  font-weight: 600;
}

.top-content p {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  color: white;
  /* max-width: 400px; */
  line-height: 1.4;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.our-services-btn {
  padding: 10px 18px !important;
}



/* ================= BOTTOM ================= */
/* .bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
} */

.bottom-logos-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  overflow: hidden;

  /* Transparent fade */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);

  mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
}

.bottom-logos {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  will-change: transform;
}

.bottom-logos img {
  width: 130px;
}

/* .case-study {
  width: 420px;
  padding: 10px;
  display: flex;
  gap: 10px;
  background: #f5f5e9;
  border-radius: 30px;
}

.card-image img {
  width: 130px;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
}

.case-study .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
}

.case-study .card-content .tag {
  padding: 6px 12px;
  width: max-content;
  border-radius: 100px;
  background: black;
  color: white;
  font-size: 13px;
}

.case-study .card-content p {
  font-size: 13px;
}

.case-study .card-content .growth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.case-study .card-content .growth .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-study .card-content .growth small {
  font-size: 13px;
  color: #616161;
} */

/* ================= TEXT SECTION ================= */
/* .text-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
  opacity: 0;
  z-index: 11;
  pointer-events: none;
}

.text-wrap {
  max-width: 1200px;
  width: 100%;
}

.split-text {
  font-size: 4.5vw;
  line-height: 1.05;
  text-align: center;
  font-weight: 600;
  color: white;
}

.word {
  display: inline-block;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
} */

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero {
    padding: 10px;
  }

  .hero-content {
    padding: 60px 25px 25px;
  }

  .hero-image-wrapper {
    height: calc(100vh - 20px);
  }

  /* .top-content h1 {
    font-size: 52px;
  } */

  .top-content p {
    font-size: 16px;
  }

  .bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .bottom-logos img {
    width: 100px;
  }

  .case-study {
    width: 100%;
  }

  .split-text {
    font-size: 11vw;
  }
}

@media (max-width: 500px) {
  .hero-content {
    padding: 90px 15px 20px;
  }

  /* .top-content h1 {
    font-size: 40px;
    line-height: 1.1;
  } */
}

/* ================= HERO  START ================= */


/* ================ CHANGE SECTION START =================== */
.change-section {
  /* position: relative !important;
  background: #fff; */

  position: relative;

  z-index: 20;

  background: #fff;


}

.change-container {
  /* position: sticky;
  top: 0; */
  /* position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center; */
  position: relative;

  height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;
}

.main-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  font-size: 4vw;
  text-align: center;
  white-space: nowrap;
  will-change: transform, opacity;
}

.left-text,
.right-text {
  display: block;
}

.light-gray {
  color: #616161;
}

.light {
  color: #777777;
}

.change-section .card {
  position: absolute;

  top: calc(50% + 40px);
  left: 50%;
  transform: translate(-50%, -50%);

  width: 500px;
  height: 620px;
  border-radius: 38px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  z-index: 2;
  /* box-shadow: 0 30px 80px rgba(0, 0, 0, .15); */
  will-change: transform;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.before-card {
  /* background: #F5F5E9; */
  background: #ffffff;
  border: 1px solid #e3e3e373;
}

.after-card {
  /* background: #ff6968; */
  background: #FFE2DE;
}

.card-label {
  font-size: 18px;
  color: #888;
  margin-bottom: 18px;
}

.card-label.white {
  color: rgba(255, 255, 255, .75);
}

.card-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.card-logo img {
  width: 150px
}

.card-logo.white {
  color: #fff;
}

.card-title {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  color: #616161;
  margin-top: 30px;
}

.card-title.white {
  /* color: #fff; */
  color: #1b1b1b;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.card-item .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #8d8d8d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.card-item p {
  font-size: 16px;
  color: #616161;
  line-height: 1.45;
}

.card-item.white .icon {
  /* background: #fff;
  color: #2d2d2d; */
  background: #ff6968;
  color: #fff;
}

.card-item.white p {
  /* color: #fff; */
  font-weight: 500;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .change-section {
    height: auto;
    padding: 100px 20px;
  }

  .change-container {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .main-text {
    position: relative;
    font-size: 42px;
    transform: none;
    left: 0;
  }

  .change-section .card {
    position: relative;
    width: 100%;
    /* max-width: 350px; */
    height: 550px;
    opacity: 1 !important;
    transform: none !important;
    left: 0;
    top: 0;
  }
}

@media (max-width: 500px) {
  .main-text {
    font-size: 30px;
  }

  .change-section .card {
    padding: 30px 20px;
  }

  .card-title {
    font-size: 34px;
  }
}


/* ================ CHANGE SECTION END =================== */


/*========================== WHO WE ARE SECTION START  ==========================*/

.who-we-are {
  padding: 70px 20px;
}

.who-container {
  max-width: 1350px;
  margin: auto;
}

.who-header {
  margin-bottom: 50px;
}

.who-label {
  display: inline-block;
  margin-bottom: 24px;
  color: #ff6968;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.who-header .who-title {
  font-size: clamp(35px, 8vw, 60px);
  line-height: 1.1;
  color: #242424;
  margin-bottom: 28px;
  font-weight: 600;
}

.who-header .who-title span {
  display: inline-block;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.who-header .who-desc {
  font-size: 24px;
  line-height: 1.4;
  color: #616161;
  max-width: 900px;
  opacity: 0;
  transform: scale(.8);
  will-change: transform, opacity;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #ececdf;
  transition: .45s cubic-bezier(.22, 1, .36, 1);
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, .04); */
  display: flex;
  flex-direction: column;

  border-color: #ffdad9;
  /* box-shadow: 0 18px 40px rgba(0, 0, 0, .08), 0 8px 25px rgba(255, 105, 104, .08); */

  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

/* Gradient top */
/* .who-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #ff6968, #ffb0af); } */
/* Floating Glow */
.who-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: radial-gradient(rgba(255, 105, 104, .10), transparent 70%);
  pointer-events: none;
}

/*================================================== Hover ==================================================*/
/* .who-card:hover {
  transform: translateY(-10px);
  border-color: #ffdad9;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08), 0 8px 25px rgba(255, 105, 104, .08);
} */

/* .large { grid-column: span 2; } */

.card-top .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-top .card-icon svg {
  width: 24px;
  height: 24px;
}

/* Colors */
.red {
  background: linear-gradient(135deg, #fff2f2, #ffe5e5);
  color: #ff6968;
}

.green {
  background: linear-gradient(135deg, #effdf7, #def9ef);
  color: #17b978;
}

.blue {
  background: linear-gradient(135deg, #eef5ff, #dcecff);
  color: #4285ff;
}

.orange {
  background: linear-gradient(135deg, #fff8eb, #fff1cf);
  color: #f39c12;
}

.purple {
  background: linear-gradient(135deg, #f7f2ff, #efe5ff);
  color: #8e44ff;
}

.cyan {
  background: linear-gradient(135deg, #effcff, #d9f7fa);
  color: #0ea5b7;
}

.card-number {
  display: block;
  font-size: 13px;
  color: #b8b8b8;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 14px;
}

.who-card h3 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #242424;
}

.who-card p {
  color: #616161;
  line-height: 1.4;
  font-size: 15px;
  margin-bottom: 26px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.card-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg,
      #fff,
      #faf7f6);
  background: #F8F6F2;
  border: 1px solid #e3e3e373;
  color: #242424;
  font-size: 12px;
  font-weight: 500;
  background: var(--lightPrimary);
}


.who-card .circle {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 105, 104, .04);
}

/*============================ Responsive ====================================*/
@media(max-width:1100px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .large {
    grid-column: span 2;
  } */
}

@media(max-width:768px) {
  .who-we-are {
    padding: 90px 20px;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  /* 
  .large {
    grid-column: span 1;
  } */

  .who-header {
    text-align: left;
    margin-bottom: 50px;
  }


  .who-header .who-desc {
    font-size: 17px;
  }

  .who-card {
    padding: 26px;
  }

  .who-card h3 {
    font-size: 26px;
  }
}

/*========================== WHO WE ARE SECTION END ==========================*/


/* ================ SERVICES SECTION START =================== */

.services-section {
  /* background: #fcfcfa; */
  padding: 70px 20px 0;
  overflow: hidden;
}

.services-intro {
  /* width: 92%; */
  max-width: 1350px;
  margin: auto;
  padding: 40px 0 80px;
}

.services-title {
  font-size: clamp(35px, 8vw, 60px);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
  /* opacity: 0;
  transform: scale(0.9);
  will-change: transform, opacity; */
}

/* .services-intro .services-title span {
  display: inline-block;
  opacity: 0;
  transform: scale(0.9);
  will-change: transform, opacity;
} */

.services-title span,
.services-desc-inner {
  display: inline-block;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.services-desc p {
  max-width: 900px;
  font-size: 30px;
  line-height: 1.3;
  color: #555;
}

.services-desc span {
  color: #ff6968;
}

.services-intro small {
  display: block;
  margin-top: 25px;
  color: #777;
  font-size: 13px;
}

/*========================== CARD ==========================*/
.services-pin {
  position: relative;
}

.services-wrapper {
  position: relative;
  /* width: 92%; */
  max-width: 1350px;
  height: 100vh;
  margin: auto;
}

.service-card {
  position: absolute;
  /* top: 0;
  left: 0;
  width: 100%;
  min-height: 680px; */

  width: 100%;
  /* height: 100%; */
  height: clamp(610px, 75vh, 680px);

  border-radius: 32px;
  /* background: #f5f5e9; */
  padding: 7px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  will-change: transform;
  background: var(--lightPrimary);
  /* background: #e9e9e7;
  background: #e5e5e3; */
}

.card1 {
  z-index: 1;
}

.card2 {
  z-index: 2;
}

.card3 {
  z-index: 3;
}

.card4 {
  z-index: 4;
}

.card5 {
  z-index: 5;
}

.card6 {
  z-index: 6;
}

/*========================== LEFT ==========================*/

.service-card-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card-left .service-card-btn {
  padding: 15px 20px;
}

.service-content {
  background: #ffffff;
  border-radius: 26px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  flex: 1;
}


.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.card-id {
  font-size: 14px;
  color: #b8b8b8;
  letter-spacing: 3px;
  font-weight: 700;
}


.card-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 30px;
  height: 30px;
}

.service-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 50px;
  background: #f2f2ef;
  font-size: 13px;
  font-weight: 600;
  color: #242424;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6968;
}

.service-number {
  font-size: 20px;
  font-weight: 700;
  color: #242424;
}

.heading-area h2 {
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 700;
  color: #242424;
}

.heading-area p {
  max-width: 430px;
  font-size: 15px;
  color: #616161;
  font-weight: 500;
}

.offer-area {
  margin-top: auto;
}

.offer-area h4 {
  font-size: 18px;
  margin: 22px 0;
  color: #242424;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  padding: 6px 12px;
  border-radius: 40px;
  background: #f5f5e9;
  font-size: 13px;
  color: #242424;
  font-weight: 500;
  background: var(--lightPrimary);
}


/*========================== RIGHT ==========================*/
.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: 0.6s; */
}

/* .service-card .service-image img:hover  {
  transform: scale(1.05);
} */

.service-card-left {
  order: 1;
}

.service-image {
  order: 2;
}

/*========================== RESPONSIVE ==========================*/
@media (max-width: 991px) {
  .service-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .services-section {
    height: auto;
    padding: 70px 20px;
  }

  .services-intro .services-title {
    font-size: 50px;
  }

  .services-intro .services-desc p {
    font-size: 25px;
  }


  .services-wrapper {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .service-card {
    position: relative;
    transform: none !important;
    width: 100%;
    height: auto;
  }

  .service-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .service-image {
    height: 420px;
    order: 1;
  }

  .service-card-left {
    order: 2;
  }

  .service-content {
    padding: 35px;
  }

  .heading-area h2 {
    font-size: 38px;
  }

  .offer-area h4 {
    font-size: 26px;
  }

  .service-image {
    height: 320px;
  }

  .testimonial-card {
    width: 260px;
  }

  .testimonial-card p {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .services-intro .services-desc p {
    font-size: 20px;
  }

  .service-content {
    padding: 20px;
  }

  .heading-area h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .offer-area h4 {
    font-size: 23px;
  }
}

/*========================== SERVICE  SECTION END  ==========================*/


/*========================== CONSULTANCY  SECTION START  ==========================*/

.consultancy-section {
  max-width: 1350px;
  margin: auto;
  padding: 70px 20px;
}

.reveal-heading {
  font-size: 60px;
  line-height: 1;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 30px;
  max-width: 700px;
}

.reveal-heading span {
  display: inline-block;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.reveal-heading .gray {
  color: #777;
}

.reveal-para {
  font-size: 20px;
  color: #555;
  margin-bottom: 70px;
  max-width: 400px;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

/* .consultancy-top h1 span { color: #777; } */
.cards-wrapper {
  display: flex;
  gap: 12px;
  height: 360px;
  background-color: #f5f5e9;
  padding: 8px;
  border-radius: 30px;
  background: var(--lightPrimary);
}

.phase-card {
  flex: 0.8;
  background: #ffffff;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #efefef;
  will-change: flex, transform;
  transform: translateZ(0);
}

.phase-card.active {
  flex: 2.5;
  background: #1d1d1d;
  color: white;
}

.number {
  font-size: 30px;
  font-weight: 500;
}

.top-row {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 140px; */
  margin-top: -24px;
}

.content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  will-change: transform, opacity;
}

.content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.content p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 380px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots .active {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6968;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

/* .phase-card:not(.active) .top-row, .phase-card:not(.active) .content { opacity: 0; } */
.phase-card .top-row,
.phase-card .content {
  opacity: 0;
  transform: translateY(40px);
}

.phase-card.active .top-row,
.phase-card.active .content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:768px) {
  .reveal-heading {
    font-size: 45px;
  }

  .cards-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    background-color: transparent;
  }

  .phase-card {
    flex: 0 0 420px !important;
    width: 420px;
    display: flex;
    flex-direction: column;
    cursor: default;
    scroll-snap-align: start;
  }

  .phase-card.active {
    flex: 0 0 420px !important;
  }

  .phase-card .top-row,
  .phase-card .content {
    opacity: 1 !important;
    transform: none !important;
    position: relative;
    left: auto;
    bottom: auto;
  }

  .content {
    margin-top: 100px;
  }
}

@media (max-width:600px) {
  .reveal-heading {
    font-size: 34px;
  }

  .phase-card.active {
    flex: 0 0 300px !important;
    padding: 20px;
  }
}

/* -----   Video  ----- */
/* .video-card {
  position: relative;
  height: 700px;
  border-radius: 35px;
  overflow: hidden;
  cursor: pointer;
  margin: 30px 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: 0.5s ease;
}

.video-card:hover .overlay {
  background: rgba(0, 0, 0, 0.3);
}

.video-card .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1) !important;
  transition: 0.5s;
}

.video-card:hover .bg-image {
  transform: scale(1.1) !important;
  filter: blur(4px);
}

.video-card .video-logo {
  position: absolute;
  top: 45px;
  left: 45px;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-card .video-logo img {
  width: 130px;
}

.video-card .logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ff6968;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  color: #fff;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 5;
  transition: 0.5s;
}

.video-card .content {
  position: absolute;
  bottom: 45px;
  left: 45px;
  color: #fff;
  z-index: 5;
}

.video-card .duration {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
  font-size: 14px;
}

.video-card .content h2 {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 600;
}

.video-card .content p {
  font-size: 16px;
  opacity: 0.9;
}

.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 10;
}

@media (max-width: 768px) {
  .video-card {
    height: 500px;
  }

  .video-card .content h2 {
    font-size: 42px;
  }

  .video-card .content p {
    font-size: 16px;
  }

  .video-card .logo {
    font-size: 24px;
  }
} */

/* ===================================================== VIDEO SECTION ===================================================== */

.video-section-heading {
  padding-top: 140px;
}

.video-section {
  position: relative;
  width: 100%;
  margin-top: 50px;
}

/* ===================================================== VIDEO GALLERY ===================================================== */
.video-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  transition: opacity .35s ease, transform .35s ease;
}

/* ===================================================== VIDEO THUMB ===================================================== */
.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  background: #111;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
  border-radius: 50px;
}

.video-thumb:hover img {
  transform: scale(1.06);
}


.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  background: #111;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  border: 1px solid #ff6968;
}

.thumb-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-thumb:hover .thumb-video {
  transform: scale(1.06);
}

.thumb-video {
  transition: transform .6s ease;
}

/* ===================================================== OVERLAY ===================================================== */
.thumb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, .05) 20%, rgba(0, 0, 0, .15) 45%, rgba(0, 0, 0, .85) 100%); */
  background: #ffff;
}

/* ===================================================== PLAY BUTTON ===================================================== */
.thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: #111;
  font-size: 19px;
  padding-left: 3px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  transition: transform .3s ease, background .3s ease;
}

.video-thumb:hover .thumb-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}

/* ===================================================== THUMB CONTENT ===================================================== */
.thumb-content {
  position: absolute;
  left: 15px;
  right: 20px;
  bottom: 15px;
  z-index: 3;
  /* color: #fff; */
}

.thumb-timer {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  padding: 5px 9px;
  border-radius: 20px;
  /* background: rgba(255, 255, 255, .16); */
  background: rgb(255 240 240);
  backdrop-filter: blur(8px);
  color: #ff6968;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 11px;
  z-index: 9999;
}


.thumb-tags span {
  padding: 6px 12px;
  border-radius: 40px;
  background: #f5f5e9;
  font-size: 13px;
  color: #242424;
  font-weight: 500;
  background: var(--lightPrimary);
}

/* ===================================================== VIDEO VIEWER ===================================================== */
.video-viewer {
  position: relative;
  width: 100%;
  /* height: 700px; */
  /* max-height: 700px; */
  /* Responsive 16:9 player */
  aspect-ratio: 16 / 9;

  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .4s ease, transform .4s ease;
}

/* Active viewer */
.video-viewer.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================== VIDEO PLAYER ===================================================== */
#videoPlayer {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
}

/* ===================================================== CLOSE BUTTON ===================================================== */
.video-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: #111;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
  transition: transform .25s ease, background .25s ease;
}

.video-close:hover {
  transform: rotate(90deg) scale(1.08);
  background: #fff;
}

/* ===================================================== VIDEO INFO ===================================================== */
.video-info {
  padding: 18px 5px 0;
}

.video-info h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

/* ===================================================== HIDE GALLERY ===================================================== */
.video-section.video-playing .video-gallery {
  display: none;
}

/* ===================================================== MOBILE ===================================================== */
@media (max-width: 600px) {
  .video-gallery {
    grid-template-columns: 1fr;
  }

  #videoPlayer {
    border-radius: 14px;
  }

  .video-close {
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
  }

  .video-info h2 {
    font-size: 21px;
  }

  .video-viewer {
    scroll-margin-top: 150px;
  }
}


/* ============= */
.heading-wrap {
  overflow: hidden;
}

.reveal-text {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 500;
  color: #111;
  max-width: 700px;
  margin: 30px 0;
}

.reveal-text span {
  display: inline-block;
  opacity: 0;
  transform: scale(0.95);
  will-change: transform, opacity;
}

.reveal-text .gray {
  color: #6e6e6e;
}

.pipeline-card {
  background: #151515;
  border-radius: 35px;
  padding: 30px 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  overflow: hidden;
}

.feature-box {
  color: white;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.feature-box .icon {
  font-size: 28px;
  margin-bottom: 30px;
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-box p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 991px) {
  .pipeline-card {
    grid-template-columns: 1fr;
  }

  .heading-wrap h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .pipeline-card {
    padding: 25px;
    gap: 30px;
  }

  .feature-box .icon {
    margin-bottom: 10px;
  }
}

/*========================== CONSULTANCY  SECTION END  ==========================*/

/*========================== Team  SECTION START  ==========================*/

.team-section {
  padding: 100px 40px;
  max-width: 1600px;
  margin: auto;
}

.team-container {
  position: relative;
  overflow: hidden;
  padding: 50px;
  border-radius: 35px;
  background-color: #ff6968;
}

.team-logo {
  color: white;
  font-size: 30px;
  margin-bottom: 35px;
}

.team-logo img {
  width: 150px;
}

.team-header {
  margin-bottom: 90px;
}

.team-header .team-tag {
  color: #ffffff;
  font-size: 22px;
  display: inline-block;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.team-title {
  font-size: 65px;
  line-height: 1.1;
  color: white;
  margin: 20px 0;
}

.team-title .light {
  color: #ffffffbf;
}

/* .team-title .line { overflow: hidden; } */
.team-title span {
  display: inline-block;
  opacity: 0;
  transform: scale(0.9);
  will-change: transform, opacity;
}

.team-header .desc {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  max-width: 900px;
  display: inline-block;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  margin-bottom: 60px;
}

.team-member {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 100px;
  color: white;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.hover-bg {
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: circle(0% at 50% 100%);
  z-index: 0;
  pointer-events: none;
  will-change: clip-path;
}

.member-left,
.member-right {
  position: relative;
  z-index: 2;
}

.member-left h4,
.member-left p,
.member-right span {
  transition: 0.4s;
}

.member-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.member-left img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.member-left h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.member-left p {
  margin: 0;
  opacity: 0.7;
  font-size: 14px;
}

.member-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.member-right span {
  font-size: 12px;
}

.member-right .plus-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.member-right .plus-btn i {
  font-size: 13px;
}

@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-title {
    font-size: 50px;
  }
}

.hiring-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 60px;
}

.hiring-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 35px;
}

.hiring-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* height: 480px; */
  height: auto;
  clip-path: circle(0% at 50% 0%);
  transform: rotate(4deg);
  will-change: clip-path, transform;
}

.hiring-content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: white;
}

.hiring-content p {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 40px;
  color: white;
  opacity: 0.9;
}


@media (max-width: 768px) {
  .team-section {
    padding: 100px 20px;
  }

  .team-container {
    padding: 30px 20px;
  }

  .hiring-grid {
    grid-template-columns: 1fr;
  }

  /* .hiring-image-wrap .hiring-image {
    height: 280px;
  } */
}

/*========================== Team  SECTION END  ==========================*/



/*========================== TESTIMONIAL   SECTION START  ==========================*/

.testimonial-section {
  max-width: 1350px;
  margin: auto;
  padding: 100px 20px;
}

.testimonial-wrapper {
  position: relative;
  height: 700px;
  padding: 60px;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 20px;
}

.testimonial-wrapper .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: 0.5s ease;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background: url("https://framerusercontent.com/images/F1UsC3Qy2MBxr7spZdOv8SWIZpQ.jpg") center/cover;
}

.testimonial-title {
  position: absolute;
  top: 80px;
  left: 50px;
  font-size: 100px;
  color: #fff;
  font-weight: 500;
  z-index: 2;
  line-height: 1;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.testimonial-card {
  position: absolute;
  left: 50px;
  top: 150px;
  width: 370px;
  height: max-content;
  backdrop-filter: blur(10px);
  background-color: #ffffff59;
  box-shadow: 0px 0px 0px 1px #ffffffbf;
  padding: 30px;
  z-index: 10;
  color: #fff;
}

.testimonial-card {
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.testimonial-card h3 {
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.testimonial-card p {
  font-size: 15px;
}

.testimonial-card .line {
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 25px 0;
}

.testimonial-card .author {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.testimonial-card .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.testimonial-card .author .name {
  font-size: 15px;
}

.testimonial-card .author .position {
  font-size: 13px;
  font-weight: 400;
  color: #e6e6e6;
}

.testimonial-wrapper .rating {
  position: absolute;
  right: 50px;
  bottom: 50px;
  color: #fff;
  text-align: right;
  z-index: 2;
}

.testimonial-wrapper .rating span {
  font-size: 120px;
  line-height: 1;
}

.testimonial-wrapper .rating small {
  font-size: 40px;
}

.testimonial-wrapper .rating p {
  margin-top: -8px;
  font-size: 14px;
}

.testimonial-cards-wrap {
  display: flex;
  gap: 20px;
  background-color: #f5f5e9;
  padding: 10px;
  border-radius: 35px;
}

/* CARD */
.testimonial-phase-card {
  flex: 1;
  min-width: 0;
  height: 360px;
  background: #fffffa;
  border-radius: 35px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

/* top */
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-phase-card .dots {
  display: flex;
  gap: 6px;
}

.testimonial-phase-card .dots span {
  width: 8px;
  height: 8px;
  background: #ff6968;
  border-radius: 50%;
}

.plus {
  font-size: 35px;
  font-weight: 300;
  transition: 0.5s;
}

/* content */
.testimonial-content {
  opacity: 0.5;
  transform: translateY(12px);
}

.testimonial-content .quote {
  display: block;
  width: 100%;
  font-size: 15px;
  line-height: 1.5;
  word-spacing: normal;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  will-change: opacity, color;
}

/* bottom */
.testimonial-phase-card .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  opacity: 0.55;
  will-change: opacity;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%) brightness(1.15);
}

.user h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.user p {
  font-size: 14px;
  color: #777;
}

.testimonial-phase-card .logo {
  position: absolute;
  right: 0;
  bottom: 10px;
  font-size: 25px;
  font-weight: 600;
  opacity: 0;
}

.plus {
  font-size: 24px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .testimonial-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-phase-card {
    flex: none !important;
    width: 100%;
    height: auto;
    background: #fffffa;
    padding: 25px;
    gap: 16px;
  }

  /* show all content normally */
  .testimonial-content {
    opacity: 1 !important;
    transform: none !important;
  }

  .quote {
    font-size: 15px !important;
    line-height: 1.4 !important;
    opacity: 1 !important;
    color: #111 !important;
    font-weight: 500 !important;
  }

  .bottom {
    opacity: 1 !important;
    transform: none !important;
  }

  .testimonial-phase-card .logo {
    display: none;
  }

  .plus {
    display: none;
  }
}

/*========================== TESTIMONIAL   SECTION END   ==========================*/

/*========================== STATES   SECTION START  ==========================*/

.stats-section {
  max-width: 1350px;
  margin: auto;
  padding: 0 20px 70px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e3e3e373;
}

.stat-card {
  padding: 30px;
  border: 1px solid #e3e3e373;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-card:last-child {
  border-right: 1px solid #e3e3e373;
}

.stat-card .icon-wrapper {
  margin-left: auto;
}

.stat-card .icon {
  /* position: absolute;
  right: 35px;
  top: 35px; */
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f5f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: var(--lightPrimary);
}

.stat-card .icon i {
  font-size: px;
}

.stat-card h2 {
  font-size: 60px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  color: #ff6968;
}

.stat-card small {
  font-size: 28px;
  color: #ff6968;
  margin-left: 5px;
}

.stat-card p {
  font-size: 15px;
  line-height: 1.4;
  color: #616161;
  font-weight: 500;
  max-width: 200px;
}

.cta-row {
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  gap: 60px;
  padding: 70px 20px;
}

.logo-box .logo {
  font-size: 30px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 25px;
}

.logo-box .logo span {
  color: #ff6968;
}

.logo-box p {
  font-size: 13px;
  line-height: 1.4;
}

.cta-row .cta-content .text-1 {
  font-size: 28px;
  font-weight: 600;
  color: #616161;
  opacity: 0;
  transform: translateY(10px);
  will-change: transform, opacity;
}

.cta-row .cta-content .text-2 {
  font-size: 28px;
  font-weight: 600;
  color: #242424;
  opacity: 0;
  transform: translateY(10px);
  will-change: transform, opacity;
}

.cta-row .author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(10px);
  will-change: transform, opacity;
}

.cta-row .author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.cta-row .author strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}

.cta-row .author span {
  color: #666;
  font-size: 13px;
}

.cta-button {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.cta-button button {
  width: 100%;
}

@media (max-width: 1000px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .content h3 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/*========================== STATES   SECTION END  ==========================*/

/*========================== CASE STUDY  SECTION START  ==========================*/

.case-study-section {
  padding: 120px 20px;
}

.case-study-wrapper {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #f5f5e9;
  padding: 10px;
  border-radius: 34px;
}

.case-study-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-study-info {
  background: #fffffa;
  border-radius: 34px;
  padding: 30px;
}

.case-date {
  font-size: 15px;
  color: #777;
}

.case-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
  margin: 24px 0 50px;
}

.case-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.case-detail-row .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #f5f5e9;
  border-radius: 50px;
  width: max-content;
  font-size: 13px;
}

.case-detail-row span {
  font-size: 13px;
  color: #616161;
}

.case-study-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fffffa;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid #efefdf;
}

.stat-box {
  padding: 30px;
  position: relative;
  border-right: 1px solid #e3e3e373;
}

.stat-box:last-child {
  border-right: none;
}

.stat-icon .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5e9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.stat-box .count {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.stat-box .count h3 {
  font-size: 76px;
  font-weight: 500;
}

.stat-box .count span {
  font-size: 34px;
  color: #ff6968;
  margin-top: 10px;
  font-weight: 500;
}

.stat-box p {
  margin-top: 48px;
  font-size: 14px;
  color: #616161;
  font-weight: 600;
}

.case-study-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fffffa;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid #efefdf;
}

.case-study-right .services {
  padding: 30px;
}

.case-study-right .services h5 {
  font-size: 14px;
  margin-bottom: 16px;
}

.case-study-right .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-study-right .tags span {
  padding: 5px 10px;
  border-radius: 50px;
  background: #f5f5e9;
  font-size: 13px;
  color: #242424;
}

.case-study-right .tags .dark {
  background: #222;
  color: #fff;
}

.case-study-right .quote {
  padding: 30px;
  border-left: 1px solid #e3e3e373;
}

.case-study-right .dots {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.case-study-right .dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6968;
}

.case-study-right .quote p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #616161;
  font-weight: 600;
}

.case-study-right .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-study-right .author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.case-study-right .author span {
  font-size: 13px;
}

.case-study-right .image-card {
  background: #fffffa;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  border: 1px solid #efefdf;
}

.case-study-right .image-card img {
  width: 100%;
  display: block;
  height: 345px;
  object-fit: cover;
}

/* Center Content */
.case-study-right .image-card .image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  pointer-events: none;
}

.case-study-right .image-overlay h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.case-study-right .image-overlay .logo-icon {
  font-size: 38px;
  transform: rotate(20deg);
}

.case-study-right .case-study-btn,
.case-study-right .case-study-btn button {
  width: 100%;
  height: 100%;
  flex: 1;
  /* padding: 15px 20px; */
}

@media (max-width: 991px) {
  .case-study-wrapper {
    grid-template-columns: 1fr;
  }

  .case-title {
    font-size: 42px;
  }

  .case-top {
    grid-template-columns: 1fr;
  }

  .case-detail-row {
    /* grid-template-columns: 1fr; */
    gap: 15px;
  }

  .case-study-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .case-study-info {
    padding: 20px;
  }

  .case-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .case-study-stats .stat-box {
    padding: 20px;
  }

  .stat-box .count h3 {
    font-size: 60px;
  }

  .stat-box p {
    margin-top: 20px;
  }

  .case-study-right .services {
    padding: 20px;
  }

  .case-study-right .quote {
    padding: 20px;

  }
}

/*========================== CASE STUDY  SECTION END   ==========================*/

/*=========================   FAQ SECTION START   =========================*/
.faq-section {
  padding: 120px 20px;
}

.faq-container {
  max-width: 1350px;
  margin: auto;
}

/*========================= Heading =========================*/
.faq-heading {
  text-align: center;
  margin-bottom: 70px;
}

.faq-title {
  font-size: clamp(40px, 9vw, 60px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
  color: #111;
}

/*========================= Wrapper =========================*/
.faq-wrapper {
  background: #f5f5e9;
  border-radius: 34px;
  overflow: hidden;
  /* max-width: 700px;
  margin: 0 auto; */
  padding: 10px;

  border: 1px solid rgba(277, 277, 277, .35);
  background: rgba(227, 227, 227, 0.5);
  backdrop-filter: blur(10px);
}

/*========================= Tabs =========================*/
.faq-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* padding: 22px; */
  /* border-bottom: 1px solid #ececdc; */
  margin-bottom: 12px;
}

.faq-tab {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  transition: .35s;
  background: #ffffff;

}

/* .faq-tab:hover {
  background: #ffffff;
} */

.faq-tab.active {
  background: #ff6968;
  color: #fff;
}

/*========================= Tab Content =========================*/
.faq-content {
  display: none;
}

.faq-content.active {
  display: block;
}

/*========================= FAQ Item =========================*/
.faq-item {
  background-color: #fffffa;
  margin-bottom: 10px;
  border-radius: 30px;

  background: rgba(255, 255, 255, .5);
}

.faq-item.active {
  background-color: #ffffff;
}

.faq-item:last-child {
  border-bottom: none;
}

/*========================= Question =========================*/
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: #111;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  transition: .35s;
  flex-shrink: 0;

  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(18px);
}

.faq-icon i {
  font-size: 14px;
  transition: .3s ease;
  color: #616161;
}

.faq-item.active .faq-icon {
  /* background: #f5f5e9; */
  background: var(--lightPrimary);
}

/*========================= Answer =========================*/
.faq-answer {
  height: 0;
  overflow: hidden;
}

.faq-answer p {
  padding: 0 25px 14px;
  max-width: 760px;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* ===================================================== FAQ FORM INPUTS  ===================================================== */
.faq-input {
  width: 100%;
  padding: 0 25px 15px;
  box-sizing: border-box;
}

.faq-input input,
.faq-input textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  outline: none;
  /* soft gray from screenshot */
  background: rgba(255, 255, 255, 0.72);
  color: #111827;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.faq-input input {
  height: 48px;
  min-height: 48px;
}

.faq-input textarea {
  min-height: 105px;
  border-radius: 16px;
  resize: vertical;
}

.faq-input input::placeholder,
.faq-input textarea::placeholder {
  color: #666b73;
  opacity: 1;
}

.faq-input input:focus,
.faq-input textarea:focus {
  background: #ffffff;
  border-color: #ff6968;
  box-shadow: 0 0 0 3px rgba(255, 105, 104, 0.16);
}

.faq-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 25px;
}

/* ===================================================== MOBILE ===================================================== */
@media (max-width: 600px) {
  .faq-input {
    padding: 12px 15px;
  }

  .faq-input input,
  .faq-input textarea {
    font-size: 14px;
  }

  .faq-input input {
    height: 46px;
    min-height: 46px;
  }

  .faq-input textarea {
    min-height: 100px;
  }

  .faq-submit {
    margin-top: 20px;
  }
}

/*========================= Active Item =========================*/
.faq-item.active .faq-icon i {
  /* background: #69ddb8; */
  /* color: #fff; */
  transform: rotate(180deg);
}

/*========================= Contact Card =========================*/
.faq-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: #f5f5e9;
  border-radius: 34px;
  overflow: hidden;
  max-width: 700px;
  margin: 20px auto;
}

/*========================= Avatars =========================*/
.faq-avatars {
  display: flex;
}

.faq-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #fffffa;
  margin-left: -18px;
}

.faq-avatars img:first-child {
  margin-left: 0;
}

/*========================= Contact Text =========================*/
.faq-contact-center h3 {
  font-size: 34px;
  font-weight: 500;
  font-size: 14px;
  color: #616161;
}

.faq-contact-center p {
  font-size: 28px;
  color: #242424;
  line-height: 1.7;
  font-weight: 600;
}

/*========================= Button =========================*/
.faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  border-radius: 60px;
  text-decoration: none;
  background: #111;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: .35s;
}

.faq-btn:hover {
  transform: translateY(-4px);
  background: #222;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

/*========================= Responsive =========================*/
@media (max-width:991px) {
  .faq-question {
    padding: 20x;
  }

  .faq-question span:first-child {
    font-size: 22px;
  }

  /* .faq-answer p {
    padding: 0 28px 28px;
    font-size: 17px;
  } */

  .faq-contact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-contact-right {
    width: 100%;
  }

  .faq-tabs {
    overflow: auto;
    white-space: nowrap;
  }
}

@media(max-width:600px) {
  .faq-title {
    font-size: 40px;
  }

  .faq-tab {
    padding: 12px 20px;
    font-size: 15px;
  }

  .faq-question {
    padding: 24px;
  }

  .faq-question span:first-child {
    font-size: 20px;
  }

  .faq-contact {
    flex-wrap: wrap;
    justify-content: center;
  }

}

/*=========================   FAQ SECTION END   =========================*/


/*=========================   INSIGHTS SECTION START   =========================*/

.insights-section {
  padding: 70px 20px;
  max-width: 1350px;
  margin: 0 auto;
}

/* .insights-container {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 60px;
  align-items: flex-start;
} */

/*========================== Left Side ==========================*/
.insights-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* min-height: 500px; */
  /* position: sticky; top: 120px; */
}

.insights-title {
  font-size: clamp(35px, 8vw, 60px);
  line-height: .9;
  letter-spacing: -.05em;
  font-weight: 500;
  color: #171717;
  margin-bottom: 35px;
  opacity: 0;
  transform: scale(0.7);
  will-change: transform, opacity;
}

.insights-desc {
  font-size: 20px;
  line-height: 1.2;
  color: #616161;
  font-weight: 600;
  opacity: 0;
  transform: scale(0.7);
  will-change: transform, opacity;
}

.insights-left .klarn-btn {
  width: max-content;
}

/*========================== Button ==========================*/
.btn-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  transition: .45s;
}

/*========================== Cards ==========================*/
.insights-right {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; */

  margin-top: 40px;
  display: flex;
  gap: 30px;

  /* width: max-content; */
}

/* ============================== */
/* .insights-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.insights-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.insight-card {
  flex: 0 0 400px;
  width: 400px;
  height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.insight-card .card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.insight-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform .45s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: auto;
}

.insight-card:hover img {
  transform: scale(1.05);
} */

.insights-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.insights-track {
  display: flex;
  align-items: stretch;
  gap: 30px;
  will-change: transform;
}

.insight-card {
  position: relative;
  flex: 0 0 400px;
  width: 400px;
  height: 520px;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  cursor: pointer;
}

.card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* transition: transform .6s ease; */
  transition: 1s cubic-bezier(.2, .8, .2, 1);
}

.insight-card:hover img {
  transform: scale(1.06);
  filter: blur(6px);
}

/*========================== Overlay ==========================*/
.insight-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .70) 0%, rgba(0, 0, 0, .45) 35%, rgba(0, 0, 0, .10) 65%, rgba(0, 0, 0, .10) 100%);
}

/*========================== Badge ==========================*/
.insight-card .card-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  padding: 6px 8px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 500;
}

.insight-card .badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  font-size: 14px;
}

/*========================== Content ==========================*/
.insight-card .card-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 10;
}

.insight-card .card-date {
  display: block;
  color: #fff;
  opacity: .9;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 500;
}

.insight-card .card-title {
  color: #fff;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -.03em;
  font-weight: 500;
  min-height: 60px;
}

/* .insight-card .card-title span {
  font-size: 20px;
} */

.insight-card .card-desc {
  font-size: 16px;
  color: #fff;
  min-height: 42px;
}

/*========================== Responsive ==========================*/
@media(max-width:1100px) {
  .insights-container {
    grid-template-columns: 1fr;
  }

  .insights-left {
    position: relative;
    top: 0;
    min-height: auto;
    margin-bottom: 60px;
  }

  .insights-right {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .insights-title {
    font-size: 62px;
  }

  .insight-card {
    height: 520px;
  }

  .insights-left {
    margin-bottom: 0;
  }

  .insights-desc {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .insight-card .card-title {
    font-size: 22px;
  }

  .insight-card .card-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
}

@media(max-width:500px) {
  .insights-section {
    padding: 80px 16px;
  }

  .insights-title {
    font-size: 54px;
  }

  .insights-desc {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .insight-card {
    height: 440px;
  }

  .insight-card .card-badge {
    left: 16px;
    top: 16px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .insight-card .card-title {
    font-size: 20px;
    min-height: 26px;
  }
}

/*=========================   INSIGHTS SECTION END    =========================*/

/* ======================================= */
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========================= FOOTER SECTION START  ========================= */
.footer-reveal {
  position: relative;
  overflow: hidden;
}

.footer-circle {
  position: fixed;
  left: 50%;
  bottom: -85vw;
  width: 260vw;
  height: 260vw;
  transform: translateX(-50%) scale(.18);
  transform-origin: center bottom;
  border-radius: 50%;
  background: #ff6968;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}

.footer-stage {
  position: relative;
  z-index: 5;
  padding: 12px;
}

.footer {
  position: relative;
  /* background: #f5f5e9; */
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  padding: 120px 50px 0;
  max-width: 1350px;
  margin: 30px auto;
}

/* ========================= GRID ========================= */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* ========================= LEFT ========================= */
.footer-left {
  display: flex;
  flex-direction: column;
}

/* .footer-logo img {
  height: 26px;
} */

.footer-logo .logo {
  font-size: 30px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo .address {
  margin-top: 20px;
}

.footer-logo .address p {
  font-size: 13px;
  line-height: 1.3;
  color: #616161;
  font-weight: 600;
}

.footer-right {
  padding-left: 150px;
}

/* ========================= SOCIAL ========================= */
.footer-social {
  margin-top: 60px;
}

.footer-social h5,
.footer-legal h5,
.footer-nav h5 {
  font-size: 13px;
  font-weight: 600;
  color: #616161;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #222;
  background: var(--lightPrimary);
}

.footer-title {
  color: var(--fill);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 20px;
}

/* ========================= LEGAL ========================= */
.footer-legal {
  margin-top: 60px;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  font-size: 14px;
  color: #242424;
  font-weight: 600;
}

.legal-links a:hover {
  color: var(--fill);
}

/* ========================= RIGHT ========================= */
.footer-heading {
  /* max-width: 560px; */
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  color: #242424;
  margin-top: 20px;
}

.footer-heading span {
  color: #616161;
}

.founder {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.founder h4 {
  font-size: 18px;
  font-weight: 600;
}

.founder p {
  font-size: 14px;
  color: #616161;
  margin-top: 4px;
}

/* ========================= CONTACT ========================= */
.contact-info {
  margin-top: 40px;
}

.contact-info .phone {
  font-size: 14px;
  color: #242424;
  margin-bottom: 8px;
}

.contact-info .email {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info .mail-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff6968;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info .email a {
  font-size: 23px;
  font-weight: 600;
  color: #242424;
}

/* ========================= NAVIGATION ========================= */
.footer-nav {
  margin-top: 10px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav a {
  font-size: 25px;
  line-height: 1;
  color: #242424;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--fill);
}

/* ========================= BIG BRAND ========================= */
.footer-bottom {
  margin-top: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-brand {
  flex: 1;
}

.footer-brand .footer-brand-name {
  /* font-size: 300px;
  line-height: .75;
  font-weight: 700;
  letter-spacing: -20px;
  color: #ff6968; */
  font-size: clamp(80px, 20vw, 300px);
  line-height: .75;
  font-weight: 700;
  letter-spacing: clamp(-5px, -1.3vw, -22px);
  color: #ff6968;
  /* text-align: center; */
}

.footer-copy {
  font-size: 13px;
  color: #616161;
  z-index: 2;
  margin-bottom: 20px;
  font-weight: 600;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width:991px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-right {
    padding-left: 0;
  }

  .footer-heading {
    /* font-size: 40px; */
    width: 100%;
    max-width: max-content;
  }

  .footer-nav {
    margin-top: 30px;
  }

  .footer-nav a {
    font-size: 32px;
  }

  /* .footer-brand h1 {
    font-size: 220px;
  } */
}

@media (max-width:768px) {
  .footer {
    padding: 40px 25px 0;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 30px;
    margin-top: 50px;
  }

  .newsletter h2 {
    font-size: 30px;
  }

  /* 
  .footer-heading {
    font-size: 38px;
  } */

  .email a {
    font-size: 24px;
  }

  .footer-brand {
    left: 20px;
    bottom: -60px;
  }

  .footer-brand h1 {
    font-size: 28vw;
  }

}

@media (max-width:600px) {
  .footer {
    padding: 40px 20px 0;
  }

  /* .footer-heading {
    font-size: 25px;
    line-height: 1.2;
  } */

  .footer-circle {
    display: none;
  }
}

/* ========================= FOOTER SECTION END  ========================= */


/*========================================== PRICING SECTION  START ==========================================*/
.pricing-section {
  background: #1f1f1f;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin: 0 30px;
  padding: 110px 30px;
}

.pricing-container {
  max-width: 1350px;
  margin: 0 auto;
  /* display: grid;
  grid-template-columns: 480px 1fr;
  gap: 28px;
  align-items: start; */
}

/*========================================== LEFT ==========================================*/
/* .pricing-left {
  position: sticky;
  top: 120px;
} */

.pricing-wrapper {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 20px;
  align-items: start;
}

/*========================================== TITLE ==========================================*/
.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.pricing-title {
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: -2px;
  font-weight: 600;
  color: #fcfcfa;
  margin-bottom: 70px;
}

.pricing-title span {
  color: #ffffffbf;

  opacity: 0;
  transform: scale(0.7);
  will-change: transform, opacity;
}

.pricing-container .pricing-trusted {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-bottom: 55px;
}

.pricing-container .trusted-avatars {
  display: flex;
  align-items: center;
}

.pricing-container .trusted-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1f1f1f;
  margin-left: -10px;
}

.pricing-container .trusted-avatars img:first-child {
  margin-left: 0;
}

.pricing-container .trusted-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-container .trusted-dots {
  display: flex;
  gap: 7px;
}

.pricing-container .trusted-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6968;
}

.pricing-container .trusted-content p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

/*========================================== LIST WRAPPER ==========================================*/
.pricing-list {
  background: #f5f5e9;
  border-radius: 34px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

/*========================================== PRICING ITEM ==========================================*/
.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fffffa;
  border-radius: 28px;
  padding: 15px;
  cursor: pointer;
  transition: .35s ease;
  border: 1px solid transparent;
  position: relative;
}


/*========================================== ACTIVE ==========================================*/
.pricing-item.active {
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
  border-color: #e8e6d8;
}

/*========================================== LEFT SIDE ==========================================*/
.plan-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

/*========================================== ICON ==========================================*/
.plan-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5eb;
  font-size: 16px;
  flex-shrink: 0;
}

/*========================================== TITLE ==========================================*/
.plan-left h3 {
  font-size: 18px;
  font-weight: 600;
  color: #242424;
  margin-bottom: 6px;
  line-height: 1;
}

.plan-left p {
  font-size: 15px;
  color: #616161;
  line-height: 1.3;
  font-weight: 600;
}

/*========================================== TITLE ROW ==========================================*/
.plan-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

/*========================================== POPULAR ==========================================*/
.popular-tag {
  background: #ff6968;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
}

/*========================================== RIGHT ==========================================*/
.plan-right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;

}

/*========================================== CHECK ==========================================*/
.plan-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ececec;
  transition: .35s;
  position: relative;
  flex-shrink: 0;
}

.plan-check.active {
  background: #1f1f1f;
}

.plan-check.active::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/*========================================== NOTE ==========================================*/
.pricing-note {
  margin-top: 42px;
}

.pricing-note p {
  color: #e6e6e6;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
}

.pricing-note span {
  color: #ff6968;
  font-weight: 700;
}

/*========================================== PERSON ==========================================*/
.pricing-person {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pricing-person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.pricing-person h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-person p {
  color: #e6e6e6;
  font-size: 13px;
}

/*========================================== RIGHT PANEL ==========================================*/
.pricing-right {
  background: #3d3d3d;
  border-radius: 34px;
  padding: 48px;
  /* min-height: 720px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* position: sticky;
  top: 120px;
  transition: .45s ease; */

  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

/*========================================== TOP ==========================================*/
.pricing-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.pricing-card-top .starts-text {
  display: block;
  font-size: 13px;
  color: #fcfcfa;
  margin-bottom: 14px;
  font-weight: 500;
}

/*========================================== PRICE ==========================================*/
.pricing-card-top .price {
  font-size: 60px;
  line-height: .9;
  letter-spacing: -5px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.pricing-card-top .price span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -1px;
}

/*========================================== DESCRIPTION ==========================================*/
.pricing-description {
  margin: 30px 0 50px;
  font-size: 15px;
  line-height: 1.5;
  color: #fcfcfa;
  max-width: 400px;
  font-weight: 500;
}

/*========================================== FEATURES ==========================================*/

.pricing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  background: none;
  border: none;
  padding: 0;
  backdrop-filter: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature span:last-child {
  flex: 1;
}

/*========================================== BUTTON ==========================================*/
.pricing-container .pricing-btn,
.pricing-container .pricing-btn button {
  width: 100%;
  padding: 15px 20px;
  flex: 1 0 0;
}

/*========================================== RESPONSIVE ==========================================*/
@media(max-width:1100px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }

  .pricing-left,
  .pricing-right {
    position: relative;
    top: auto;
  }

  .pricing-title {
    font-size: 64px;
  }

  .price {
    font-size: 72px;
  }

  .pricing-features {
    grid-template-columns: 1fr;
  }
}

@media(max-width:992px) {
  .pricing-features {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
  }

}


@media(max-width:768px) {
  .pricing-right {
    padding: 32px;
    min-height: auto;
  }

  .pricing-card-top {
    flex-direction: column;
    gap: 24px;
  }

  .pricing-title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .price {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .pricing-description {
    font-size: 20px;
  }
}

/* ========================= FOOTER SECTION END  ========================= */




/* ============================================================================ */
/*========================================== CONTACT SECTION START ==========================================*/
/* ============================================================================ */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: #5f89a9;
  margin: 30px;
  border-radius: 40px;
  z-index: 2;

  transform-origin: center center;
  will-change: transform;

}

/*========================================== BACKGROUND IMAGE ==========================================*/
.contact-bg {
  position: absolute;
  inset: 0;
  background: url("./assets/img/bg.jpg") center center/cover no-repeat;
  z-index: 1;
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(24, 46, 63, .22), rgba(26, 78, 122, .08)); */
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(2px);
}

/* Canvas Background */
#contactCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* Dark Overlay */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(2px);
  z-index: 2;
}

/*========================================== CONTAINER ==========================================*/
.contact-section .container {
  position: relative;
  z-index: 5;
  padding: 0 40px;
}

/*========================================== MAIN GRID ==========================================*/
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  /* max-width: 1350px;
  margin: 0 auto; */
  align-items: center;
}

/*========================================== LEFT ==========================================*/
.contact-left {
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
  /* padding: 20px 0; */
}

/*========================================== RESPONSIVE ==========================================*/
@media(max-width:1100px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-right {
    justify-content: center;
  }

}

@media(max-width:768px) {
  .contact-section {
    padding: 70px 0;
    margin: 0 20px;
  }

  .contact-section .container {
    padding: 0 20px;
  }

  .contact-wrapper {
    gap: 45px;
  }
}

/*========================================== LEFT CONTENT ==========================================*/
/* .contact-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
} */

/*========================================== BIG TITLE ==========================================*/
.contact-title {
  /* font-size: clamp(70px, 8vw, 70px); */
  font-size: 54px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  margin: 0;
  /* max-width: 450px; */
}

.contact-title span {
  display: inline-block;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

/*========================================== FEATURES ==========================================*/
.contact-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 10px;

  transform: translateX(50px) translateY(20px) scale(.85);
  opacity: 0;
  will-change: transform, opacity;
}

.contact-feature .feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-feature span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

/*========================================== TESTIMONIAL ==========================================*/
.contact-testimonial {
  margin-top: auto;
  max-width: 480px;
  /* padding-top: 90px; */
  padding-top: 60px;
}

.contact-testimonial .dots {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.contact-testimonial .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6968;
}

.contact-testimonial .quote {
  color: #fff;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
}

/*========================================== PERSON ==========================================*/
.contact-testimonial .quote-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.contact-testimonial .quote-person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-testimonial .quote-person h4 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 5px;
  font-weight: 600;
}

.contact-testimonial .quote-person p {
  color: #e6e6e6;
  font-size: 13px;
  margin: 0;
}

/*========================================== RESPONSIVE ==========================================*/
@media(max-width:991px) {
  .contact-title {
    font-size: 72px;
  }

  .contact-feature span {
    font-size: 19px;
  }

  .quote {
    font-size: 34px;
  }
}

@media(max-width:768px) {
  .contact-title {
    font-size: 58px;
    letter-spacing: -2px;
  }

  .contact-features {
    margin-top: 45px;
  }

  .contact-testimonial {
    padding-top: 70px;
  }

  .quote {
    font-size: 28px;
  }
}

/*========================================== CONTACT CARD ==========================================*/
.contact-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* padding: 28px 28px 0; */
  border: 1px solid rgba(277, 277, 277, .35);
  background: rgba(227, 227, 227, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: rgba(255, 255, 255, 0.75);

  opacity: 0;
  transform: scale(0.7);
  will-change: transform, opacity;
}

/*========================================== LOGO ==========================================*/
.contact-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 30px 0;
}

.contact-logo img {
  width: 150px;
}

.contact-logo span {
  color: #1d1d1d;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.4px;
}

/*========================================== HEADING ==========================================*/
.contact-card .contact-heading {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  color: #242424;
  padding: 0 30px;
}

.contact-card .contact-heading span {
  color: #3d3d3d;
}

/*========================================== FORM ==========================================*/
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 30px;
}

/*========================================== ROW ==========================================*/
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/*========================================== GROUP ==========================================*/
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #242424;
}

/*========================================== INPUTS ==========================================*/
.form-group input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(18px);
  color: #222;
  font-size: 14px;
  transition: .35s;
}

.form-group input::placeholder {
  color: #707070;
}

.form-group input:focus {
  background: #fff;
}

/*========================================== TEXTAREA ==========================================*/
.form-group textarea {
  width: 100%;
  min-height: 120px;
  resize: none;
  border: none;
  outline: none;
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(18px);
  font-size: 16px;
  color: #222;
  transition: .35s;
}

.form-group textarea::placeholder {
  color: #707070;
}

.form-group textarea:focus {
  background: #fff;
}

/*========================================== RESPONSIVE ==========================================*/
@media(max-width:768px) {
  .contact-card {
    padding: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card .contact-heading {
    font-size: 22px;
  }
}

/*========================================== PILL BUTTONS ==========================================*/
/* .pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 13px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #222;
  font-size: 15px;
  font-weight: 500;
  transition: .35s;
}

.pill:hover {
  background: #fff;
  transform: translateY(-2px);
}

.pill.active {
  background: #ff6968;
  color: #fff;
} */

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill-item {
  cursor: pointer;
}

.pill-item input {
  display: none;
}

.pill-item .pill-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #242424;
  font-size: 13px;
  font-weight: 500;
  transition: .35s ease;
}

/*=========================
    CIRCLE
=========================*/

.pill-item .pill-btn .icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: .3s;
  margin-bottom: 0;
}

.pill-item .pill-btn .icon::before {
  content: "✓";
  font-size: 11px;
  font-weight: 700;
  color: #535353;
  opacity: 0;
  transform: scale(.4);
  transition: .25s;
}

/*=========================
    ACTIVE
=========================*/

/* .pill-item input:checked+.pill-btn {
  background: rgba(255, 255, 255, .55);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .5),
    0 8px 16px rgba(0, 0, 0, .08);
} */

.pill-item input:checked+.pill-btn .icon {
  background: #fff;
}

.pill-item input:checked+.pill-btn .icon::before {

  opacity: 1;
  transform: scale(1);
}

/*========================================== CHECKBOX ==========================================*/
/*=========================
    AGREEMENT
=========================*/

.agree-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.agree-check input {
  display: none;
}

.check-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
  flex-shrink: 0;
}

.check-circle::before {
  content: "✓";
  color: #444;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: scale(.5);
  transition: .25s ease;
}

.agree-check input:checked+.check-circle {
  background: #fff;
}

.agree-check input:checked+.check-circle::before {
  opacity: 1;
  transform: scale(1);
}

.agree-text {
  color: #242424;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

/*========================================== CARD FOOTER ==========================================*/
.contact-card-footer {
  padding: 30px;
  border-top: 1px solid rgba(277, 277, 277, .35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-card-footer p {
  max-width: 180px;
  color: #242424;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/*========================================== BUTTON ==========================================*/
.contact-btn {
  position: relative;
  width: 130px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-weight: 600;
  color: #111;
  transition: .35s;
  padding: 10px 15px;
  cursor: pointer;
}

.contact-btn .btn-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.contact-btn .btn-text,
.contact-btn .btn-text-hover {
  position: relative;
  z-index: 2;
  transition: .45s;
}

.contact-btn .btn-text-hover {
  position: absolute;
  color: #fff;
  transform: translateY(160%);
}

.contact-btn .btn-dot {
  position: absolute;
  right: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6968;
  z-index: 3;
  transition: .45s;
}

/*========================================== BUTTON HOVER ==========================================*/
.contact-btn:hover .btn-bg {
  transform: translate(-50%, -50%) scale(22);
}

.contact-btn:hover .btn-text {
  transform: translateY(-170%);
  color: #fff;
}

.contact-btn:hover .btn-text-hover {
  transform: translateY(0);
}

.contact-btn:hover .btn-dot {
  background: #fff;
}

/*========================================== RESPONSIVE ==========================================*/
@media(max-width:768px) {
  .contact-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-btn {
    width: 100%;
  }
}

/* ========================= CONTACT  SECTION END  ========================= */

/*========================== PRESENCE SECTION START ==========================*/

.presence-section {
  max-width: 1500px;
  margin: auto;
  padding: 70px 20px;
}

.presence-wrapper {
  display: flex;
  align-items: stretch;
  /* min-height: 700px; */
  border-radius: 40px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #e3e3e373;
}

/*==================================================== LEFT ====================================================*/
.presence-left {
  width: 35%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fffffa;
  position: relative;
  z-index: 5;
  background: var(--lightPrimary);
}

.presence-label {
  display: inline-block;
  margin-bottom: 24px;
  color: #ff6968;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(.8);
  will-change: transform, opacity;
}

.presence-title {
  font-size: 60px;
  line-height: .95;
  font-weight: 700;
  color: #242424;
  margin-bottom: 35px;
  opacity: 0;
  transform: scale(.8);
  will-change: transform, opacity;
}

.presence-title span {
  color: #ff6968;
}

.presence-desc {
  /* max-width: 460px; */
  font-size: 18px;
  line-height: 1.6;
  color: #242424;
  opacity: 0;
  transform: scale(.8);
  will-change: transform, opacity;
}

.presence-stats {
  display: flex;
  gap: 55px;
  margin-top: 70px;

}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item span {
  color: #ff6968;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.stat-item p {
  margin-top: 10px;
  color: #242424;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/*==================================================== RIGHT ====================================================*/
/* .presence-right {
  width: 60%;
  position: relative;
  overflow: hidden;
}

.presence-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .8s ease;
} */

.presence-right {
  width: 65%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presence-right img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.location {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 20;
}

/* Marker */

.marker {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff5b5b;
  border: 4px solid #fff;
  box-shadow:
    0 0 0 8px rgba(255, 91, 91, .18),
    0 0 25px rgba(255, 91, 91, .45);
}

.marker::before,
.marker::after {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 91, 91, .35);
}

.marker::before {
  width: 30px;
  height: 30px;
  animation: pulse 2s linear infinite;
}

.marker::after {
  width: 50px;
  height: 50px;
  animation: pulse 2s linear .6s infinite;
}

@keyframes pulse {

  0% {
    transform: translate(-50%, -50%) scale(.4);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }

}

.location-label {
  position: absolute;
  /* background: #fff;
  border-radius: 14px;
  padding: 6px 8px; */
  font-size: 14px;
  font-weight: 600;
  color: #242424;
  color: var(--fill);
  white-space: nowrap;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, .12); */
}

.location-label.top {
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
}

.location-label.right {
  left: 34px;
  top: -18px;
}

.line {
  position: absolute;
  width: 1px;
  height: 40px;
  background: #ff5b5b;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
}

.dubai {
  left: 30%;
  top: 49%;
}

.delhi {
  left: 54.5%;
  top: 44.5%;
}

.mumbai {
  left: 50%;
  top: 60%;
}

.singapore {
  left: 87%;
  top: 83%;
}

/* @media (max-width:1260px) {
  .dubai {
    left: 20%;
    top: 32.4%;
  }

  .delhi {
    left: 40.4%;
    top: 26.2%;
  }

  .mumbai {
    left: 34%;
    top: 48%;
  }

  .singapore {
    left: 84%;
    top: 80.4%;
  }
} */

/* @media (max-width:1200px) {
  .dubai {
    left: 18.5%;
    top: 32.4%;
  }

  .delhi {
    left: 40.4%;
    top: 26.2%;
  }

  .mumbai {
    left: 35.5%;
    top: 48%;
  }

  .singapore {
    left: 80%;
    top: 80.4%;
  }
} */

@media (max-width:1100px) {

  .presence-wrapper {
    flex-direction: column;
  }

  .presence-left,
  .presence-right {
    width: 100%;
  }

  .marker {
    width: 15px;
    height: 15px;
  }

  .location-label {
    font-size: 16px;
  }

  .location-label.top {
    bottom: 58px;
  }

  .line {
    height: 34px;
  }

  /* .dubai {
    left: 21%;
    top: 32.5%;
  }

  .delhi {
    left: 42%;
    top: 28%;
  }

  .mumbai {
    left: 37%;
    top: 49%;
  }

  .singapore {
    left: 77.5%;
    top: 81%;
  } */

}

@media (max-width:768px) {

  .presence-right {
    overflow: visible;
  }

  .marker {
    width: 11px;
    height: 11px;
    border-width: 3px;
  }

  .marker::before {
    width: 24px;
    height: 24px;
  }

  .marker::after {
    width: 36px;
    height: 36px;
  }

  .location-label {
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 8px;
  }

  .location-label.top {
    bottom: 42px;
  }

  .location-label.right {
    left: 20px;
    top: -12px;
  }

  /* .line {
    height: 22px;
  }

  .dubai {
    left: 20.7%;
    top: 33%;
  }

  .delhi {
    left: 42.1%;
    top: 27.4%;
  }

  .mumbai {
    left: 37%;
    top: 49.4%;
  }

  .singapore {
    left: 77.6%;
    top: 81.3%;
  } */

}

/*--------------------------------*/
/* .presence-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 18, 40, .80) 0%, rgba(7, 18, 40, .35) 28%, rgba(7, 18, 40, .10) 45%, rgba(7, 18, 40, 0) 65%);
  z-index: 2;
}

.presence-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255, 105, 104, .08), transparent 60%);
  z-index: 3;
} */

/*==================================================== RESPONSIVE ====================================================*/
/* @media(max-width:1100px) {
  .presence-wrapper {
    flex-direction: column;
  }

  .presence-left,
  .presence-right {
    width: 100%;
  }

  .presence-right {
    height: 520px;
  }
}

@media(max-width:768px) {
  .presence-section {
    padding: 70px 20px;
  }

  .presence-left {
    padding: 55px 30px;
  }

  .presence-title {
    font-size: 54px;
  }

  .presence-desc {
    font-size: 17px;
    line-height: 1.7;
  }

  .presence-right {
    height: 360px;
  }

  .presence-stats {
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 45px;
  }

  .stat-item span {
    font-size: 34px;
  }
} */

/*========================== PRESENCE SECTION END ==========================*/


/*========================== PROBLEM SECTION START ==========================*/
.problem-section {
  padding: 70px 20px;
}

.problem-container {
  max-width: 1350px;
  margin: 0 auto;
}

.problem-heading {
  margin-bottom: 70px;
}

.problem-heading .eyebrow {
  display: inline-block;
  color: #ff6968;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.problem-heading .problem-heading-title {
  color: #242424;
  /* font-size: 60px; */
  font-size: clamp(35px, 8vw, 60px);
  line-height: 1;
  font-weight: 600;
  /* max-width: 700px; */
}

.problem-heading .problem-heading-title span {
  display: inline-block;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  background: #f5f5e9;
  padding: 10px;
  border-radius: 34px;
  background: var(--lightPrimary);
}

.problem-card {
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  padding: 25px;
  overflow: hidden;
  /* border: 1px solid #e3e3e373; */
  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: scale(0.8);
  will-change: transform, opacity;
}

/* Decorative glow */
/* .problem-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -130px;
  top: -130px;
  background: radial-gradient(rgba(255, 105, 104, .10), transparent 70%);
  pointer-events: none;
} */


.problem-card .card-title {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 600;
  color: #242424;
  margin-bottom: 26px;
  margin-top: 10px;
}

.problem-card .problem-text {
  font-size: 17px;
  line-height: 1.7;
  color: #5d5d5d;
  min-height: 100px;
}

.problem-card hr {
  border: none;
  height: 1px;
  background: #e3e3e373;
  margin: 28px 0;
}

.problem-card .bring-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #ff6968;
  text-transform: uppercase;
}

/* 
.problem-card .bring-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6968;
} */

.problem-card ul {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin-bottom: 20px;
}

.problem-card li {
  list-style: none;
  position: relative;
  padding-left: 40px;
  color: #616161;
  font-size: 17px;
  line-height: 1.6;
}

/* Bullet Circle */
.problem-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff6968;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.problem-card .card-statement {
  display: block;
  margin-top: auto;
  margin-top: 36px;

  font-size: 15px;
  /* font-weight: 500; */
  color: #ff6968;
  line-height: 1.5;
  min-height: 45px;
}


@media(max-width:991px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-card .problem-text {
    min-height: auto;
  }
}

@media(max-width:600px) {
  .problem-heading .problem-heading-title {
    font-size: 40px;
  }

  .problem-card {
    padding: 20px;
  }
}


/*========================== PROBLEM SECTION END ==========================*/


/*========================================== Button ==========================================*/
.klarn-btn {
  --base: #f6f5ea;
  --fill: #61c79d;
  --text: #27271f;
  --hoverText: #fff;
  --icon: #fff;
  --hoverIcon: var(--hoverText);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: none;
  border-radius: 999px;
  background: var(--base);
  overflow: hidden;
  cursor: pointer;
}

.klarn-btn .fill {
  position: absolute;
  width: 22px;
  height: 22px;
  left: 50%;
  bottom: -11px;
  border-radius: 50%;
  background: var(--fill);
  transform: translateX(-50%) scale(0);
}

.klarn-btn .mask {
  position: relative;
  z-index: 1;
}

.klarn-btn .label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transform-origin: center;
}

.klarn-btn .default {
  color: var(--text);
}

.klarn-btn .hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hoverText);
  opacity: 0;
  transform: translateY(24px) rotate(-24deg) scale(.86);
}

.default .btn-icon {
  color: var(--icon);
}

.hover .btn-icon {
  color: var(--hoverIcon);
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.page-overlay.show {
  opacity: 1;
}

.hidden {
  display: none;
}

/*==================================================
POPUP OVERLAY
==================================================*/
.product-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: rgba(10, 18, 28, .65); */
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .35s ease;
}

.product-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*================================================== POPUP ==================================================*/
.product-popup {
  position: relative;
  width: min(850px, 95vw);
  max-height: 90vh;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  /* box-shadow: 0 25px 80px rgba(0, 0, 0, .22), 0 10px 30px rgba(0, 0, 0, .12); */
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: #FFE2DE;
}

body.popup-open {
  overflow: hidden;
}

/*================================================== ONLY SCROLL CONTAINER ==================================================*/
.popup-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  max-height: 90vh;
  background: #fff;
  border-radius: 30px;
}

/*================================================== CLOSE BUTTON ==================================================*/
.popup-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: var(--lightPrimary);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  z-index: 20;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, .12); */
}

.popup-close svg {
  width: 18px;
  height: 18px;
}

.popup-close:hover {
  background: #ff6968;
  color: #fff;
  transform: rotate(90deg);
}

/*================================================== HEADER ==================================================*/
.popup-header {
  padding: 15px 20px;
  border-bottom: 1px solid #e3e3e373;
}

.popup-title {
  font-size: 35px;
  font-weight: 700;
  color: #242424;
}

.popup-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: #616161;
  max-width: 650px;
}

/*================================================== BODY ==================================================*/
.popup-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  padding: 20px;
}

.popup-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popup-label {
  display: inline-flex;
  width: max-content;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--lightPrimary);
  color: var(--fill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

.popup-description {
  font-size: 16px;
  line-height: 1.5;
  color: #616161;
}

.popup-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: #616161;
  line-height: 1.3;
}

.popup-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fill);
}

/*================================================== FOOTER ==================================================*/
.popup-footer {
  padding: 15px;
  border-top: 1px solid #e3e3e373;
}

.popup-cta {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.popup-cta span {
  color: var(--fill);
}

/*================================================== MOBILE ==================================================*/
@media(max-width:768px) {
  .product-popup-overlay {
    padding: 15px;
    align-items: center;
    overflow: auto;
  }

  .product-popup {
    width: 95%;
    max-height: 92vh;
    border-radius: 24px;
  }

  .popup-wrapper {
    max-height: 92vh;
  }

  .popup-header {
    padding: 65px 24px 20px;
  }

  .popup-title {
    font-size: 30px;
  }

  .popup-subtitle {
    font-size: 15px;
  }

  .popup-body {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px;
  }

  .popup-cta {
    font-size: 18px;
  }
}