@import url(layout.min.css);
@import url('https://fonts.cdnfonts.com/css/dm-sans');

html {
  font-size: 16px;
}

* {
  font-family: 'DM Sans', sans-serif;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
}

:root {
  --white: #ffffff;
  --black: #000;
  --theme-color: #769CFF;
  --primary: #3F72F5;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.67;
  margin-bottom: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

h1 div {
  display: inline-block;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

figure {
  margin: 0;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* =========================
   HEADER / NAV
========================= */
.navbar-brand img {
  width: 16rem;
}

.headerNav {
  display: block;
}

.dropLinks li {
  flex: 0 0 48%;
}





/* ====== MEGA MENU BASE ====== */
.mega-dropdown {
  position: relative;
}

/* hover bridge to prevent gap issue */
.mega-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
}

.mega-menu {
  position: absolute;
  top: 3.6rem;
  left: 0;
  width: 100vw;
  background: #fff;
  z-index: 999;
  /* border-top: 2px solid #ccc; */
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 2rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  /* 🔥 upar se start */
  pointer-events: none;
}

.mega-menu li i {
  transform: rotate(-35deg);
  transition: transform 0.4s ease;
  color: #5180f8;
}

.list-unstyled li a:hover i.fal.fa-arrow-right {
  transform: rotate(0deg);
}

/* SHOW ON HOVER */
.mega-dropdown:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


/* Background image */
.mega-menu::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../images/mix/34.png") no-repeat right bottom;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}

/* Bottom marquee */
.mega-menu::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 4px;
  background: var(--primary);
  color: #fff;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

/* MENU LINKS */
.menu li a {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 400;
  text-transform: capitalize;
  padding: 8px 15px;
  /* height: 48px; */
  display: inline-flex;
  align-items: center;
}

/* ====== POSITION ADJUSTMENTS (SAFE) ====== */
.mega-dropdown:hover .mega-menu {
  left: -40.5rem;
}

.menu>li.mega-dropdown:nth-child(2):hover .mega-menu {
  left: -42rem;
}

.menu>li.mega-dropdown:nth-child(3):hover .mega-menu {
  left: -55.5rem;
}

.menu>li.mega-dropdown:nth-child(4):hover .mega-menu {
  left: -66.5rem;
}

.menu>li.mega-dropdown:nth-child(5):hover .mega-menu {
  left: -61rem;
}

.menu.navbar-nav>li:nth-child(5) .menu-under-line::before {
  width: 8.4rem;
}

.menu.navbar-nav>li:nth-child(5) .mega-menu .about-intro h4::after {
  width: 84.4%;
}

/* ====== ABOUT INTRO ====== */
.mega-menu .about-intro h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  position: relative;
}

.mega-menu .about-intro h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 93.4%;
  height: 1px;
  background: #5a87fa;
}

.mega-menu .about-intro p {
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
  margin: 2rem 0 0;
  color: #333;
}

/* ====== UNDER LINE ====== */
.menu-under-line {
  position: relative;
  padding-bottom: 8px;
  margin-top: 0;
}

/* .menu-under-line::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--theme-color), transparent);
}

.menu-under-line::before {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 2px;
  width: 72px;
  height: 1px;
  background: var(--theme-color);
  transform: rotate(230deg);
  transform-origin: left bottom;
} */
.about-intro {
  background: #fbfbfb;
  padding: 1.5rem;
  border-radius: 10px;
}

/* ====== LIST LINKS ====== */
.mega-menu ul {
  /* margin: 2rem 0 0; */
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mega-menu.inlinemenus ul {
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

.mega-menu ul li {
  list-style: none;
}

.mega-menu ul li a {
  font-size: 14px;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: normal;
}

.mega-menu ul li a:hover {
  color: #1a3760;
  text-decoration: underline;
}

/* .headerMenu .dropdown-menu {
  width: 300px;
} */

.menu li a {
  color: #000;
  font-weight: 500;
}

.callBtn {
  color: #000;
}

/* =========================
   HOME / BANNER
========================= */
.main-Banner {
  background: linear-gradient(to top, #DCE7F8, #DCE7F8);
  height: 100vh;
  display: flex;
  align-items: center;
  min-height: 46rem;
}

.innerBanner {
  display: flex;
  align-items: center;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

.innerBanner:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(359deg, #DCE7F8, transparent);
}

.bannertext h1 {
  font-size: 3rem;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--black);
}

.bannertext h1 span {
  color: var(--primary);
  font-style: italic;
}

/* .bannertext p {
  font-size: 16px;
} */

.bannerRight {
  position: absolute;
  top: 0;
  right: 0;
}

.bannertext {
  position: relative;
}

.bannerRight img {
  height: 32rem;
}

.bannertext img {
  width: 24rem;
  position: absolute;
  right: -4rem;
  z-index: 1;
}

/* =========================
   INNER BANNER
========================= */
.innerBanner {
  height: 70vh;
  padding-top: 12rem;
  min-height: 40rem;
}

/* =========================
   FORM SECTION
========================= */
.formSecBanner {
  padding: 0;
  position: relative;
  top: -3.5rem;
}

.formSecBanner .inner {
  background: #ffffff;
  padding: 2rem 2rem;
  border-radius: 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.formSecBanner .inputWrap {
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #d6e0ff;
  height: 2.8rem;
  display: flex;
  align-items: center;
  /* overflow: hidden; */
}

.formSecBanner .iconCircle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #769CFF, #3F72F5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.55rem 0 0.65rem;
  flex-shrink: 0;
}

.formSecBanner .iconCircle i {
  font-size: 13px;
  color: #ffffff;
}

.formSecBanner .inputWrap input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  color: #2c3e6b;
}

.formSecBanner .inputWrap input:focus {
  outline: none;
  box-shadow: none;
}

.formSecBanner .inputWrap input::placeholder {
  color: #b6b5b5;
}

.formSecBanner .inputWrap:focus-within {
  border-color: #769CFF;
  box-shadow: 0 0 0 1px rgba(118, 156, 255, 0.35);
}

.formSecBanner .themeBtn {
  /* width: 100%; */
  align-items: center;
  justify-content: center;
}

.formSecBanner .btnArrow {
  font-size: 0.8rem;
}

/* =========================
   BRAND SLIDER
========================= */
.brandSliderSec {
  padding: 2.5rem 0;
  background: #ffffff;
  text-align: center;
}

.brandSliderSec .trustText {
  font-size: 18px;
  letter-spacing: 1px;
  color: #9a9a9a;
  margin-bottom: 2rem;
  text-transform: capitalize;
}

.brandSwiper {
  width: 100%;
  overflow: hidden;
}

.brandSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brandSwiper img {
  /* max-height: 35px;
  filter: grayscale(100%); */
  width: auto;
  opacity: 0.55;
  transition: all 0.3s ease;
  max-height: 100px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(6%) saturate(420%) hue-rotate(185deg) brightness(95%) contrast(90%);
}

.brandSwiper img:hover {
  /* filter: grayscale(0%);
  opacity: 1; */
  transform: scale(1.05);
}

/* =========================
   ABOUT SECTION
========================= */
.aboutSec {
  background: #ffffff;
}

/* .aboutContent {
  margin-left: auto;
} */
/* .aboutTag {
  position: absolute;
  top: -60px;
  left: 14px;
  font-size: 64px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(118, 156, 255, 0.35);
  -webkit-background-clip: text;
}
.aboutSec h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000000;
}
.aboutSec h2 span {
  background: linear-gradient(135deg, #769CFF, #3F72F5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.aboutDesc {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 2rem;
} */
.aboutFeatures {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.aboutFeature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.featureIcon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.featureIcon.primary {
  background: linear-gradient(135deg, #769CFF, #3F72F5);
  color: #ffffff;
}

.featureIcon.neutral {
  background: #f3f4f6;
  color: #000000;
}

.featureText h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #000000;
}

.featureText p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.8;
}

/* .aboutSec img {
  width: 100%;
} */
/* =========================
   STATS SECTION
========================= */
.statsSec {
  background: #ffffff;
}

.statCard {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  min-height: 120px;
}

.statInner {
  position: relative;
  z-index: 2;
  padding: 2.4rem 4rem;
}

.statCard::before,
.statCard::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #769CFF, #3F72F5);
  border-radius: 10px;
  transform: rotate(45deg);
}

.statCard::before {
  width: 110px;
  height: 110px;
  top: -55px;
  right: -40px;
}

.statCard::after {
  width: 70px;
  height: 70px;
  left: -35px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.statNumber {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 0.35rem 0;
  color: #3F72F5;
}

.statLabel {
  margin: 0;
  /* font-size: 18px; */
  color: #6b7280;
}

.statLine {
  display: block;
  margin-top: 0.7rem;
  width: 100%;
  height: 1px;
  background: #d4d4d8;
}

/* =========================
   SERVICES SECTION
========================= */
.servicesSec {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #e9f0ff 0%, #ffffff 55%);
}

.servicesHead {
  position: relative;
  margin-bottom: 3rem;
}

/* .servicesTag {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 64px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(118, 156, 255, 0.35);
  background: linear-gradient(to bottom, rgba(118, 156, 255, 0.4), rgba(118, 156, 255, 0.05));
  -webkit-background-clip: text;
} */
/* .servicesTitle {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  z-index: 2;
} */
.servicesSec h2 {
  /* font-size: 40px; */
  /* font-weight: 700; */
  position: relative;
  z-index: 2;
}

.servicesSec p {
  font-size: 16px;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
}

/* Cards */
.serviceCard {
  position: relative;
  text-align: center;
  border-radius: 18px;
  padding: 2.7rem 1.6rem 2.8rem;
  background: linear-gradient(135deg, #769cff, #3f72f5);
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.35);
  transition: 0.3s ease;
}

.serviceTopLabel {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.5rem;
  border-radius: 999px;
  background: #020617;
  font-size: 12px;
}

.serviceCard h5 {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.5rem;
  border-radius: 999px;
  background: #020617;
  font-size: 12px;
  color: #ffffff;
}

/* .serviceName {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
} */
.serviceCard h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.serviceToggle {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%) rotate(0deg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background: #3f72f5;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.serviceDetails {
  margin-top: 1rem;
  background: #ffffff;
  border-radius: 14px;
  padding: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
}

.serviceCard.active .serviceDetails {
  padding: 1.1rem 1.2rem;
  max-height: 200px;
  opacity: 1;
}

.serviceCard p {
  margin-top: 1rem;
  background: #ffffff;
  border-radius: 14px;
  padding: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
}

.serviceCard.active p {
  padding: 1.1rem 1.2rem;
  max-height: 200px;
  opacity: 1;
}

.serviceCard.active .serviceToggle {
  transform: translateX(-50%) rotate(180deg);
  background: #ffffff;
  color: #3f72f5;
}

/* =========================
   PRICING SECTION
========================= */
.pricingSec {
  /* padding: 5rem 0; */
  background: #ffffff;
}

.pricingHead {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.pricingBgText {
  position: absolute;
  bottom: 50px;
  left: 0;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(118, 156, 255, 0.35);
  background: linear-gradient(to bottom, rgba(118, 156, 255, 0.4), rgba(118, 156, 255, 0.05));
  -webkit-background-clip: text;
}

.pricingSec h2 {
  /* font-size: 44px; */
  /* font-weight: 700; */
  color: #020617;
  margin-bottom: 0.4rem;
}

.pricingSec p {
  /* font-size: 16px; */
  color: #6b7280;
  line-height: 1.7;
  padding: 0 12rem;
}

/* .pricingSub {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  padding: 0 12rem;
} */
.pricingNav {
  position: absolute;
  right: 0;
  top: 4rem;
  display: flex;
  gap: 0.75rem;
}

.navBtn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.16);
}

.navBtn--light {
  background: #f9fafb;
  color: #000000;
}

.navBtn--primary {
  background: #3f72f5;
  color: #ffffff;
}

.pricingSwiper {
  padding-top: 1.5rem;
}

.pricingSwiper .swiper-wrapper {
  align-items: flex-end;
}

.pricingSwiper .swiper-slide {
  height: auto;
}

.pricingSec .btnDiv {
  text-align: center;
}

.pricingCard {
  border-radius: 24px;
  background: #f7f7f7;
  padding: 2rem 2rem 2.2rem;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #000000;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.pricingHeader {
  margin-bottom: 0.9rem;
}

.planName {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #3f72f5;
  margin-bottom: 0.2rem;
}

.planPrice .amount {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: #3f72f5;
}

.planPrice .feeText {
  font-size: 11px;
  text-transform: uppercase;
  color: #9ca3af;
}

.priceDivider {
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  margin: 0.5rem 0 0.9rem;
}

.pricingList {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.pricingList li {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 0.55rem;
  padding-left: 1.6rem;
  position: relative;
}

.pricingList li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #3f72f5;
  position: absolute;
  left: 0;
  top: 3px;
}

.pricingList li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 13px;
  height: 6px;
  border-left: 2px solid #3f72f5;
  border-bottom: 2px solid #3f72f5;
  transform: rotate(-45deg);
}

.planBtn {
  align-self: flex-start;
  padding: 0.7rem 1.9rem;
  border-radius: 999px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #3f72f5;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.planBtn--dark {
  background: #020617;
}

ul.pricingList {
  height: 16rem;
  overflow: auto;
}

.pricingSwiper .swiper-slide.pricing-active .pricingCard {
  background: linear-gradient(135deg, #769cff, #3f72f5);
  color: #ffffff;
  min-height: 500px;
}

.pricingSwiper .swiper-slide.pricing-active .planName,
.pricingSwiper .swiper-slide.pricing-active .planPrice .amount {
  color: #ffffff;
}

.pricingSwiper .swiper-slide.pricing-active .planPrice .feeText {
  color: rgba(241, 245, 249, 0.85);
}

.pricingSwiper .swiper-slide.pricing-active .priceDivider {
  border-top-color: rgba(241, 245, 249, 0.6);
}

.pricingSwiper .swiper-slide.pricing-active .pricingList li {
  color: #f9fafb;
}

.pricingSwiper .swiper-slide.pricing-active .pricingList li::before,
.pricingSwiper .swiper-slide.pricing-active .pricingList li::after {
  border-color: #ffffff;
}

.pricingSwiper .swiper-slide.pricing-active .planBtn {
  background: #020617;
  color: #ffffff;
}

.pricingSwiper .swiper-slide:not(.pricing-active) .pricingCard:hover {
  background: linear-gradient(135deg, #769cff, #3f72f5);
  color: #ffffff;
}

.pricingSwiper .swiper-slide:not(.pricing-active) .pricingCard:hover .planName,
.pricingSwiper .swiper-slide:not(.pricing-active) .pricingCard:hover .planPrice .amount {
  color: #ffffff;
}

.pricingSwiper .swiper-slide:not(.pricing-active) .pricingCard:hover .planPrice .feeText {
  color: rgba(241, 245, 249, 0.85);
}

.pricingSwiper .swiper-slide:not(.pricing-active) .pricingCard:hover .priceDivider {
  border-top-color: rgba(241, 245, 249, 0.6);
}

.pricingSwiper .swiper-slide:not(.pricing-active) .pricingCard:hover .pricingList li {
  color: #f9fafb;
}

.pricingSwiper .swiper-slide:not(.pricing-active) .pricingCard:hover .pricingList li::before,
.pricingSwiper .swiper-slide:not(.pricing-active) .pricingCard:hover .pricingList li::after {
  border-color: #ffffff;
}

.pricingSwiper .swiper-slide:not(.pricing-active) .pricingCard:hover .planBtn {
  background: #020617;
}

.tagText {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 50px;
  line-height: 1;
  color: rgb(59 98 255 / 0%);
  -webkit-text-stroke: 1px rgba(59, 98, 255, 0.30);
  text-transform: uppercase;
  margin-bottom: -26px;
  user-select: none;
  display: inline-block;
  position: relative;
}

.tagText:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(359deg, #ffffff, transparent);
}

.servicesSec .tagText:before,
.secTwo .tagText:before {
  background: linear-gradient(359deg, #eff4ff, transparent);
}

/* =========================
   CTA SECTION
========================= */
.ctaSec {
  background: #ffffff;
}

.ctaSec-card {
  position: relative;
  left: 8rem;
  width: 100%;
  background: #F6F6F6;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  padding: 4rem 16rem 4rem 4rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.ctaSec h2 {
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.ctaSec p {
  color: #6b7280;
  /* font-size: 16px; */
  line-height: 1.7;
  max-width: 560px;
}

.ctaSec .themeBtn {
  padding: 10px 20px;
}

.ctaSec-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, #5b7cff 0%, #3b62ff 100%);
  color: #fff;
  border: 0;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 10px 22px rgba(59, 98, 255, 0.28);
  text-decoration: none;
}

.ctaSec-btn:hover {
  color: #fff;
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.ctaSec-btn-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ctaSec-diamond {
  width: 420px;
  height: 420px;
  border-radius: 38px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(180deg, #77a1ff 0%, #3b62ff 100%);
  transform: rotate(45deg);
  box-shadow: 0 20px 45px rgba(59, 98, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.ctaSec-diamond-inner {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctaSec-diamond-img {
  position: relative;
  top: 2rem;
  width: 120%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.18));
}

/* CTA 2 */
.mt-8rem {
  margin-top: 8rem;
}

.ctaSec2 .ctaSec-card {
  left: -10rem;
  padding: 3rem 3rem 3rem 14rem;
}

.ctaSec2 .ctaSec-diamond {
  left: 10rem;
  z-index: 1;
}

.ctaSec2 .ctaSec-diamond-img {
  position: relative;
  top: 0rem;
  width: 140%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.18));
}

.ctaSecSlider .ctaSec-diamond-img {
  position: relative;
  top: 2rem;
  width: 120%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.18));
}

.ctaSec.ctaSecSlider .ctaSec-diamond {
  left: 11rem;
  z-index: 1;
}

.ctaSec.ctaSecSlider .ctaSec-card {
  position: relative;
  left: -8rem;
  padding: 4rem 2rem 4rem 14rem;
}

/* =========================
   TIP SECTION
========================= */
.tipSec {
  position: relative;
  background: radial-gradient(800px 300px at 30% 20%, rgba(59, 98, 255, .10) 0%, rgba(59, 98, 255, 0) 60%),
    radial-gradient(900px 360px at 75% 70%, rgba(59, 98, 255, .08) 0%, rgba(59, 98, 255, 0) 65%),
    linear-gradient(180deg, #eef4ff 0%, #f7fbff 55%, #ffffff 100%);
  overflow: hidden;
}

.tipSec .left {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-bg-diamond-left {
  left: -40px;
  top: 10px;
}

/* .tm-center-wrap {
  position: relative;
  width: 230px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 12rem;
} */
.tm-diamond2 {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 12rem;
  /* width: 150px;
  height: 150px; */
  border-radius: 18px;
  transform: rotate(45deg);
  background: radial-gradient(70% 70% at 30% 25%, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #78a3ff 0%, #3b62ff 100%);
  box-shadow: 0 18px 40px rgba(59, 98, 255, .25);
  position: relative;
}

.tm-diamond2 h4 {
  font-weight: 900;
  font-size: 48px;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 10px 18px rgba(15, 23, 42, .20);
}

.tm-diamond2-inner {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .tm-diamond2-text {
  font-weight: 900;
  font-size: 48px;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 10px 18px rgba(15, 23, 42, .20);
} */
.tipSec .box {
  position: absolute;
  z-index: 2;
}

.tipSec .box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, .85);
  white-space: nowrap;
}

.tipSec .box:hover {
  background: linear-gradient(180deg, #5b7cff 0%, #3b62ff 100%);
  color: #fff;
  border-color: rgba(59, 98, 255, .25);
  box-shadow: 0 14px 30px rgba(59, 98, 255, .25);
}

.tipSec .boxOne {
  top: 10px;
  left: 50%;
  transform: translateX(-5%);
}

.tipSec .boxTwo {
  top: 80px;
  left: 34%;
}

.tipSec .boxThree {
  top: 145px;
  left: 10%;
}

.tipSec .boxFour {
  top: 210px;
  left: 26%;
}

.tipSec .boxFive {
  top: 285px;
  left: 48%;
}

.tipSec .right h2 {
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #000000;
}

.tipSec .right p {
  max-width: 520px;
  /* font-size: 16px; */
  line-height: 1.7;
  color: rgba(15, 23, 42, .70);
}

.tipSec-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #5b7cff 0%, #3b62ff 100%);
  color: #fff;
  border: 0;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 12px 26px rgba(59, 98, 255, 0.25);
  text-decoration: none;
}

.tipSec-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.tipSec-btn-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .18);
}

section {
  padding: 6rem 0;
}

/* =========================
   PROCESS SECTION
========================= */
.processSec {
  background: #ffffff;
  position: relative;
}

.processSec .head {
  position: relative;
}

.processSec-kicker {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  color: rgba(59, 98, 255, 0.18);
  -webkit-text-stroke: 1px rgba(59, 98, 255, 0.30);
  text-transform: capitalize;
  margin-bottom: -26px;
  user-select: none;
}

.processSec .head h2 {
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.processSec .head p {
  margin: 10px auto 0;
  color: rgba(15, 23, 42, 0.65);
  /* font-size: 16px; */
  line-height: 1.7;
  max-width: 660px;
}

.processSecInner {
  background: #f7f7f8;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  padding: 46px 26px 26px;
  text-align: center;
  position: relative;
  min-height: 210px;
}

.processSecInner.center {
  margin-top: -4rem;
}

.processSecInner .num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #78a3ff 0%, #3b62ff 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  position: absolute;
  left: 50%;
  top: -23px;
  transform: translateX(-50%);
  box-shadow: 0 14px 26px rgba(59, 98, 255, 0.22);
}

.processSecInner h5 {
  font-weight: 800;
  color: #000000;
  margin: 6px 0 10px;
  font-size: 18px;
}

.processSecInner p {
  margin: 0;
  color: rgba(15, 23, 42, 0.65);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   FAQ SECTION
========================= */
.faqSec {
  background: #fff;
  position: relative;
}

.faqSecHead h2 {
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 12px;
}

.faqSecHead p {
  color: #6b7280;
  /* font-size: 16px; */
  line-height: 1.7;
  max-width: 360px;
  margin: 0;
}

.faqItem {
  background: #f7f7f8;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 14px;
  /* box-shadow: 0 10px 24px rgba(15, 23, 42, .05); */
}

.faqAcc .accordion-item {
  border: 1px solid rgba(15, 23, 42, .12);
}

.faqAcc .accordion-button {
  box-shadow: none;
}

button.accordion-button.faqBtn {
  width: 100%;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
}

button.accordion-button.faqBtn:focus {
  border: none;
  outline: 0;
}

.faqBtn {
  background: #f7f7f8;
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  padding: 16px 18px;
}

.faqBtn.collapsed {
  background: #f7f7f8;
}

.faqAcc .accordion-button:not(.collapsed) {
  background: #f7f7f8;
  color: #000000;
}

.faqAcc .accordion-button::after {
  background-image: none !important;
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: rgba(15, 23, 42, .75);
  transform: none !important;
}

.faqAcc .accordion-button:not(.collapsed)::after {
  content: "×";
  font-size: 18px;
  line-height: 1;
}

.faqBody {
  padding: 0 18px 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}

.faqAcc .accordion-collapse.show .faqBody {
  padding-top: 2px;
}

/* =========================
   REVIEW SECTION
========================= */
.reviewSec {
  background: #fff;
  overflow: hidden;
}

.reviewTitle h2 {
  font-weight: 700;
  letter-spacing: -0.3px;
  font-size: 30px;
}

.reviewSec p {
  color: #6b7280;
  margin: 0 0 14px;
  /* font-size: 16px; */
  line-height: 1.55;
}

.reviewName {
  font-weight: 700;
  color: #101828;
  font-size: 18px;
}

/* .reviewTitle {
  font-weight: 700;
  letter-spacing: -0.3px;
} */
/* .reviewDesc {
  color: #667085;
  max-width: 320px;
} */
.reviewNav {
  gap: 10px;
}

.reviewNav .revBtn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.16);
}

.reviewNav .revBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(16, 24, 40, .12);
  background: #3f72f5;
}

.reviewSwiper {
  width: 100%;
  padding: 10px 0;
}

.reviewCard {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 18px 45px rgba(16, 24, 40, .12);
}

.reviewImg {
  flex: 0 0 33%;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
}

.reviewImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviewBody {
  flex: 1;
}

.stars {
  color: #f5b301;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 30px;
}

.reviewSwiper .swiper-slide {
  width: 560px;
  max-width: 100%;
}

/* =========================
   FOOTER / SOCIAL
========================= */
.socialLinks ul {
  display: flex;
  gap: 10px;
}

.socialLinks ul i {
  font-size: 22px;
}

i.fa-brands.fa-square-facebook {
  color: #1877F2;
}

i.fa-brands.fa-instagram {
  background: linear-gradient(45deg,
      #f58529,
      #feda77,
      #dd2a7b,
      #8134af,
      #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

i.fa-brands.fa-linkedin {
  color: #0A66C2;
}

.socialLinks a {
  border: 1px solid #000000;
  padding: 6px;
  border-radius: 6px;
}

.socialLinks h4 {
  font-size: 16px;
  margin: 0;
  padding-bottom: 12px;
}

footer ul li a {
  padding: 10px 0;
}

.secN h2 {
  /* margin-bottom: 1rem; */
}

.secN h2 span {
  background: linear-gradient(135deg, #769CFF, #3F72F5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.secN p {
  font-size: 16px;
  color: #6b7280;
}

.secOne .innerBox {
  background: #F6F6F6;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #BCBDC1;
}

.secOne .innerBox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.secOne .innerBox ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #6b7280;
}

.secOne .innerBox ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  background-image: url("../images/mix/listIcon.png");
  background-size: contain;
  background-repeat: no-repeat;
}

figure img {
  width: 100%;
}

.contactSec {
  z-index: 1;
  position: relative;
}

.contactSec .formSec {
  padding: 2rem;
  background: #F6F6F6;
  border: 1px solid #BCBDC1;
  border-radius: 20px;
}

.contactSec .formSec h2 {
  font-size: 50px;
  color: #000;
  font-size: 2.2rem;
  font-weight: 800;
  font-style: normal;
}

.contactSec .formSec h2 span {
  color: #3F72F5;
}

.formSec input {
  height: 3rem;
}

.formSec input,
.formSec textarea {
  margin: 0 0 1rem 0;
  border-radius: 10px;
  outline: 0;
}

.formSec input:focus {
  outline: 0;
  box-shadow: none;
}

.formSec label {
  font-size: 18px;
  font-weight: 500;
}

.formSec input::placeholder {
  color: #BCBDC1;
}

.contactSec .boxSec {
  background: #769CFF;
  padding: 1rem;
  border-radius: 10px;
  margin: 2rem 0 0 0;
}

.contactSec .boxSec .inner {
  background: #ffffff;
  height: 100%;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.contactSec .boxSec .inner p {
  color: #000;
  margin: 0;
  padding: 10px 0;
  font-size: 12px;
}

.faqSec .faqSecHead.left .inner {
  background: #F6F6F6;
  border: 1px solid #BCBDC1;
  padding: 2rem;
  display: inline-block;
  border-radius: 10px;
  margin: 1rem 0 0 0;
}

.faqSec .faqSecHead.left .inner h3 {
  font-size: 24px;
}

.faqSec .faqSecHead.left .inner p {
  /* color: #000000; */
}

.secTwo {
  background: linear-gradient(to bottom, #e9f0ff 0%, #ffffff 55%);
}

.tabSec {
  --tabBlue: #4F7BFF;
  --tabRadius: 6px;
}

/* Tabs row */
.tabSec__tabs {
  margin: 1rem 0 0;
  gap: 22px;
  flex-wrap: wrap;
}

.tabSec__tabs .nav-link {
  border: 2px solid var(--tabBlue);
  border-radius: var(--tabRadius);
  background: #fff;
  color: #222;
  padding: 12px 22px;
  min-width: 240px;
  /* image jaisa wide look */
  text-align: center;
  font-weight: 500;
  line-height: 1;
  box-shadow: none;
}

.tabSec__tabs .nav-link:hover {
  background: rgba(79, 123, 255, .06);
}

.tabSec__tabs .nav-link.active {
  background: var(--tabBlue);
  color: #fff;
}

.tabSec__tabs .nav-link:focus {
  box-shadow: none;
  outline: 0;
  border: 2px solid var(--tabBlue);
}

/* Card */
.tabSec__card {
  max-width: 760px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 14px;
  padding: 28px 30px;
}

.tabSec h3 {
  font-weight: 800;
  font-size: 22px;
  margin: 1rem 0;
}

.tabSec h2 {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 6px;
}

.tabSec p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.tabSec {
  text-align: center;
}

.lpBanner {
  display: flex;
  align-items: center;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

.lpBanner:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(359deg, #DCE7F8, transparent);
}

/* Swiper basic */
.ctaSecSwiper {
  overflow: hidden;
}

.ctaSecSwiper .swiper-slide {
  height: auto;
}

/* Side arrows (image jaisa right side feel) */
.ctaSecSlider .ctaSecNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  background: #fff;
  display: grid;
  place-items: center;
  z-index: 5;
  cursor: pointer;
}

.ctaSecSlider .ctaSecPrev {
  left: -14px;
}

.ctaSecSlider .ctaSecNext {
  right: -14px;
}

.ctaSecSlider .ctaSecNav i {
  font-size: 14px;
}

.ctaSecSlider .ctaSecNav:hover {
  border-color: #4F7BFF;
}

/* Disabled state */
.ctaSecSlider .ctaSecNav.is-disabled {
  opacity: .35;
  pointer-events: none;
}

/* .aboutDesc {
  font-size: 16px;
} */

.copyRight ul {
  align-items: center;
}

.ctDetails li a {
  padding: 1rem 0 0;
  color: #546B75;
}

/* Popup */
.overlay {
  background-color: #000000bf;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  display: none;
  backdrop-filter: blur(10px);
}

.popup-main {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: 940px;
  background: #fff;
  box-shadow: 0 0 30px -9px #0000006e;
  z-index: 9999999;
  /*overflow: hidden;*/
  display: none;
  border-radius: 20px;
  max-width: 100%;
  max-height: 90vh;
  /*overflow-y: auto;*/
}

.closeico {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5482f9;
  border-radius: 100px;
  color: #fff;
}

.mmpopup {
  /*background: #fff;*/
  display: flex;
  align-items: center;
}

.mmpopup .imgpop figure,
.mmpopup .imgpop figure img {
  height: 670px;
  border-radius: 20px 0 0 20px;
}

.mmpopup .imgpop img {
  height: 600px;
  object-fit: cover;
}

.mmpopup .cont {
  width: 35%;
  padding: 2rem 2rem;
}

.mmpopup .formPop {
  width: 75%;
  padding: 2rem 3rem;
  margin-left: auto;
}

.mmpopup .formPop h3,
.mmpopup .formPop h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mmpopup .formPop h4 sub {
  display: none;
}

.mmpopup .contpop {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}

.mmpopup .cont h3 {
  font-size: 1.425rem;
  font-weight: 600;
}

.mmpopup .cont p {
  margin-bottom: 10px;
  font-size: 14px;
}

.mmpopup .cont .lists {
  padding: 1rem 0;
}

.mmpopup .cont .lists li {
  color: var(--head-color);
  padding: 2px 0;
  padding-left: 1.5rem;
}

.mmpopup .cont .lists li svg,
.mmpopup .cont .lists li i {
  top: 5px;
}

.mmpopup .cont .call a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--head-color);
}

.formPop .fld {
  margin-bottom: 0.4rem;
  font-size: 14px;
}

.formPop .fld input,
.formPop .fld textarea {
  border-radius: 5px;
  border: solid 1px #e6e6e6;
  width: 100%;
  height: 50px;
  padding: 10px 10px;
  font-size: 1rem;
}

.formPop .fld textarea {
  height: 80px;
}

.popup-main .themeBtn {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  margin-top: 10px;
}

.popup-main .themeBtn i {
  margin-left: 10px;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-bottom: 10px;
  width: 100%;
  margin-top: 10px;
}

.checkbox-wrap label {
  line-height: 1.3;
  font-size: 13px;
}

.checkbox-wrap input {
  margin-top: 1px;
  width: auto !important;
}

.formTopContnt p {
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}

.mmpopup .formPop input {
  height: 3.25rem;
  margin-bottom: 1rem;
  border: 1px solid #1e266d6b;
  border-radius: 10px;
  line-height: 1;
}

.mmpopup .formPop label {
  font-weight: 700;
}

.mmpopup .formPop {
  border-radius: 10px;
}

.formPop .callBtn {
  margin-top: 1rem;
}

.closeico:hover {
  color: #fff;
}

.iti {
  width: 100%;
}

.iti__selected-country:focus {
  outline: 0;
}

.iti {
  margin: 0 0 1rem 0;
}

.formSecBanner .iti {
  margin: auto;
}

.homeBanner .bannertext img {
  width: 90%;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.homeBanner .bannerRight img {
  height: auto;
}

.pricingSwiper.center-few .swiper-wrapper {
  justify-content: center;
}

.mCSB_inside>.mCSB_container {
  margin-right: 10px;
  margin-left: 10px;
}

.iti__country-list {
  overflow-y: auto !important;
}

.mCSB_scrollTools {
  right: 10px;
}

input.iti__search-input {
  margin: 0 0 10px !important;
  border: 1px solid #769cff;
  border-radius: 0 !important;
}

.lpFooter .row {
  display: flex;
}

.lpFooter .row:nth-child(1) {
  justify-content: space-between;
}

.lpFooter .row:nth-child(2) {
  justify-content: center;
}


.secN h2,
.ctaSec h2,
.pricingSec h2,
.processSec .head h2,
.faqSecHead h2,
.aboutContent h2,
.servicesSec h2,
.tipSec .right h2,
.reviewSec h2 {
  font-size: 44px;
  font-weight: 500;
  color: #000000;
}

.bannertext p,
.secN p,
.ctaSec p,
.pricingSec p,
.processSec .head p,
.faqSecHead p,
.aboutContent p,
.servicesSec p,
.tipSec .right p,
.reviewSec p,
.statCard p,
.processSecInner p {
  font-size: 16px;
  margin-bottom: 1rem;
}