@charset "UTF-8";

:root {
  /* ========================================
       PRIMARY COLOR PALETTE
       ======================================== */
  --primary: #00fe8a;
  --primary-hover: #00cc70;
  --secondary: linear-gradient(
    90deg,
    rgba(79, 126, 255, 1) 0%,
    rgb(100 57 255) 100%
  );
  --secondary-hover: #0e91d2;

  /* ========================================
       NEUTRAL COLORS
       ======================================== */
  --white-color: #ffffff;
  --black-color: #000000;
  --grey-color-1: #333333;
  --grey-color-2: #666666;
  --grey-color-3: #959595;
  --grey-color-4: #c4c4c4;
  --text-color: #475467;
  --text-color-light: #7c7c7d;
  --text-color-muted: #8d909b;
  --body-bg: #fff;

  /* ========================================
       BORDERS
       ======================================== */
  --border-color-1: #ebedef;
  --border-color-2: #cacacb;
  --border-color-3: #ddd;

  /* ========================================
       BRAND COLORS
       ======================================== */
  --brand-teal: #064544;
  --brand-teal-dark: #043332;
  --brand-teal-light: #094544;
  --brand-blue: #0cafff;
  --brand-purple: #8757fe;
  --brand-purple-dark: #6439ff;

  /* ========================================
       BACKGROUND COLORS
       ======================================== */
  --bg-dark: #110f16;
  --bg-dark-alt: #15152e;
  --bg-light: #f4f6f6;
  --bg-light-alt: #eaeef1;
  --bg-grey: #222222;

  /* ========================================
       SEMANTIC COLORS
       ======================================== */
  --star-color: #ffa200;
  --red-color: #eb5757;
  --green-color: #27ae60;
  --warning-color: #fff59f;
  --success-color: #2cc069;
  --info-color: #0e91d2;

  /* ========================================
       LEGACY COLORS (to be phased out)
       ======================================== */
  --color-1: #0d0c10;
  --color-2: #2d60f0;
  --color-3: #1e1e21;
  --color-4: #131b33;
  --color-5: #213d3c;
  --color-6: #ffffff;

  /* ========================================
       GRADIENTS
       ======================================== */
  --gradient: #0cafff;
  --gradient-2: linear-gradient(88.71deg, #232323 1.15%, #0b2f22 50.85%);
  --gradient-3: linear-gradient(90deg, #09d073 26.68%, #05a05a 76.89%);
  --gradient-purple: linear-gradient(to right, #8757fe 27%, #999999 100%);
  --gradient-teal: linear-gradient(135deg, #064544 0%, #043332 100%);

  /* ========================================
       TYPOGRAPHY - FONT FAMILIES
       ======================================== */
  --font-family-base: "Albert Sans", sans-serif;
  --font-family-title: "Albert Sans", sans-serif;
  --font-family-inter: "Albert Sans", sans-serif;

  /* ========================================
       TYPOGRAPHY - FONT SIZES (using rem for scalability)
       ======================================== */
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-md: 1.125rem; /* 18px */
  --font-size-lg: 1.25rem; /* 20px */
  --font-size-xl: 1.5rem; /* 24px */
  --font-size-2xl: 1.75rem; /* 28px */
  --font-size-3xl: 2rem; /* 32px */
  --font-size-4xl: 2.5rem; /* 40px */
  --font-size-5xl: 3rem; /* 48px */
  --font-size-6xl: 3.5rem; /* 56px */
  --font-size-7xl: 3.75rem; /* 60px */

  /* ========================================
       TYPOGRAPHY - FONT WEIGHTS
       ======================================== */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* ========================================
       TYPOGRAPHY - LINE HEIGHTS
       ======================================== */
  --line-height-tight: 1.2;
  --line-height-snug: 1.4;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  --line-height-loose: 2;

  /* ========================================
       SPACING SCALE (consistent spacing system)
       ======================================== */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 3rem; /* 48px */
  --spacing-3xl: 4rem; /* 64px */
  --spacing-4xl: 5rem; /* 80px */

  /* ========================================
       BORDER RADIUS
       ======================================== */
  --radius-sm: 0.25rem; /* 4px */
  --radius-md: 0.5rem; /* 8px */
  --radius-lg: 0.75rem; /* 12px */
  --radius-xl: 1rem; /* 16px */
  --radius-2xl: 1.5rem; /* 24px */
  --radius-full: 9999px; /* Full round */

  /* ========================================
       SHADOWS
       ======================================== */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* ========================================
       TRANSITIONS
       ======================================== */
  --transition: all 300ms ease;
  --transition-fast: all 150ms ease;
  --transition-slow: all 500ms ease;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  background: var(--body-bg);
  font-weight: var(--font-weight-normal);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

a {
  color: var(--color-2);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}

a:hover {
  color: #000000;
}

p {
  color: var(--black-color);
  margin: 0;
}

button {
  outline: none !important;
  cursor: pointer;
}

button:focus,
button:active {
  outline: none;
}

button,
a:hover,
a:focus,
a:visited,
a:active,
button:active {
  text-decoration: none;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: var(--font-family-title);
  font-weight: var(--font-weight-semibold);
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
  color: var(--black-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

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

input,
select,
button {
  font-family: var(--font-family-base);
}

textarea {
  overflow: hidden;
  resize: none;
}

iframe {
  border: none !important;
  display: block;
  width: 100%;
}

section {
  position: relative;
}

main {
  position: relative;
  width: 100%;
  display: block;
}

h1 {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--font-size-5xl);
  line-height: var(--line-height-tight);
}

h3 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-snug);
}

h4 {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-snug);
}

h5 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-snug);
}

h6 {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-snug);
}

.button-style {
  display: inline-block;
  vertical-align: top;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  border: 1px solid var(--gradient);
  background: var(--gradient);
  color: var(--white-color);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  position: relative;
  z-index: 5;
  overflow: hidden;
  transition: var(--transition);
}
.search-icon {
  cursor: pointer;
}
.button-style-star img {
  margin-left: 15px;
}

section,
div {
  position: relative;
}

.primary-color {
  color: var(--primary) !important;
}

.secondary-color {
  color: var(--secondary) !important;
}

.white-color {
  color: var(--white-color) !important;
}

.black-color {
  color: var(--black-color) !important;
}

.text-color {
  color: var(--text-color) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-color-1 {
  background-color: var(--color-1) !important;
}

.color-yellow {
  color: var(--star-color) !important;
}

.color-green {
  color: var(--color-1) !important;
}

.color-red {
  color: var(--red-color) !important;
}

.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1.5rem;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1.5rem;
}

header.header {
  position: fixed;
  z-index: 1;
  width: 100%;
  top: 20px;
  z-index: 9;
  border-bottom: 1px solid #194644;
  padding-bottom: 15px;
}
.header-right-button {
  display: flex;
  align-items: center;
  gap: 20px;
}
header.header.sticky {
  top: 0;
  padding: 10px 0;
  background-color: #110f16;
}

.navbar .navbar-nav .nav-link {
  color: var(--color-6);
  font-weight: 600;
}

.navbar .navbar-nav .nav-link:hover {
  color: #0cafff;
  border-bottom: 1px solid #0cafff;
}
.active {
  color: #0cafff !important;
  border-bottom: 1px solid #0cafff;
}
.navbar-nav {
  gap: 15px;
}
.header-right-button a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 35px;
  border-radius: 50px;
  border: none;
  background: var(--gradient);
}

.login-menu {
  background: none !important;
  color: var(--color-6);
  font-weight: 600;
}

.navbar-toggler .close {
  display: none;
}

.banner-area {
  padding-top: 150px;
  padding-bottom: 80px;
  min-height: calc(100vh - 189px);
  display: flex;
  align-items: center;
  /* CSS Grid Pattern Background with Overlay */
  background-color: var(--brand-teal);
  background-image: linear-gradient(
      rgba(15, 38, 37, 0.7),
      rgba(15, 38, 37, 0.7)
    ),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 100px 100px, 100px 100px;
  background-position: center center;
  z-index: 2;
}

.bg-shape-1 {
  text-align: center;
  z-index: -1;
}

.bg-shape-2 {
  position: absolute;
  border: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.bg-shape-3 {
  position: absolute;
  border: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.bg-shape-4 {
  position: absolute;
  border: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.bg-shape-5 {
  position: absolute;
  border: 0;
  left: 0;
  top: 0;
  z-index: -1;
}

.bg-shape-1 {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.bg-shape-8 {
  position: absolute;
  border: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.bg-shape-1 img {
  width: 1440px;
  object-fit: cover;
}

.banner-content {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.banner-content h1 {
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  margin-top: var(--spacing-lg);
}

.banner-content span {
  background: var(--brand-purple);
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content h1 span .circle1 {
  top: -4px;
  left: -4px;
}

.banner-content h1 span .circle2 {
  top: -4px;
  right: -4px;
}

.banner-content h1 span .circle3 {
  bottom: -4px;
  left: -4px;
}

.banner-content h1 span .circle4 {
  bottom: -4px;
  right: -4px;
}

.banner-content p {
  font-size: var(--font-size-base);
  padding-top: var(--spacing-md);
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  margin: 0 auto;
  padding-bottom: var(--spacing-4xl);
}

.banner-content p span {
  color: var(--brand-purple);
  background: var(--brand-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content .form-group {
  background: #fff;
  width: 60%;
  display: flex;
  justify-content: space-between;
  padding: 7px;
  border-radius: 10px;
  margin-top: 30px;
}

.banner-content .form-group .button-style {
  padding: 5px 15px;
}

.banner-content .form-group input {
  height: 44px;
  padding: 0px 15px 0px 35px;
  font-size: 14px;
  width: inherit;
  border-radius: 10px;
}

.banner-content .emai-icon {
  position: absolute;
  top: 19px;
  left: 12px;
}

.banner-content .button-wapper a {
  /* box-shadow: 0 0 45px rgb(1 255 138 / 70%); */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-color: #fff;
  padding: 15px 25px;
  border-radius: 60px;
  background: var(--gradient);
}

.banner-content .button-wapper .watch-video-style {
  display: inline-flex;
  align-items: center;
  color: #0e2637;
  gap: 10px;
  border: 1px solid #91989e;
  padding: 15px 25px;
  border-radius: 60px;
  background: transparent;
}

.video-box {
  border: 1px solid #6844c3;
  border-radius: 16px;
  padding: 10px;
  background-color: #15152e;
}

.main-rule {
  display: flex;
  gap: 10px;
  margin: 30px 0 30px 0;
  flex-wrap: wrap;
}

.main-rule h6 {
  font-size: 18px;
  color: #fff;
  display: flex;
  gap: 10px;
}

.button-wapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.shap-items1 {
  position: absolute;
  top: 90px;
  left: -130px;
}

.shap-items2 {
  position: absolute;
  bottom: -45px;
  left: 60px;
}

.shap-items3 {
  position: absolute;
  top: 90px;
  right: -130px;
}

.shap-items4 {
  position: absolute;
  bottom: -45px;
  right: 60px;
}

.shap-items1 svg,
.shap-items2 svg,
.shap-items3 svg,
.shap-items4 svg {
  width: 60px;
  height: 60px;
}

.video-box a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.what-is-area {
  background-color: var(--bg-dark);
  padding: var(--spacing-4xl) 0;
}

.what-is-area h1 {
  font-size: var(--font-size-4xl);
  color: var(--white-color);
}

.what-is-area p {
  font-size: var(--font-size-lg);
  color: var(--text-color-light);
}

.bg-shape-8 {
  position: absolute;
  border: 0;
  left: 0;
  top: 0;
  z-index: 0;
}

.bg-shape-9 {
  position: absolute;
  border: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.bg-shape-10 {
  position: absolute;
  border: 0;
  left: 180px;
  top: 50px;
  z-index: 0;
}

.bg-shape-11 {
  content: "";
  position: absolute;
  height: 340px;
  width: 340px;
  top: auto;
  left: 140px;
  background: #192d50;
  opacity: 0.9;
  border-radius: 100%;
  z-index: 0;
  filter: blur(80px);
  -webkit-filter: blur(80px);
}

.bg-shape-12 {
  position: absolute;
  border: 0;
  right: 35px;
  bottom: 0px;
  z-index: 0;
}

.bg-shape-13 {
  position: absolute;
  border: 0;
  left: 0;
  z-index: 0;
  bottom: 0;
}

.bg-shape-14 {
  position: absolute;
  border: 0;
  right: 0;
  top: 0;
  z-index: 0;
}

.postion-relative {
  position: relative;
}

.plr-50-90 {
  padding: 0 90px 0 50px;
}

.plr-30-50 {
  padding: 0 30px 0 50px;
}

.main-voice-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.Why-choose-area {
  padding: var(--spacing-2xl) 0;
  background-color: var(--bg-dark);
}

.background-img {
  background: url(/assets/images/why-choose/background-img.svg) no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
  margin: 0;
}

.blue-color {
  color: var(--brand-purple-dark);
}

.ml-160 {
  margin-left: 160px;
}

.case-study-area .blue-color {
  color: var(--brand-purple) !important;
}

.blue-line {
  background-color: var(--brand-purple) !important;
}

.text-white {
  color: var(--white-color);
}

.z-index-1 {
  z-index: 1;
}

.back-btn-trans {
  background-color: transparent;
}

.background-color {
  background-color: var(--bg-dark-alt);
}

.main-box-plan h5 {
  color: var(--white-color);
  margin-bottom: var(--spacing-xs);
}

.background-main {
  background: url(/assets/images/right-plan/background-img.svg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  padding: 80px 0;
  margin: -80px 0px;
}

.build-area h1 {
  color: var(--white-color);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
}

.build-area p {
  font-size: var(--font-size-base);
  color: var(--white-color);
}

.main-btn {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

.heading-btn h5 {
  margin: 0;
  font-size: var(--font-size-md);
}

.heading-btn h5 img {
  position: relative;
  top: -2px;
  left: 9px;
}

.dollar-box {
  min-width: 170px;
  text-align: center;
}

.pr-58 {
  padding-right: 58px;
}

.bg-shape-7 {
  position: absolute;
  border: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.bg-shape-6 {
  position: absolute;
  border: 0;
  left: 0;
  top: 0;
  z-index: 1;
}
.profile-content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.testimonial-slider {
  padding: 0em 2em 0em;
}

.testimonial-title {
  color: var(--white-color);
}

.testimonial-title h2 {
  padding-left: var(--spacing-sm);
}

.card {
  margin: 0 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  height: 100%;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  background: url(/assets/images/footer/footer-bg.png);
  padding: 60px 0 0 0;
  background-repeat: no-repeat;
  color: var(--white-color);
  background-size: cover;
}

.footer p,
.footer a {
  color: var(--border-color-1);
  text-align: left;
  align-items: center;
  display: flex;
  gap: var(--spacing-xs);
}

.footer-widget-newsletter .widget-content form .form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-widget-newsletter .widget-content form .form-group input {
  height: 44px;
  padding: 15px;
  font-size: 14px;
  width: calc(100% - 23%);
  border-radius: 5px;
}

.footer-widget-newsletter .widget-content form .form-group button {
  width: auto;
  height: 44px;
  line-height: normal;
  border-radius: 5px;
  font-size: 14px;
  color: #000;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget-about .widget-content {
  margin-right: 70px;
}

.footer-widget-about .widget-content h6 {
  font-size: 16px;
  margin-bottom: 5px;
}

.footer-top {
  margin-bottom: 40px;
}
.widget-title h4 {
  font-size: var(--font-size-lg);
  color: var(--white-color);
  margin-bottom: var(--spacing-sm);
}
.widget-content ul li a {
  font-size: var(--font-size-base);
  padding-bottom: var(--spacing-sm);
}
.widget-content ul li a:hover {
  margin-left: 5px;
  color: var(--white-color);
}
.socialmedia-icon {
  display: flex;
  gap: 15px;
  justify-content: left;
  margin-top: 15px;
}

.socialmedia-icon svg {
  width: 24px;
  height: 24px;
}

.footer-bottom .footer-bottom-social {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 20px;
  gap: 20px;
}

.footer-bottom .footer-wapper {
  border-top: 1px solid #ffffff61;
  padding-top: 20px;
  padding-bottom: 20px;
}
.copyright-text p {
  text-align: center;
  display: block;
}
.button-style:hover {
  background: var(--secondary-hover);
  color: #fff;
}

.btn-all {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.scrolling-ticker-area {
  padding: 10px 0;
  background-color: var(--color-1);
  overflow: hidden;
}

.scrolling-ticker-area .scrolling-ticker-box {
  position: relative;
  overflow: hidden;
  user-select: none;
  display: flex;
}

.scrolling-ticker-area .scrolling-ticker-box .scrolling-content {
  flex-shrink: 0;
  display: flex;
  animation: scroll 70s linear infinite;
  gap: 5px;
  margin-right: 10px;
}

.scrolling-ticker-area .scrolling-ticker-box .scrolling-content h2 {
  align-items: center;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--white-color);
  line-height: normal;
}

.scrolling-ticker-area .scrolling-ticker-box .scrolling-content h2 span {
  color: var(--primary);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 30px));
  }
}

.scrolling-shape-left {
  position: absolute;
  top: 0;
  left: 0;
}

.scrolling-shape-right {
  position: absolute;
  top: 0;
  right: 0;
}

.scrolling-ticker-area {
  background-color: var(--bg-grey);
  overflow: hidden;
}

.scrolling-text p {
  color: var(--grey-color-4);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
}
.img-text-main {
  display: flex;
  align-items: center;
  gap: 25px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper.testimonials-slider {
  padding-bottom: 50px;
}

.swiper-button-next {
  margin-top: 0;
  position: absolute;
  top: 50%;
  right: -40px;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
  z-index: 0;
}

.swiper-button-prev {
  position: absolute;
  top: 50%;
  left: -40px;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
  margin-top: 0;
  z-index: 0;
}

.swiper-pagination-bullet {
  background: #15322e;
  height: 10px;
  width: 10px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  margin: 0 8px !important;
  box-shadow: 0 0 4px 0 #15322e;
  outline-offset: 4px;
  width: 15px;
  height: 15px;
}
.slider-wapper {
  margin: 0 320px;
  background: url(/assets/images/Quick/background.svg);
  padding-bottom: 80px;
  background-size: cover;
}
.single-testimonials-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 24px;
}
.testimonials-content h5 {
  color: var(--bg-grey);
  font-size: var(--font-size-lg);
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}
.testimonials-content p {
  color: var(--grey-color-3);
  font-size: var(--font-size-base);
  text-align: left;
  font-weight: var(--font-weight-medium);
}
.swiper-pagination {
  align-items: center;
  display: flex;
  justify-content: center;
}
.about-section {
  background-color: var(--bg-light-alt);
  padding: var(--spacing-4xl) 0;
}
.about-section h6 {
  color: var(--brand-blue);
  display: flex;
  gap: var(--spacing-xs);
  align-items: center;
  justify-content: center;
}
.about-section h2 {
  font-weight: var(--font-weight-bold);
}

.about-section h2 + p {
  color: var(--text-color-light);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-xl);
}

.about-section p {
  color: var(--grey-color-3);
  text-align: left;
  font-weight: var(--font-weight-medium);
}
.under-about ul {
  margin: 20px 0;
}
.under-about ul li {
  position: relative;
  margin: 4px 0;
  color: var(--text-color);
  font-size: 16px;
  text-align: left;
  font-weight: 500;
  padding-left: 24px;
}

.under-about p {
  text-align: left;
  /* font-size: 16px; */
  font-weight: 500;
  color: var(--text-color);
}
.under-about h5 {
  text-align: left;
  font-size: 23px;
  font-weight: 500;
  color: #1d1616;
}

.under-about ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--spacing-lg);
  height: var(--spacing-lg);
  background-image: url("/assets/images/meet/tick-double.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.about-section h3 {
  font-weight: var(--font-weight-bold);
  color: var(--black-color);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-sm);
}
.heading-des {
  padding-left: 90px;
}
.float-left {
  float: left;
}

.goal-clock-main {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.goal-clock-main a {
  color: var(--brand-teal);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-md);
  text-decoration: underline;
}

.plr-50 {
  padding: 0px 50px;
}
.meet-section {
  background-color: var(--brand-teal);
  padding: var(--spacing-4xl) 0;
}
.meet-section h6 {
  color: var(--brand-blue);
  text-align: center;
}
.meet-section h3 {
  text-align: center;
  color: var(--white-color);
}
.thick-double {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.thick-double h3 {
  text-align: left;
  font-size: var(--font-size-2xl);
}
.heading-des-meet p {
  color: var(--grey-color-4);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-md);
}
.hr {
  margin: var(--spacing-xs) 0;
  color: inherit;
  background-color: var(--grey-color-4);
  border: 0;
  opacity: 0.5;
}
.blue-box {
  background-color: #e0ffff;
  border-radius: var(--radius-2xl);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
}
.under-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 35px;
  justify-content: center;
}
.under-box h5 {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-lg);
  color: var(--black-color);
  margin: 0;
}
.border-rb {
  border-right: 1px solid var(--grey-color-4);
  border-bottom: 1px solid var(--grey-color-4);
}
.border-right {
  border-right: 1px solid var(--grey-color-4);
}
.border-b {
  border-bottom: 1px solid var(--grey-color-4);
}
.what-area {
  padding: var(--spacing-4xl) 0;
}
.what-area h1 {
  color: var(--black-color);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
}
.what-area p {
  color: var(--text-color-light);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-md);
}
.under-what h5 {
  color: var(--black-color);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}
.under-what {
  margin-top: 15px;
  margin-bottom: 15px;
}
.checmark-des {
  display: flex;
  gap: 10px;
  align-items: self-start;
}
.checmark-des p {
  top: -4px;
  position: relative;
}
.box-round {
  background-color: var(--brand-teal-light);
  padding: var(--spacing-md);
  width: 70px;
  height: 50px;
  border-radius: var(--radius-full);
  color: var(--white-color);
  text-align: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-des h3 {
  font-size: var(--font-size-2xl);
  color: var(--black-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-xs);
}
.text-des p {
  color: var(--text-color);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
}
.one-box {
  display: flex;
  gap: 25px;
  align-items: center;
}
.one-box img {
  width: 242px;
  height: 161px;
}
.one-two-three {
  display: grid;
  align-content: space-evenly;
  padding-right: 30px;
}
.leadboard {
  background-color: var(--brand-teal);
  padding: var(--spacing-4xl) 0;
}
.leader-left h5 {
  color: var(--white-color);
  text-align: center;
}
.leader-left p {
  text-align: center;
  color: var(--grey-color-4);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
}
.fourth-lead {
  background-color: var(--brand-teal-light);
  border: 1px solid var(--success-color);
  display: flex;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-lg);
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}
.four-box {
  width: 30px;
  height: 30px;
  padding: var(--spacing-xs);
  border-radius: var(--radius-full);
  color: var(--white-color);
  background-color: var(--color-5);
  text-align: center;
}
.fourth-lead-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.fourth-lead-left h6 {
  font-size: var(--font-size-base);
  color: var(--white-color);
  margin-bottom: 0;
}
.fourth-lead-right small {
  font-size: var(--font-size-base);
  color: #6b8f8e;
}
.take-quiz {
  background-color: var(--color-5);
  padding: var(--spacing-sm) var(--spacing-xl);
  border-radius: var(--radius-full);
  color: var(--grey-color-4);
  font-size: var(--font-size-md);
  margin: 0 auto;
  display: table;
}
.leader-right {
  text-align: center;
}
.leader-right h1 {
  color: var(--white-color);
  text-align: center;
  font-size: var(--font-size-5xl);
  padding: var(--spacing-3xl) 0;
  margin: 0;
}
.casestudy-area {
  padding: 20px;
}
.casestudy-area h6 {
  color: var(--brand-blue);
  text-align: center;
}
.casestudy-area h3 {
  font-size: var(--font-size-5xl);
  color: var(--black-color);
  text-align: center;
  font-weight: var(--font-weight-bold);
}
.casestudy-left {
  height: 100%;
  overflow: hidden;
  background-color: var(--white-color);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-2xl);

  border: 1px solid var(--border-color-1);
}
.casestudy-left h4 {
  font-size: var(--font-size-3xl);
  color: var(--black-color);
}
.casestudy-left a {
  color: var(--brand-teal);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-md);
  text-decoration: underline;
}
.casestudy-area .text-des h3 {
  font-size: var(--font-size-xl);
  color: var(--black-color);
  text-align: left;
  font-weight: var(--font-weight-bold);
}
.case-studi-list {
  display: grid;
  align-content: space-evenly;
}
.case-studi-list a {
  color: var(--brand-teal);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-md);
  text-decoration: underline;
}
.case-studi-list .text-des {
  display: grid;
  gap: inherit;
}
.testimonail-area {
  background: url(/assets/images/testimonial/background.png);
  padding: 80px 0px;
  background-size: cover;
}
.left-test {
  background-color: #e0ffff;
  padding: 20px 30px;
  border-radius: 24px;
  width: 30%;
  display: grid;
  gap: 24px;
}
.main-testimonial {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.tie {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tie h6 {
  margin-bottom: 0;
  color: var(--brand-teal);
  font-size: var(--font-size-md);
}
.left-test h3 {
  color: var(--black-color);
  font-size: var(--font-size-3xl);
  margin-bottom: 0;
  font-weight: var(--font-weight-bold);
}
.rivew {
  display: flex;
  justify-content: space-between;
}
.star h5 {
  margin-bottom: 0;
  color: var(--black-color);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}
.right-test {
  background-color: #eaeef1;
  padding: 15px;
  border-radius: 24px;
  width: 45%;
  gap: 0;
  display: flex;
  align-items: center;
  justify-content: right;
}
.right-test .prfile-img {
  position: absolute;
  left: -60px;
  width: 25%;
}
.desc-testi {
  padding-left: 100px;
  display: grid;
  gap: 30px;
}
.star-name h6 {
  color: var(--black-color);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  margin-bottom: 0;
}
.desc-testi p {
  color: var(--black-color);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
}

/* Mobile testimonial layout fixes */
@media only screen and (max-width: 767px) {
  .main-testimonial {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .left-test,
  .right-test {
    width: 100%;
  }
  .right-test {
    justify-content: flex-start;
    position: relative;
  }
  .right-test .prfile-img {
    position: static;
    width: 72px;
    min-width: 72px;
    margin-right: 12px;
  }
  .desc-testi {
    padding-left: 0;
    gap: 12px;
  }
}
.pricing-area {
  background-color: var(--bg-light-alt);
  padding: var(--spacing-4xl) 0;
}
.pricing-area h6 {
  color: var(--brand-blue);
  text-align: center;
}
.pricing-area h3 {
  font-size: var(--font-size-5xl);
  color: var(--black-color);
  text-align: center;
  font-weight: var(--font-weight-bold);
}
.main-pricing {
  margin-top: 40px;
}
.Individual-plan {
  background-color: var(--brand-teal) !important;
  padding: var(--spacing-2xl);
  background-size: cover;
  text-align: center;
  border-radius: var(--radius-xl);
  height: 100%;
}
.Individual-plan h4 {
  color: var(--white-color);
}
.Individual-plan p {
  color: var(--white-color);
}
.Individual-plan h5 {
  color: var(--white-color);
  font-size: var(--font-size-3xl);
  margin: var(--spacing-2xl);
}
.Individual-plan h5 small {
  font-size: var(--font-size-base);
}
.Corporate-plan {
  background: url(/assets/images/pricing/corporate-plan.png);
  padding: 50px;
  background-size: cover;
  text-align: center;
  border-radius: 16px;
}
.feature-corpo-plan h2 {
  color: var(--black-color);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-normal);
}
.des-plan p {
  color: var(--text-color-light);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-md);
  padding-bottom: var(--spacing-sm);
  padding-left: var(--spacing-2xl);
}
.right-side-bottom {
  width: 71%;
  background: url(/assets/images/about/right-back-box.svg);
  padding: 20px;
  background-size: cover;
  border-radius: 15px;
  display: grid;
  gap: 15px;
  position: absolute;
  bottom: -166px;
  right: -110px;
}
.right-side-bottom-under {
  display: flex;
  gap: 12px;
}
.right-side-bottom-under h5 {
  font-size: var(--font-size-base);
  color: var(--white-color);
  font-weight: var(--font-weight-semibold);
  margin: 0;
}
.mobile-space {
  width: 80%;
  margin-top: -80px;
}
.leader-board-main {
  background: url(/assets/images/Leaderboard/leadboard-back.svg);
  height: 322px;
  background-size: cover;
  display: flex;
  justify-content: space-around;
}
.profile-rank h6 {
  font-size: var(--font-size-sm);
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
  padding-top: var(--spacing-sm);
  text-align: center;
}
.profile-rank {
  text-align: center;
}
