@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700,900|Open+Sans:300,400,600,700);
@import url(https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700&display=swap);
:root {
  --light_white: #f8f8f8;
  --black: #000000;
  --white: #fff;
  --primary_color: linear-gradient(
    180deg,
    #2d4a7c 0%,
    #1a2744 50%,
    #0f1728 100%
  );
  --secondary_color: #d5ecfb;
  --theme-btn: linear-gradient(135deg, #673ab7, #00bcd4);
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Outfit", sans-serif;
}

body {
  font-family: var(--font-primary);
  overflow-x: hidden !important;
  font-size: 14px;
  line-height: 22px;
  color: #000;
  background: var(--white);
}

div#userwayAccessibilityIcon {
  right: -20px !important;
  top: 20px;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-button:start:decrement,
body::-webkit-scrollbar-button:end:increment {
  display: none;
}

body::-webkit-scrollbar-track-piece {
  background-color: #f4f4ec;
  -webkit-border-radius: 0;
  border-left: 1px solid #ccc;
}

body::-webkit-scrollbar-thumb:vertical {
  -webkit-border-radius: 0;
  background: var(--primary_color);
}

::selection {
  color: var(--white);
  background: var(--black);
}

a {
  text-decoration: none !important;
  color: #000;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

ol,
ul {
  padding-left: 0rem !important;
}

.container {
  margin: 0 auto;
  padding: 0;
}

.btn,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700 !important;
  margin: 0 !important;
  color: var(--white);
}

h1 {
  font-size: 50px !important;
  line-height: 40px !important;
  padding: 10px 0 60px 0;
  margin: 0;
}

h2 {
  font-size: 36px !important;
  letter-spacing: 0;
  line-height: 1.2 !important;
}

p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  color: var(--white);
  line-height: 1.8;
}

/* header */
.header {
  transition: all 0.4s ease;
  position: fixed;
  padding: 15px;
  z-index: 9999;
  width: 90%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 20%);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

header.header.menu_fixed {
  backdrop-filter: blur(40px);
  transition: all 0.4s ease;
  background: rgb(255 255 255 / 52%);
  width: 100% !important;
  border-radius: 0 !important;
  top: -20px;
}

.header.menu_fixed .main-navigation li a {
  color: #000;
}

.header.menu_fixed .logo-main img {
  filter: brightness(0) saturate(100%);
}

.logo-main {
  max-width: 100%;
}

ul.main-navigation li {
  padding: 2px 15px;
}

ul.main-navigation li:last-child {
  background-color: transparent;
}

.logo-main a {
  font-size: 22px;
  font-weight: 700 !important;
  color: #fff;
  text-decoration: none;
}

.logo-main img {
  width: 100%;
  filter: brightness(0) invert(1) contrast(120%);
}

/* DESKTOP MENU */
.main-navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0px;
}

.ct-head-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 0px;
}

.ct-head-buttons i {
  color: var(--white);
}

.main-navigation li a {
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 500 !important;
  transition: all 0.3s ease;
  position: relative;
}

.header.menu_fixed .main-navigation li a::after {
  background: #000;
}

/* Hover underline */
.main-navigation li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--white);
  transition: 0.3s;
}

.menuList li a::after {
  background-color: #000;
}

.main-navigation li a:hover::after {
  width: 100%;
}

.main-navigation li a:hover {
  /* color: var(--white); */
  background-color: transparent;
}

.main-navigation li.active a {
  border-bottom: 1px solid;
}

/* Dropdown Mega menu  */
/* Parent Menu */
.drop_down {
  position: relative;
  padding: 10px 0px;
}

.drop_down > a {
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}

/* Mega Menu */
.dropdown-menu-big {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 450px;
  background: #fff;
  padding: 0;
  margin: 0 !important;
  list-style: none;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #ddd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  opacity: 0;
  z-index: 999;
  gap: 0 !important;
  transform: translateX(-50%) translateY(-10px) scale(0.98);
  visibility: hidden;
  transition: all 0.35s ease;
  align-items: start !important;
  /* border-radius: 15px; */
}

/* Show on Hover */
.drop_down:hover .dropdown-menu-big {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Columns */
.dropdown-menu-big > li {
  display: flex;
  flex-direction: column;
  /* border-right: 1px solid #ddd; */
}

.dropdown-menu-big > li:last-child {
  border-right: none;
}

/* Menu Items */
.dropdown-menu-big .dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px;
  color: #000;
  text-decoration: none !important;
  border-bottom: 1px solid #ddd !important;
  transition: 0.3s;
  border-left: 1px solid #ddd !important;
}

/* Remove last border */
.dropdown-menu-big > li .dropdown-item:last-child {
  border-bottom: none;
}

/* Single Dropdown */
.dropdown-menu-single {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid #ddd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Hover Show */
.drop_down:hover .dropdown-menu-single {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Remove default li spacing */
.dropdown-menu-single li {
  margin: 0;
  padding: 0;
}

/* Menu Items */
.dropdown-menu-single .dropdown-item {
  display: block;
  padding: 10px;
  color: #000;
  text-decoration: none !important;
  border-bottom: 1px solid #ddd !important;
  transition: all 0.3s ease;
}

.dropdown-menu-single .dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-menu-single {
  display: block !important;
}

/* Dropdown Mega menu end  */
/* button css */
a.theme-btn {
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500 !important;
  font-size: 15px;
  background: var(--theme-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--white);
}

a.theme-btn:hover {
  color: var(--white);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #00bcd4, #673ab7);
  transform: scale(1.05);
  border-radius: 10px;
  border: none;
}

.btnWrap i {
  color: var(--white);
}

a.theme-btn:hover i {
  color: var(--white);
}

.btnWrap {
  display: flex;
  gap: 10px;
}

button.theme-btn {
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500 !important;
  font-family: var(--font-primary) !important;
  font-size: 15px;
  background: var(--theme-btn);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--white);
}

button.theme-btn:hover {
  color: var(--white);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #00bcd4, #673ab7);
  transform: scale(1.05);
  border-radius: 10px;
}

/* button css end */
/* hero section */
section.hero {
  position: relative;
  padding: 100px 0 50px;
  z-index: 2;
  overflow: hidden;
}

section.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--primary_color);
}

#svg-stage {
  width: 100%;
  max-width: 520px;
  height: auto;
  min-height: 280px;
  aspect-ratio: 1;
  display: block;
  margin: 0 auto;
  overflow: visible;
}

#svg-stage #morph {
  transform-box: fill-box;
  transform-origin: center;
}

section.hero h1 {
  line-height: 1.2 !important;
  font-size: 60px !important;
  padding: 10px 0 0;
  text-transform: capitalize;
}

h6.hero-h {
  font-weight: 500 !important;
  font-size: 22px;
}

.menu.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #000;
  line-height: 1.5;
}

.menu.list li i {
  color: #fff;
  font-size: 14px;
  margin-top: 4px;
  background: var(--theme-btn);
  padding: 6px;
  border-radius: 50%;
  transition: 0.3s;
}

.clients-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.clients-images {
  display: flex;
}

.clients-images img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
  object-fit: cover;
}

.clients-text {
  color: #ffff;
}

/* end hero section */

/* trust section */
section.build-trust {
  overflow: hidden;
  padding: 60px 0 60px 0;
  background: var(--white);
}

.trust-media,
.trust {
  will-change: transform, opacity;
}

.trust-img {
  border-radius: 12px;
  display: block;
  transform-origin: center;
  will-change: transform;
}

.trust h2,
.trust p {
  color: #000;
}
/* trust section end  */

/* work-section */
.work-section {
  background: var(--primary_color);
  padding: 60px 0 60px 0;
  position: relative;
  z-index: 2;
}

section.work-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 173, 181, 0.18);
  filter: blur(120px);
  border-radius: 50%;
  top: 0px;
  right: -120px;
  z-index: -1;
}

.card {
  position: relative;
  background: var(--secondary_color) !important;
  border-radius: 16px !important;
  padding: 25px;
  border: 1px solid #858b9866 !important;
  transition: all 0.6s ease;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 270px;
  height: 100%;
  width: 100%;
  margin: 0;
}

.slider-card {
  padding: 0 10px;
}

.card h3 {
  font-size: 18px;
  text-transform: capitalize;
  color: var(--black);
}

.card p {
  text-align: center;
  text-transform: capitalize;
  color: var(--black);
}

.multiple-items .slick-track {
  padding: 30px 0;
}

/* Dots Container */
.multiple-items .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: static;
}

/* Hide numbers */
.multiple-items .slick-dots li button:before {
  display: none;
}

/* Normal Dot */
.multiple-items .slick-dots li {
  width: 10px;
  height: 0px;
  margin: 0;
}

.multiple-items .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary_color);
  padding: 0;
  border: none;
  transition: 0.3s ease;
}

/* Active Dot (Blue Pill) */
.multiple-items .slick-dots li.slick-active {
  width: 26px;
}

.multiple-items .slick-dots li.slick-active button {
  width: 26px;
  height: 10px;
  border-radius: 30px;
  background: var(--theme-btn);
}

.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

/* work-section end */
/* Features Section*/
section.features-section {
  padding: 60px 0;
}

.value-title {
  color: #000;
}

.value-description {
  color: #000;
}

.discovery-text {
  text-align: center;
}

.discovery-text p,
.discovery-text h2 {
  color: #000;
}

.discovery-text p {
  max-width: 1000px;
  margin: 0 auto;
}

.value-block {
  height: 170px;
  padding: 20px 20px 10px 130px;
  transform: translate(0, 0);
  border-radius: 8px;
  box-shadow: -1px 3px 10px 0 rgb(0 0 0 / 40%);
  margin-top: 20px;
}

.value-block:hover {
  transform: translate(0, -10px);
  box-shadow: -1px 3px 10px 0 rgb(0 0 0 / 40%);
}

.value-block.value-block-1 {
  transition: all 350ms ease;
  background-image:
    linear-gradient(180deg, hsla(0, 0%, 100%, 0.65), hsla(0, 0%, 100%, 0.65)),
    url(../images/welcome-watch-icon.svg);
  background-repeat: repeat, no-repeat;
  background-position:
    0 0,
    -80px 20px;
  background-size: auto, 200px;
}

.value-block.value-block-2,
.value-block.value-block-3 {
  -webkit-transition: all 350ms ease;
  background-repeat: repeat, no-repeat;
  background-size: auto, 200px;
}

.value-block.value-block-1:hover {
  background-image:
    linear-gradient(180deg, transparent, transparent),
    url(../images/welcome-watch-icon.svg);
  background-repeat: repeat, no-repeat;
  background-position:
    0 0,
    -80px -25px;
  background-size: auto, 200px;
}

.value-block.value-block-2 {
  transition: all 350ms ease;
  background-image:
    linear-gradient(180deg, hsla(0, 0%, 100%, 0.65), hsla(0, 0%, 100%, 0.65)),
    url(../images/welcome-hands-icon.svg);
  background-position:
    0 0,
    -80px 40px;
}

.value-block.value-block-2:hover {
  background-image:
    linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0)),
    url(../images/welcome-hands-icon.svg);
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, scroll;
  background-position:
    0 0,
    -80px 0;
  background-size: auto, 200px;
}

.value-block.value-block-3 {
  transition: all 350ms ease;
  background-image:
    linear-gradient(180deg, hsla(0, 0%, 100%, 0.65), hsla(0, 0%, 100%, 0.65)),
    url(../images/icon-plane-large.webp);
  background-position:
    0 0,
    -60px 20px;
}

.value-block.value-block-3:hover {
  background-image:
    linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0)),
    url(../images/icon-plane-large.webp);
  background-repeat: repeat, no-repeat;
  background-position:
    0 0,
    -60px -20px;
  background-size: auto, 200px;
}

.value-block.value-block-4 {
  transition: all 350ms ease;
  background-image:
    linear-gradient(180deg, hsla(0, 0%, 100%, 0.65), hsla(0, 0%, 100%, 0.65)),
    url(../images/icon-sun-large.webp);
  background-repeat: repeat, no-repeat;
  background-position:
    0 0,
    -80px 40px;
  background-size: auto, 200px;
}

.value-block.value-block-4:hover {
  background-image:
    linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0)),
    url(../images/icon-sun-large.webp);
  background-repeat: repeat, no-repeat;
  background-position:
    0 0,
    -80px 0;
  background-size: auto, 200px;
}

.features-section .value-block {
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Features Section End*/
/* TIMELINE */
.timeline ul {
  padding: 0px 0 50px 0;
}

.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 1px;
  margin: 0 auto;
  padding-top: 50px;
  counter-increment: timeline-counter;
  background-color: #fff0;
  border: 1px dashed #10182a;
}

.timeline ul li::after {
  content: counter(timeline-counter);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  z-index: 1;
}

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 15px;
  background: var(--secondary_color);
  color: var(--black);
  border-radius: 10px;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
}

.timeline ul li div::before {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #000 transparent transparent;
}

.timeline ul li:nth-child(even) div {
  left: -439px;
}

.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #000;
}

time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.timeline ul li.in-view::after {
  background: var(--theme-btn);
}

/* /* GENERAL MEDIA QUERIES * */
@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
  }

  .timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
}

@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px;
  }

  .timeline ul li div {
    width: calc(100vw - 91px);
  }

  .timeline ul li:nth-child(even) div {
    left: 45px;
  }

  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #0b252f transparent transparent;
  }
}

/* /* EXTRA/CLIP PATH STYLES * */
.timeline-clippy ul li::after {
  width: 40px;
  height: 40px;
  border-radius: 0;
}

.timeline-rhombus ul li::after {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-rhombus ul li div::before {
  bottom: 12px;
}

.timeline-star ul li::after {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.timeline-heptagon ul li::after {
  clip-path: polygon(
    50% 0%,
    90% 20%,
    100% 60%,
    75% 100%,
    25% 100%,
    0% 60%,
    10% 20%
  );
}

.timeline-infinite ul li::after {
  animation: scaleAnimation 2s infinite;
}

@keyframes scaleAnimation {
  0% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.25);
  }

  100% {
    transform: translateX(-50%) scale(1);
  }
}

/* TIMELINE End */
/* footer Section */
footer {
  background: var(--primary_color);
}

.footer-top {
  padding: 60px 0 30px;
  background: var(--primary_color);
}

.footer-logo img {
  width: 80%;
  filter: brightness(0) invert(1) contrast(120%);
}

.ft__nav p {
  color: #fff;
  margin-top: 10px;
}

.ft__nav h4 {
  margin-bottom: 20px !important;
  position: relative;
  color: #fff;
  text-transform: capitalize;
}

.ft__nav h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.ft__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft__nav ul li {
  margin-bottom: 10px;
}

.ft__nav ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500 !important;
  transition: all 0.3s ease;
  position: relative;
}

.ft__nav ul li a:hover {
  padding-left: 5px;
}

.ft__nav ul li i {
  margin-right: 8px;
  color: #fff;
}

.ft__nav li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

.ft__nav li a:hover::after {
  width: 100%;
}

.ft__nav li a:hover {
  color: #fff;
}

.ft__nav li.active a {
  border-bottom: 1px solid;
}

.social-icons {
  display: flex;
  gap: 5px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateY(-8px);
  color: white;
}

.facebook:hover {
  background: #1877f2;
}

.instagram:hover {
  background: linear-gradient(90deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}

.twitter:hover {
  background: #000000;
}

.linkedin:hover {
  background: #0077b5;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid #fff;
  padding: 15px 0;
  /* margin-top: 20px; */
  background: var(--primary_color);
}

.copy-rights p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

ul.policy-link {
  display: flex;
  justify-content: center;
  gap: 10px;
}

ul.policy-link li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500 !important;
}

.footer-bottom .ft__nav ul {
  display: flex;
  gap: 20px;
}

.footer-iframe iframe {
  width: 100%;
  max-width: 250px;
  height: 165px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* footer Section end */
/* FAq section */
section.faqSec {
  padding: 0px 0 60px 0;
  position: relative;
  z-index: 1;
}

section.faqSec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: -1;
}

.faq-sce h2 {
  color: var(--black);
}

.quest-section {
  background: linear-gradient(135deg, #f5f7ff, #eef1ff);
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

a.quest-title {
  color: #1a1a1a;
  padding: 20px 60px 20px 25px;
  display: block;
  width: 100%;
  position: relative;
  font-size: 17px;
  background: #ffffff;
  transition: all 0.3s ease;
  border: 1px dashed #000;
  border-radius: 15px 15px 0 0;
}

a.quest-title:hover {
  color: #000;
}

a.quest-title::before {
  content: "\f067";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: all 0.4s ease;
  background: var(--theme-btn);
}

a.quest-title.active {
  color: var(--white);
  background: var(--primary_color);
  border: 1px dashed #000;
}

a.quest-title.active::before {
  content: "\f068";
  transform: translateY(-50%) rotate(180deg);
  color: var(--white);
}

.quest-content {
  display: none;
  padding: 20px 25px 20px;
  background: #ffffff;
  border: 1px dashed #000;
  border-top: none;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.quest-content p {
  margin: 0;
  color: #000000;
}

.quest-content.open {
  display: block;
}

/* Faqs End */
/* scroll top bar */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: scale(0.4) translateY(10px);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  background: var(--theme-btn);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* show state */
.scroll-top.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* svg */
.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

circle {
  fill: none;
  stroke-width: 4;
}

circle.bg {
  stroke: rgba(0, 0, 0, 0.1);
}

circle.progress {
  stroke: var(--secondary_color);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.05s linear;
}

/* icon */
.arrow-icon {
  position: absolute;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
}

.progress-circle,
.arrow-icon {
  pointer-events: none;
}

.scroll-top.show::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0,
    transparent 80%
  );
}

/* scroll top bar end*/
/* cta form */
section.cta {
  background: var(--primary_color);
  padding: 60px 60px;
  margin: 0px 50px 20px;
  border-radius: 25px;
}

.quote-row {
  background: var(--secondary_color);
  padding: 30px;
  border-radius: 15px;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  margin-top: -100px;
  animation: floatUpDown 5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 1;
}

.quote-row::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #d5ecfb, #3b2db0);
  border-radius: 50%;
  z-index: -1;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.quote-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-row .form-group input {
  height: 50px;
  padding: 0 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.form-btn {
  margin-top: 20px;
}

.form-group label {
  color: var(--black);
  font-weight: 500;
  margin-left: 10px;
}

.info-lf h2,
.info-lf h3,
.info-lf p {
  color: var(--white);
}

.info-lf p {
  max-width: 500px;
}

.cta-form {
  position: relative;
  z-index: 1;
}

.cta .cta-form .paper-plane {
  position: absolute;
  bottom: -10%;
  left: -25%;
  z-index: -1;
  filter: brightness(0.5) invert(1);
  width: 200px;
  animation: planeFloat 5s ease-in-out infinite;
}

@keyframes planeFloat {
  0% {
    transform: translate(-50%, 20%) rotate(-27deg);
  }
  50% {
    transform: translate(-50%, calc(20% - 20px)) rotate(-27deg);
  }
  100% {
    transform: translate(-50%, 20%) rotate(-27deg);
  }
}

/* cta form */
/* inner Section */
section.inner-page-banner {
  position: relative;
  padding: 100px 0 50px;
  z-index: 2;
}

section.inner-page-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary_color);
  z-index: -1;
}

.inner-text h1 {
  line-height: 1.2 !important;
  font-size: 60px !important;
  padding: 10px 0 0;
  text-transform: capitalize;
}

.inner-text .btnWrap {
  display: flex;
  justify-content: center;
}

.service-banner .inner-text .btnWrap {
  display: flex;
  justify-content: flex-start;
}

.inner-page-form {
  background: var(--secondary_color);
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.inner-page-form::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #d5ecfb, #3b2db0);
  border-radius: 50%;
  z-index: -1;
}

.inner-page-form .form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: 0.3s;
}

.inner-page-form h2 {
  color: var(--black);
  margin-bottom: 25px !important;
}

div#counter {
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.item {
  flex: 1;
  border-right: 1px solid rgb(56 119 197);
}

.item:last-child {
  border-right: none;
}

.item p {
  margin: 0;
}

/* inner Section end */
/*  */
section.goal-area {
  padding: 60px 0px;
}

.image-anim {
  position: relative;
  overflow: hidden;
}

.image-anim:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  background-color: hsla(0, 0%, 100%, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anim:hover:before {
  height: 250%;
  transition: all 0.6s linear;
  background-color: transparent;
  visibility: hidden;
}

.goal-thumb1-1 .img-bg-shape {
  position: absolute;
  width: 582px;
  height: 515px;
  background: linear-gradient(
    23.98deg,
    #128982 15%,
    rgba(186, 226, 226, 0.02) 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  left: 0;
  right: 0;
  top: 20px;
}

.goal-thumb1-1 .thumb {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  height: 535px;
  width: 535px;
  position: relative;
}

.goal-thumb1-1 img {
  height: 100%;
  object-fit: cover;
}

.goal-thumb1-1 {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

/*  */
/* About Area Sec */
section.about-area {
  padding: 60px 0px;
}

.about-grid-card {
  display: flex;
  gap: 20px;
}

.about-grid-card .box-icon {
  width: 90px;
  height: 90px;
  background: var(--primary_color);
  border-radius: 30px 0 30px 0;
  flex: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-thumb1-1 {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 85px;
}

.about-thumb1-1 .img1 {
  border-radius: 130px 0 130px 0;
  display: inline-block;
  overflow: hidden;
}

.image-anim {
  position: relative;
  overflow: hidden;
}

.image-anim:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  background-color: hsla(0, 0%, 100%, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.about-thumb1-1 .about-experience-wrap {
  background: var(--primary_color);
  display: inline-block;
  border-radius: 60px 0 60px 0;
  padding: 40px;
  position: absolute;
  bottom: 8px;
  left: 0;
}

.movingX {
  animation: movingX 8s linear infinite;
}

@keyframes movingX {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(50px);
  }

  100% {
    transform: translateX(0);
  }
}

.about-thumb1-1 .about-experience-wrap .counter-title {
  color: #fff;
  font-size: 48px;
  margin-top: -0.15em !important;
  margin-bottom: 0 !important;
}

.about-thumb1-1 .about-experience-wrap .counter-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: -0.5em;
  display: block;
}

.about-thumb1-1:after {
  content: "";
  position: absolute;
  width: 198px;
  height: 100px;
  background: var(--primary_color);
  mix-blend-mode: multiply;
  transform: rotate(-135deg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  right: 0;
  top: 52px;
  animation: spin 15s linear infinite;
  z-index: -1;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

/* About Area Sec end */
/* Contact Section */
.contact-section {
  padding: 60px 0px;
}

/* LEFT SIDE */
.contact-info-box {
  background: var(--primary_color);
  padding: 35px;
  border-radius: 15px;
}

.contact-form-box {
  background-color: var(--secondary_color);
  padding: 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-form-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #d5ecfb, #3b2db0);
  border-radius: 50%;
  z-index: -1;
}

.contact-form-box h2 {
  color: #000;
  margin-bottom: 25px !important;
}

.contact-info-box p {
  margin-bottom: 40px;
  color: var(--white);
}
.contact-info-box h3 {
  color: var(--white);
}

.form-group {
  margin-bottom: 24px;
}

.contact-form-box .form-group label {
  color: #111;
  font-weight: 500;
}

.contact-form-box .form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: 0.3s;
}

/* Contact Section end */
/*policy Section */
section.think {
  padding: 60px 0px;
}

.content_privacy h2,
.content_privacy p {
  color: #000;
}

.menu.list a {
  color: #000;
}

p a {
  color: #000;
}

p a:hover {
  color: #000;
}

/* policy Section  */
/* book design Section */
/* =========================
   SECTION BACKGROUND
========================= */
.book-design {
  padding: 50px 0;
  background: var(--primary_color);
  overflow: hidden;
}

/* =========================
   BOOK CONTAINER
========================= */
.book {
  position: relative;
  width: 380px;
  height: 500px;
  margin: 0 10px 0 auto;
  transform-style: preserve-3d;
  perspective: 2000px;
}

/* =========================
   SHADOW
========================= */
.shadow {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 40px;
  background: rgba(0, 0, 0, 0.25);
  filter: blur(20px);
  border-radius: 50%;
  z-index: -1;
}

/* =========================
   ALL BOOK LAYERS
========================= */
.book > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transition: transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* =========================
   BACK SPINE
========================= */
.back {
  width: 20px !important;
  background: #1581ac;
  transform: translateX(-10px) rotateY(-10deg);
}

/* =========================
   COVER (FRONT)
========================= */
.cover {
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.25);
  transform: rotateY(-12deg);
  z-index: 10;
}

/* =========================
   PAGES BASE
========================= */
.page {
  background: #fffdf7;
  border: 1px solid #e8e0cf;
  box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.05);
}

/* page stacking */
.page.first {
  transform: translateX(4px) rotateY(-12deg);
}

.page.second {
  transform: translateX(8px) rotateY(-12deg);
}

.page.third {
  transform: translateX(12px) rotateY(-12deg);
}

.page.last {
  transform: translateX(16px) rotateY(-12deg);
  padding: 25px;
  align-items: center;
  overflow: hidden;
}

/* =========================
   FORM STYLING
========================= */
.quote__container h2 {
  color: #000;
  margin-bottom: 20px !important;
}

.quote__group label {
  margin-bottom: 5px;
  display: block;
  color: #000;
}

.quote__group input {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 12px;
  margin-bottom: 12px;
  outline: none;
  transition: 0.3s;
}

.quote__group input:focus {
  border-color: #1581ac;
  box-shadow: 0 0 10px rgba(21, 129, 172, 0.2);
}

/* =========================
   HOVER OPEN EFFECT
========================= */
.book.open .cover {
  transform: rotateY(-165deg);
}

.book.open .page.first {
  transform: translateX(4px) rotateY(-155deg);
}

.book.open .page.second {
  transform: translateX(8px) rotateY(-140deg);
}

.book.open .page.third {
  transform: translateX(15px) rotateY(-125deg);
}

/* book design Section end */

/* crypto section */
.crypto-section {
  padding: 60px 0px 60px 0px;
  background: var(--primary_color);
}

.section-title {
  text-align: center;
}

.section-desc {
  text-align: center;
  margin-bottom: 30px;
}

.service-slider .slick-slide {
  padding: 0 12px;
}

.diamond-box {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 238px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  background: var(--secondary_color);
  border-radius: 15px;
}

.diamond-content {
  text-align: center;
  align-items: center;
}

.diamond-content h5,
.diamond-content p {
  color: #000;
}

.service-slider-wrapper {
  position: relative;
}

.service-prev,
.service-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--theme-btn);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.service-prev {
  left: -40px;
}

.service-next {
  right: -40px;
}

.service-prev:hover,
.service-next:hover {
  background: linear-gradient(135deg, #00bcd4, #673ab7);
  color: #fff;
}

/* Dots Container */
.service-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  position: static;
}

/* Hide numbers */
.service-slider .slick-dots li button:before {
  display: none;
}

/* Normal Dot */
.service-slider .slick-dots li {
  width: 10px;
  height: 0px;
  margin: 0;
}

.service-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary_color);
  padding: 0;
  border: none;
  transition: 0.3s ease;
}

/* Active Dot (Blue Pill) */
.service-slider .slick-dots li.slick-active {
  width: 26px;
}

.service-slider .slick-dots li.slick-active button {
  width: 26px;
  height: 10px;
  border-radius: 30px;
  background: var(--theme-btn);
}

.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

/* crypto-section end */

/* promo section */
.promo-section {
  padding: 60px 0 60px 0;
}

.promo-content {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 238px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  background: var(--primary_color);
  border-radius: 15px;
  border: 2px solid var(--primary_color);
}

.promo-content:hover {
  border-color: transparent;
  box-shadow: 0 8px 25px rgb(85 81 189);
  transform: translate(0, -10px) scale(1.1);
  border: none;
}

.promo-section .promo-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary_color);
  transform: scaleY(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.promo-section .promo-content:hover::after {
  transform: scaleY(1);
}

.promo-section .promo-content:hover h5,
.promo-section .promo-content:hover p {
  color: #000;
}

.promo-content .btnWrap {
  margin: 0 auto;
}

.sectitle h2,
.sectitle p {
  color: #000;
}

.sectitle p {
  max-width: 1000px;
  margin: 0 auto;
}

/* promo section end */

/* popup form modal */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.form-modal.active {
  display: flex;
}

.form-modal .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.popupform {
  position: relative;
  width: 100%;
  max-width: 760px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: popupShow 0.35s ease;
  background: var(--primary_color);
  border-radius: 15px;
  z-index: 1;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
}

@keyframes popupShow {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popupform h2 {
  color: var(--white);
  margin-bottom: 20px !important;
}

.popupform p {
  color: var(--black);
  margin: 0;
}

.popupform .form-group {
  margin-bottom: 10px;
}

.popupform .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--white);
}

.popupform .form-group input,
.popupform .form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  transition: 0.3s;
  height: 40px;
  padding-left: 10px;
}

.popupform .form-group input:focus,
.popupform .form-group textarea:focus {
  border-color: var(--white);
}

.popupform .form-group textarea {
  height: 100px;
  resize: none;
}

.popupform .form-group input::placeholder {
  font-size: 15px;
}

.close_popup {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.close_popup:hover {
  transform: scale(1.1);
}

.popup-left img {
  position: relative;
  left: 0px;
  bottom: 0px;
  width: 315px;
  filter: drop-shadow(2px 4px 6px white);
}

.popup-left {
  overflow: hidden;
  margin-bottom: -55px;
}
/* popup form modal */

/* Book Editing Sec */
section.book-editing-section {
  padding: 60px 0 0px 0;
}

.book-editing-section ul#pills-tab {
  padding: 20px 0 0;
}

.book-editing-section .nav-pills .nav-link {
  color: #000;
  height: 107px;
  text-transform: capitalize;
  padding: 10px;
  width: 130px;
  background: 0 0;
  border: 1px solid #000;
  border-radius: 30px 0 30px 0;
  margin: 5px;
  font-weight: 700;
  line-height: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--white) !important;
  background: var(--theme-btn) !important;
  border: 1px solid #000;
}

.book-editing-section img {
  max-width: 100%;
  min-height: calc(100% - 30px);
  object-fit: cover;
}

.nav-pills .nav-link.active img {
  filter: brightness(0) invert(1);
}

.tab-content h3,
.tab-content h2,
.tab-content p {
  color: #000;
}

.tab-content {
  text-align: left;
}

/* Book Editing Sec End */

/* process sec */
.process-section {
  padding: 60px 0px 0px 0px;
}

.center-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.center-circle h3 {
  color: #000;
}

.center-circle p {
  line-height: 1.4;
  width: 80%;
  color: #000;
  margin: 0px !important;
}

/* Colored Ring */
.center-circle::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  z-index: -2;
  animation: rgbGlow 4s linear infinite;
  background: var(--primary_color);
}

@keyframes rgbGlow {
  0% {
    box-shadow: 0 0 25px #ff5722;
  }

  25% {
    box-shadow: 0 0 25px #7b3fa0;
  }

  50% {
    box-shadow: 0 0 25px #45b6c4;
  }

  75% {
    box-shadow: 0 0 25px #3f8fc0;
  }

  100% {
    box-shadow: 0 0 25px #e53935;
  }
}

.center-circle::after {
  content: "";
  position: absolute;
  inset: 15px;
  background: white;
  border-radius: 50%;
  z-index: -1;
}

.infographic-wrapper {
  position: relative;
  width: 600px;
  height: 500px;
  margin: 25px auto auto;
}

/* Step circles */
.step {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 5;
}

.step span {
  font-size: 22px;
  line-height: 1;
}

/* Tooltip */
.tooltip {
  position: absolute;
  background: #222;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  top: -55px;
  left: 50%;

  transform: translateX(-50%) translateY(5px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;

  font-size: 14px;

  z-index: 20;
}

.step:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.step:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Positions */
.step1 {
  background: #ff5722;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.step1:hover {
  transform: translateX(-50%) scale(1.1);
}

.step2 {
  background: #7b3fa0;
  top: 95px;
  right: 55px;
}

.step2:hover {
  transform: scale(1.1);
}

.step3 {
  background: #45b6c4;
  bottom: 95px;
  right: 55px;
}

.step3:hover {
  transform: scale(1.1);
}
.step4 {
  background: #3f8fc0;
  bottom: 0;
  left: 50%;

  transform: translateX(-50%);
}

.step4:hover {
  transform: translateX(-50%) scale(1.1);
}

.step5 {
  background: #e53935;
  bottom: 95px;
  left: 55px;
}

.step5:hover {
  transform: scale(1.1);
}
.step6 {
  background: #000;
  top: 95px;
  left: 55px;
}

.step6:hover {
  transform: scale(1.1);
}

.center-circle h3,
.center-circle p,
.process-tab-title,
.process-tab-desc {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(12px);
}

img.curved-arrow-1,
img.curved-arrow-2,
img.curved-arrow-3,
img.curved-arrow-4,
img.curved-arrow-5,
img.curved-arrow-6 {
  position: absolute;
  width: 100px;
  height: auto;
  pointer-events: none;
  z-index: 2;
  display: block;
}

img.curved-arrow-1 {
  left: 135px;
  top: 5px;
  transform: rotate(15deg);
}

img.curved-arrow-2 {
  right: 135px;
  top: 0px;
  transform: rotate(60deg);
}

img.curved-arrow-3 {
  right: 20px;
  bottom: 200px;
  transform: rotate(-230deg);
}

img.curved-arrow-4 {
  right: 130px;
  bottom: 0px;
  transform: rotate(-160deg);
}

img.curved-arrow-5 {
  left: 115px;
  bottom: 0px;
  transform: rotate(-120deg);
}

img.curved-arrow-6 {
  left: 145px;
  top: 30px;

  transform: rotate(-15deg);
}

img.curved-arrow-6 {
  left: 20px;
  top: 200px;
  transform: rotate(-50deg);
}

.arrow-img {
  position: absolute;
  width: 100px;
}
/* process sec end */

/* genre inner section */
section.genre-inner-banner {
  background: var(--primary_color);
  position: relative;
  border-bottom: 1px solid #c3d7df;
  margin-bottom: 2px;
  padding: 100px 0px 60px 0px;
}

.inner-text-genre h1 {
  line-height: 1.2 !important;
  font-size: 60px !important;
  padding: 10px 0 0;
  text-transform: capitalize;
  color: var(--white);
}

.inner-text-genre P {
  color: var(--white);
}

/* section.genre-inner-banner:before {
  content: "";
  background: url("../images/genre-img/genre-inner-banner-before.png") no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  height: 227px;
  width: 167px;
} */
section.genre-inner-banner .genre-image {
  text-align: right;
  position: relative;
  right: -50px;
  z-index: 0;
}

.genre-inner-banner .genre-image:before {
  content: "";
  background: url(../images/genre-img/genre-ib-image.jpg) no-repeat;
  position: absolute;
  left: -60px;
  bottom: -60px;
  height: 285px;
  width: 440px;
  z-index: -1;
}

/* ghost await */
section.ghost-await {
  padding: 60px 0px;
}

.ghost-await .box {
  position: relative;
  background: var(--primary_color);
  padding: 30px 50px;
  border-radius: 30px;
  margin: 0px 100px 50px;
  z-index: 0;
}

.ghost-await .box:before {
  content: "";
  background: url(../images/genre-img/genre-ab-before.png) no-repeat;
  height: 320px;
  width: 320px;
  position: absolute;
  left: -60px;
  top: -50px;
  opacity: 0.5;
  z-index: -1;
}

.box .menu.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.box .menu.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.5;
}

.box .menu.list li i {
  color: #fff;
  font-size: 14px;
  margin-top: 4px;
  background: var(--theme-btn);
  padding: 6px;
  border-radius: 50%;
  transition: 0.3s;
}

/* ghost await end */
/* About Purpose */
section.about-purpose {
  padding: 60px 0px;
  background: var(--primary_color);
}

section.about-purpose h2,
section.about-purpose p {
  color: #fff;
}

.offset-1 p,
.offset-1 h3 {
  color: #000 !important;
}

.about-purpose-heading {
  position: relative;
  display: inline-block;
}

.about-purpose .box {
  padding: 30px 0;
  background: #eceff3;
  background: linear-gradient(90deg, #eceff3 0, #fff 47%);
  margin: 0 0 60px;
  position: relative;
  z-index: 0;
}

.about-purpose .box.right {
  background: #eceff3;
  background: linear-gradient(270deg, #eceff3 0, #fff 47%);
}

.about-purpose .box:before {
  content: "";
  background: url(../images/genre-img/genre-ab-before.png) no-repeat;
  position: absolute;
  left: -70px;
  bottom: -120px;
  height: 320px;
  width: 320px;
  z-index: -1;
}

.about-purpose .box.right:before {
  left: inherit;
  right: -70px;
}

/* About Purpose end */
/* profeading service   */
section.profeading-service {
  padding: 60px 0px;
  background: #fff;
}

.profeading-text h2,
.profeading-text p {
  color: #000;
}

.profeading-service .box {
  background: #fff;
  padding: 20px;
  margin: 0 0 20px;
  height: 230px;
  border-bottom: 5px solid #2a4473;
  border-right: 5px solid #263d67;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.profeading-service .box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary_color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: -1;
}

.profeading-service .box:hover::after {
  transform: scaleY(1);
}

.profeading-service .box:hover {
  color: #fff;
}

.profeading-service .box:hover h4,
.profeading-service .box:hover p {
  color: #000;
}

.profeading-service .box h4 {
  font-size: 20px;
  color: #000;
}

.profeading-service .box p {
  color: #000;
  font-weight: 500;
}

/* profeading service end   */
.proof-type {
  /* background: url(../images/genre-img/proof-type.bg.jpg) 0 0 / cover no-repeat; */
  padding: 60px 0;
  background: var(--primary_color);
}

.edit-type ul li {
  color: var(--white);
  width: 49%;
  display: inline-block;
  margin: 0 0 24px;
}

/* .box-ul ul li span img {
  filter: brightness(0) saturate(100%);
} */

/* profeading service end */
/* black sec audiobook */
section.black-sec {
  background: #fff;
  padding: 60px 0;
}

.audiobook-text h3,
.audiobook-text h2,
.audiobook-text p {
  color: #000;
}

/* black sec audiobook end  */

/* Platform Logo Section */

section.social_section {
  background: #fff;
  padding: 10px 0;
  border-top: 1px solid #eceff4;
  border-bottom: 1px solid #eceff4;
  overflow: hidden;
}
.platforms_list {
  margin: 0 -8px;
}

.platforms_list .slick-slide {
  margin: 0 8px;
}

.platforms_list .slick-list {
  overflow: hidden;
  padding: 10px 0px;
}

.platforms_list .list_block {
  height: 70px;
  background: #fff;
  border-radius: 10px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--black);
  transition: 0.3s;
}

.platforms_list .list_block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.platforms_list .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.platforms_list .icon img {
  width: 120px;
}
/*PlatForm Logo Section Begin*/

/* section service */
section.service-sec {
  padding: 60px 0px;
  background: var(--primary_color);
}

.servcie-detail {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 10px 10px 10px rgb(0 0 0 / 4%);
  min-height: 250px;
  transition: 0.4s all ease;
}

.service-text h4 {
  margin-bottom: 10px !important;
  color: var(--black);
}
.service-text p {
  color: var(--black);
}

.service-img {
  margin-bottom: 15px;
}

.service__content {
  flex: 1;
  position: sticky;
  top: 120px;
}
/* section service end */

/* success partner */
section.success-partner {
  padding: 60px 0px;
}

.service-box-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.service-box {
  background: var(--primary_color);
  border-radius: 15px;
  padding: 24px;
  transition: all 0.3s ease;
  align-items: center;
  gap: 20px;
}

.icon-box i {
  font-size: 28px;
  color: var(--white);
}

.service__content__inner {
  flex: 1;
  position: sticky;
  top: 120px;
}

.service__content__inner h2,
.service__content__inner p {
  color: var(--black);
}
/* success partner end */

/* blog Section */

section.blogs-section {
  padding: 60px 0 60px 0;
}

.blog-box {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 30px;
  transition: all 0.35s ease;
  border: 1px solid var(--black);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-box img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.no-image {
  display: none;
  height: 220px;
  align-items: center;
  justify-content: center;
  background: var(--primary_color);
  border-radius: 12px;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.blog-box h2 {
  color: var(--black);
  font-size: 25px !important;
  margin-bottom: 10px !important;
}
.blog-box p {
  color: var(--black);
}

.blog-img {
  border-radius: 15px;
}
/* blog Section end */

/* blog Section details */
.blog-page {
  padding: 60px 0;
  background: #fff;
}

.toc-box {
  background: #f9fafc;
  border: 1px solid #000;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  position: sticky;
  top: 100px;
}

.nav-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-tabs .nav-link {
  text-align: left;
  background: var(--theme-btn) !important;
  padding: 12px 14px;
  border-radius: 12px !important;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #eee !important;
  font-family: var(--font-primary) !important;
}

.nav-tabs .nav-link:hover {
  color: #fff;
  background: var(--primary_color) !important;
}

.nav-tabs .nav-link.active {
  background: var(--primary_color) !important;
  color: #fff !important;
  border-color: #000000 !important;
  border-radius: 5px;
}

.tab-content {
  padding-left: 20px;
}

.custom-tab {
  display: block !important;
  opacity: 1 !important;
  scroll-margin-top: 100px;
}
/* blog Section details end */

/* Review Section  */
.review-sec {
  position: relative;
  overflow: hidden;
  padding: 20px 0 20px 0;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  width: max-content;
  gap: 28px;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content.left {
  animation: tr-scroll-left 45s linear infinite;
}

@keyframes tr-scroll-left {
  0% {
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }

  100% {
    -webkit-transform: translatex(-33.333%);
    -moz-transform: translatex(-33.333%);
    -o-transform: translatex(-33.333%);
    transform: translatex(-33.333%);
  }
}

.marquee-content.right {
  animation: tr-scroll-right 45s linear infinite;
}

@keyframes tr-scroll-right {
  0% {
    -webkit-transform: translatex(-33.333%);
    -moz-transform: translatex(-33.333%);
    -o-transform: translatex(-33.333%);
    transform: translatex(-33.333%);
  }

  100% {
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}

.review-card {
  width: 300px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  padding: 20px;
  flex-shrink: 0;
}

.review-head img {
  width: 50%;
}

.reviewtitle h2,
.reviewtitle p {
  color: #000;
}

.reviewtitle p {
  max-width: 1000px;
  margin: 0 auto 50px auto;
}

.review-banner .inner-text .btnWrap {
  display: flex;
  justify-content: flex-start;
}

.author h6 {
  color: var(--black);
}

.review-head span {
  font-size: 13px;
  color: #888;
}

.review-card p {
  line-height: 1.4;
  color: var(--black);
}

.star i {
  color: rgb(255, 212, 59);
  margin-bottom: 16px;
}

/* Left Fade */

.marquee::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, #fff, transparent);
  z-index: 2;
}

/* Right Fade */

.marquee::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to left, #fff, transparent);
  z-index: 2;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeReverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}
/* Review Section End */

/* thankyou Sec */
section.thankyou-banner {
  height: 330px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* thankyou Sec end */
