@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
}

@font-face {
  font-family: 'IvyPrestoDisplay';
  src: url('../fonts/fonnts.com-Ivy-Presto-Display-.otf') format('woff2'),
    url('../fonts/fonnts.com-Ivy-Presto-Display-.otf') format('woff'),
    url('../fonts/fonnts.com-Ivy-Presto-Display-.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'IvyPrestoDisplayThin';
  src: url('../fonts/fonnts.com-Ivy-Presto-Display-Thin.otf') format('woff2'),
    url('../fonts/fonnts.com-Ivy-Presto-Display-Thin.otf') format('woff'),
    url('../fonts/fonnts.com-Ivy-Presto-Display-Thin.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  background: #FFFCF6;
}

h1 {
  font-family: 'IvyPrestoDisplay';
}

h2 {
  font-family: "Inter", sans-serif;
}

p {
  font-family: "Inter", sans-serif;
  color: #01312C;
  font-size: 16px;
}

ul {
  padding-left: 0px;
  padding-bottom: 0px;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.ptb-20 {
  padding-top: 30px;
}

.ptb-40 {
  padding: 60px 0px;
}

.align-center {
  display: flex;
  align-items: center;
  border-right: 1px solid #F29D2D;
}

.bg-employee {
  background: #FFF8ED;
}

/* =============== HEADER =============== */
/* Header */
.header {
  background-color: #FFFCF6;
  /* cream color */
}

.header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}

.sticky-head {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo-text h1 {
  font-size: 18px;
  font-weight: bold;
}

.logo-text p {
  font-size: 12px;
  color: #666;
}

/* Navigation */
.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  padding: 8px 5px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #000;
}

/* Dropdown base */
.dropdown {
  position: relative;
}

/* Hide native checkbox */
.dropdown input {
  display: none;
}

/* Dropdown label */
.dropdown-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-weight: 500;
}

/* Arrow style */
.arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
  transition: transform 0.3s;
}

/* Menu hidden */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  list-style: none;
  min-width: 150px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  display: inline-block !important;
}

.arrow-icon i {
  font-size: 13px;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  color: #333;
}

.dropdown-menu li a:hover {
  background-color: #f2f2f2;
}

.dropdown input:checked~.dropdown-menu {
  max-height: 300px;
  opacity: 1;
}

.dropdown input:checked+.dropdown-label .arrow-icon {
  transform: rotate(180deg);
}

/* Connect button */
.connect-btn {
  background: linear-gradient(90deg, #FFD12C, #F29D2D);
  color: #000 !important;
  padding: 8px 16px !important;
  border-radius: 20px;
  font-weight: 400 !important;
  transition: opacity 0.3s;
  border: none;
}

.connect-btn:hover {
  opacity: 0.85;
}

/* ====== HAMBURGER ====== */
.hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  /* right side */
  z-index: 1001;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate to Cross (X) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* === RIGHT SIDE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  /* hidden */
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 60px 20px 20px;
  /* leave space for hamburger */
  transition: right 0.3s ease;
  z-index: 1000;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin-bottom: 15px;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* ====== MOBILE DROPDOWN ====== */
.mobile-dropdown label {
  display: block;
  cursor: pointer;
  position: relative;
}

.mobile-dropdown input {
  display: none;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
}

.mobile-dropdown input:checked+.mobile-dropdown-menu {
  max-height: 300px;
}

.mobile-dropdown-menu li a {
  display: block;
  padding: 6px 0;
  color: #555;
}

.hamburger {
  display: none;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}



/* ====== FULL-WIDTH MEGA MENU ====== */
.mega-dropdown {
  position: static;
  /* So it can stretch full width */
}

/* Mega menu container */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  /* full width of viewport */
  background: #FFFCF6;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

/* Inner container to align with header content width */
.mega-menu .view-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  /* same width as your main layout */
  padding: 0 30px;
}

/* Show mega menu when checked */
.mega-dropdown input:checked~.mega-menu {
  opacity: 1;
  max-height: 600px;
}

/* Each column inside mega menu */
.mega-column {
  flex: 1;
  min-width: 200px;
}

.mega-column h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li {
  margin-bottom: 8px;
}

.mega-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.3s ease;
}

.mega-column ul li a:hover {
  color: #000;
}


.img-services {
  background: #FFF5D2;
  border-radius: 8px;
  border-radius: 8px 8px 0px 0px;
}

.best-services-view h5 {
  color: #fff;
  background: linear-gradient(90deg, #FFD12C, #F29D2D);
  padding: 8px;
  border-radius: 0px 0px 8px 8px;
}

.img-services img {
  margin-bottom: 20px;
  padding: 3px 20px;
}

/* Hover open for desktop */
@media (hover: hover) {
  .mega-dropdown:hover .mega-menu {
    opacity: 1;
    max-height: 600px;
  }

  .mega-dropdown input {
    display: none;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .mega-menu {
    position: static;
    flex-direction: column;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 10px 0;
  }

  .mega-menu .view-container {
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    padding: 0 20px;
  }

  .mega-column {
    margin-bottom: 10px;
  }
}

.enroll-mega-menu ul {
  display: block;
}

.enroll-mega-menu ul li {
  margin-bottom: 20px;
}

.enroll-mega-menu img {
  width: 30px;
  height: 30px;
}

.active-link {
  background: #FFFEFC;
  box-shadow: 0px 10.9px 53.45px -2.69px #060C3B14;
  padding: 15px;
  width: 90%;
}


/* header */


/* banner css */

.slick-next,
.slick-prev {
  background: linear-gradient(275deg, #eee 4.35%, hsla(0, 0%, 100%, 0) 95.93%) !important;
}

.custom-slider-wrapper .slick-prev,
.custom-slider-wrapper .slick-next {
  background: linear-gradient(275deg, #eee 4.35%, hsla(0, 0%, 100%, 0) 95.93%) !important;
}

/* Basic container sizing */
.slider-wrapper {
  margin: 40px auto;
  padding: 0 12px;
  width: 100%;
}

.slick-slider .slide img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.slick-dots {
  bottom: 12px;
}

.slick-dots li button:before {
  font-size: 15px;
  opacity: 0.8;
}

.slick-prev,
.slick-next {
  display: block !important;
}

/* Small visual polish */
.slide {
  overflow: hidden;
}

.transform-icon {
  background: #FBE1BC;
  padding: 10px 20px;
  border-radius: 30px;
  color: #E55000;
  margin-bottom: 16px;
  display: inline-block;
  font-size: 14px;
}

.banner-design {
  text-align: center;
  position: relative;
  height: 500px !important
}

.banner-slider .slick-dots li button:before {
  font-size: 16px !important;
  color: #FFEDCD;
}

.banner-slider .slick-dots {
  bottom: -25px !important;
}

.banner-slider .slick-dots li.slick-active button:before {
  color: #F29D2D !important;
}

.banner-design h1 {
  font-family: 'IvyPrestoDisplay';
  text-align: center;
  background: -webkit-linear-gradient(45deg, #FFD12C, #F29D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-design p {
  font-size: 20px;
}

.get-stared {
  background: linear-gradient(90deg, #FFD12C, #F29D2D);
  color: #000 !important;
  padding: 8px 16px !important;
  border-radius: 20px;
  font-weight: 400 !important;
}

.book-demo {
  border: 1px solid #F29D2D;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 400;
}

/* banner css */

/* logo client */
.brand-launched h3 {
  background: -webkit-linear-gradient(45deg, #FFD12C, #F29D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Inter';
  font-weight: 800;
  font-size: 40px;
}

.brand-launched p {
  margin-bottom: 0;
  font-size: 13px;
}

.my-slider-container {
  overflow: hidden;
  width: 100%;
  margin: 40px auto;
  background: transparent;
}

.my-slider-track {
  display: flex;
  width: calc(250px * 16);
  /* adjust based on number of logos */
  animation: my-slider-scroll 25s linear infinite;
  cursor: pointer;
  align-items: center;
}

.my-slider-track:hover {
  animation-play-state: paused;
}

.my-slider-item {
  flex: 0 0 150px;
  margin: 0 15px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.my-slider-item img {
  /* width: 100%; */
  object-fit: contain;
  display: block;
}

.my-slider-item:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .my-slider-item {
    flex: 0 0 100px;
    margin: 0 10px;
  }
}

@keyframes my-slider-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 8));
  }
}

/* logo client */

/* total-customer */
.stats-section-box {
  background: #F29D2D;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  border-radius: 8px;
}

.stats-section {
  display: flex;
  justify-content: space-around;
  align-items: center;

}

.stat-box {
  flex: 1;
}

.stat-number {
  font-size: 30px;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
  color: #FFFCF6;
}

.stat-text {
  font-size: 16px;
  opacity: 0.9;
}

.making-impact h2 {
  font-weight: 800;
}

.making-impact p {
  color: #fff;
}


/* total customer */

/* detail core */
.phone-mockup img {
  width: 100%;
}

.phone-mockup {
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.solution-box {
  background: #F0F8E6;
  padding: 15px;
  border-radius: 13px;
}

.solution-box.services-box1 {
  background: #F8F3E6;
}

.solution-box.services-box2 {
  background: #E6F8F0;
}

.solution-box.services-box3 {
  background: #E6F2F8;
}

.solution-box.services-box4 {
  background: #ECE6F8;
}

.solution-box h3 {
  font-family: 'IvyPrestoDisplayThin';
  font-size: 27px;
}

.solution-box p {
  margin-bottom: 30px;
}

.solution-box a {
  color: #01312C;
}

.icon-star img {
  width: 28px;
  border-radius: 0 !important;
}

.solution-box a {
  display: flex;
  align-items: center;
}

.icon-star {
  border: 1px solid #000;
  padding: 6px;
  margin-right: 10px;
  border-radius: 5px;
}

/* detail core */

/* Happy Customer */
.what-our h2 {
  font-family: 'IvyPrestoDisplay';
  font-size: 45px;
}

.video-ico img {
  width: 50px !important;
}

.customer-view {
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-card {
  background: #F8F3E6;
  padding: 15px;
  box-shadow: 0px 4px 4px #00000040;
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
}

.client-box {
  display: flex;
  margin-bottom: 15px;
}

.client-img img {
  width: 62px !important;
  margin-right: 15px;
}

.quotes-icon img {
  width: 35px !important;
  border-radius: 0px !important;
  position: absolute;
  left: 8px;
  bottom: 115px;
}

.video-box {
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}

.video-ico {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.client-card p {
  padding-left: 30px;
}

.client-details h6 {
  font-family: 'IvyPrestoDisplayThin';
  font-size: 20px;
}

.client-details span {
  font-size: 14px;
}

/* Happy Customer */

/* FAQ */
.faq-box .accordion {
  background: transparent !important;
  border: none !important;
}

.faq-box .accordion-item {
  background: transparent !important;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0px;
}

.faq-box .accordion-button:not(.collapsed) {
  color: #000 !important;
}

.faq-box .accordion-button {
  background: transparent !important;
}

.faq-box .accordion-button:not(.collapsed) {
  background: transparent !important;
}

.faq-box .accordion-button:focus {
  box-shadow: none !important;
}

/* FAQ */

/* Learn More */
.learn-more-about h2 {
  font-family: 'IvyPrestoDisplay';
  text-align: center;
  background: -webkit-linear-gradient(45deg, #FFD12C, #F29D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.happy-custom {
  background: -webkit-linear-gradient(45deg, #FFD12C, #F29D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'IvyPrestoDisplay';
}

.for-brands {
  color: #01312C;
  font-weight: 300;
  -webkit-text-fill-color: initial;
  background: none;
  font-family: 'IvyPrestoDisplay';
  -webkit-background-clip: initial;
}

.learn-more-about {
  text-align: center;
  margin-bottom: 40px;
}

/* Slider container */
.custom-slider-wrapper {
  position: relative;
  width: 100%;
  margin: auto;
}

/* Slide styling */
.custom-slide {
  padding: 10px;
}

.custom-slide img {
  width: 100%;
  border-radius: 15px;
  /* filter: blur(3px); */
  transition: filter 0.3s ease;
}

.custom-slide img:hover {
  filter: blur(0);
  /* clear on hover */
}

/* Arrows hidden by default */
.custom-slider-wrapper .slick-prev,
.custom-slider-wrapper .slick-next {
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

/* Show arrows on hover */
.custom-slider-wrapper .slick-prev,
.custom-slider-wrapper .slick-next {
  opacity: 1;
}

/* Arrow style */
.custom-slider-wrapper .slick-prev:before,
.custom-slider-wrapper .slick-next:before {
  color: #000;
  font-size: 30px;

}

.custom-influencer-slick-slider .slick-prev {
  left: 39px !important;
}

.custom-influencer-slick-slider .slick-next {
  right: 39px !important;
}

.custom-influencer-slick-slider .slick-prev {
  z-index: 10;
  --tw-rotate: 180deg !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}

.custom-influencer-slick-slider .slick-next,
.slick-prev {
  background: linear-gradient(275deg, #eee 4.35%, hsla(0, 0%, 100%, 0) 95.93%) !important;
}

.learn-box-img img {
  border-radius: 15px 15px 0px 0px;
}

.learn-box-content {
  background: #fff;
  box-shadow: 0px 4px 4px #00000040;
  padding: 15px;
  border-radius: 0px 0px 15px 15px;
  height: 230px;
}


.learn-box-content h6 {
  font-size: 20px;
  font-family: 'IvyPrestoDisplayThin';
  color: #01312C;
}

.read-more:hover {
  background: #F29D2D;
}


.read-more {
  background: #fff;
  padding: 5px 20px;
  border-radius: 30px;
  border: 1px solid #F29D2D;

}
.learn-box-content a{
  color: #000;
}

.arrow-icon {
  margin-left: 17px;
}

/* Learn Mode */


/* let Build */
.lets-build h2 {
  font-size: 60px;
  background: -webkit-linear-gradient(45deg, #FFD12C, #F29D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.for-brand {
  color: #01312C;
  font-weight: 300;
  -webkit-text-fill-color: initial;
  background: none;
  -webkit-background-clip: initial;
}

.cricle-point {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: linear-gradient(90deg, #FFD12C, #F29D2D);
  border-radius: 50%;
}

/* let Build */

/* footer */
.footer {
  background: #f8f8f3;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
  color: #003322;
  font-size: 14px;
  line-height: 1.6;
}

.footer .logo-img {
  max-width: 120px;
  margin-bottom: 30px;
}


.footer-heading {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: 'IvyPrestoDisplay';
  color: #01312C;
}

.footer-links,
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.contact-info li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #01312C;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #01312C;
}

.contact-info li i {
  margin-right: 6px;
  color: #01312C;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #01312C;
  font-size: 18px;
  transition: 0.3s;
}

.contact-info li a {
  color: #000;
  display: flex;
}

.contact-info img {
  margin-bottom: 0px !important;
  margin-right: 10px;
}

.contact-info img {
  margin-bottom: 0px !important;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
}

.bottom-links a {
  text-decoration: none;
  color: #003322;
  margin-right: 5px;
}

.bottom-links a:hover {
  color: #00704A;
}

.text-md-end {
  text-align: right;
}

.social-icons a {
  background: #000;
  margin-right: 10px;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline;
}

.footer-logo img {
  margin-bottom: 30px;
}

/* footer */



.slick-slider:hover .slick-next,
.slick-slider:hover .slick-prev {
  opacity: 1 !important;
}

.slick-next,
.slick-prev {
  background: linear-gradient(275deg, #eee 4.35%, hsla(0, 0%, 100%, 0) 95.93%) !important;
}




/* About us page css */

.our-mission {
  background: linear-gradient(180deg, #FCF0DC, #FFDDA5);
  padding: 50px;
  border-radius: 15px;
  position: relative;
  margin-bottom: 20px;
}

.our-vision {
  background: linear-gradient(180deg, #DCF2FC, #A0EDFD);
  padding: 51px;
  border-radius: 15px;
  position: relative;
  margin-bottom: 20px;
}

.our-mission h3 {
  font-family: 'IvyPrestoDisplay';
  color: #000;
  font-size: 25px;
}

.our-vision h3 {
  font-family: 'IvyPrestoDisplay';
  font-size: 25px;
}

.box {
  width: 40px;
  height: 40px;
  background: orange;
  display: inline-block;
  border-radius: 5px;
  margin-right: 10px;
}

.our-mission h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.box-blue {
  width: 40px;
  height: 40px;
  background: #9FC4FF;
  display: inline-block;
  border-radius: 5px;
  margin-right: 10px;
}

.our-vision h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 999;
}

.our-vision h3:after {
  content: '';
  width: 108px;
  height: 5px;
  position: absolute;
  left: 56px;
  background: linear-gradient(90deg, #8ec5fc, #5b57e2);
  top: 38px;
  border-radius: 30px;
}

.our-mission h3:after {
  content: '';
  width: 108px;
  height: 5px;
  position: absolute;
  left: 56px;
  background: linear-gradient(90deg, #FFD12C, #F29D2D);
  top: 38px;
  border-radius: 30px;
}

.custom-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-center p {
  margin-bottom: 0;
}

.custom-center p span {
  margin-right: 10px;
}

.cricle-or1 {
  width: 100px;
  height: 100px;
  background: #FBE7CD;
  border-radius: 50px 10px 50px 50px;
  position: absolute;
  top: -1px;
  right: 0px;
}


.cricle-or2 {
  width: 31px;
  height: 55px;
  background: #FBE7CD;
  border-radius: 0px 50px 50px 0px;
  position: absolute;
  bottom: 122px;
  left: 0px;
}

.cricle-blue1 {
  width: 100px;
  height: 100px;
  background: #CDDFFB;
  border-radius: 15px 50px 50px 50px;
  position: absolute;
  top: -1px;
  left: 0px;
}


.cricle-blue2 {
  width: 31px;
  height: 55px;
  background: #CDDFFB;
  border-radius: 50px 0px 0px 50px;
  position: absolute;
  bottom: 122px;
  right: 0px;
}

.reedem-now-box {
  background: #FFFFFFCC;
  box-shadow: 0px 24px 40px #2222221A;
  text-align: center;
  padding: 30px 50px;
  border-radius: 15px;
  position: absolute;
  top: 179px;
  right: 17px;
}

.reedem-now-box span {
  font-size: 12px;
}

.reedem-now-box h6 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}


.btn-reedem-now {
  border: 1px solid #5ABF7E;
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 12px;
}

.plus {
  background: #5BC17F;
  width: 20px;
  height: 20px;
  display: inline-block;
  color: #fff;
  border-radius: 50%;
  margin-right: 3px;
}

.best-platfrom-box {
  background: #FFFFFF;
  box-shadow: 0px 4px 4px #00000040;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
}

.best-from-content h5 {
  font-family: 'IvyPrestoDisplay';
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.best-from-content h6 {
  font-size: 16px;
  margin-bottom: 0;
}

.best-from-content p {
  font-size: 14px;
  margin-bottom: 0;
}

.platfrom-icon-orange {
  width: 40px;
  height: 40px;
  background: #F3A12D;
  border-radius: 6px;
  padding: 8px;
}

.radical-gardient-cricle-orange {
  background: radial-gradient(circle at center, #F3A12D1A, #FFD49800 100%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: absolute;
  top: -18px;
  right: -1px;
}

.date-from-orange h6 {
  color: #EA951C;
  font-weight: 700;
  z-index: 9999;
}


.platfrom-icon-orange {
  width: 40px;
  height: 40px;
  background: #F3A12D;
  border-radius: 6px;
}

.radical-gardient-cricle-purple {
  background: radial-gradient(circle at center, #6162F61A, #6162f62e 100%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: absolute;
  top: -18px;
  right: -1px;
}

.date-from-purple h6 {
  color: #6162F6;
  font-weight: 700;
  z-index: 9999;

}


.platfrom-icon-purple {
  width: 40px;
  height: 40px;
  background: #6162F6;
  border-radius: 6px;
  padding: 8px;
}

.radical-gardient-cricle-green {
  background: radial-gradient(#49d10038, #49D1001A 100%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: absolute;
  top: -18px;
  right: -1px;
}

.platfrom-icon-green {
  background: #49D100;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  padding: 8px;
}

.date-from-green h6 {
  color: #49D100;
  font-weight: 700;
  z-index: 9999;
}

.bg-excellence {
  background: #F8F3E6;
}

.build-visibilty {
  text-align: center;
}

.build-visibilty img {
  margin: 0 auto;
  width: 50%;
  margin-bottom: 30px;
}

.visibilty-show-content h4 {
  text-align: center;
  font-family: 'IvyPrestoDisplay';
  font-size: 22px;
}

.visibilty-show-content {
  margin-right: 10px;
  margin-left: 10px;
}

.visibilty-show-content p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 0;
}


.point-divider {
  margin: 10px 0px 20px 0px;
  width: 100%;
  height: 1px;
  background: #000000;
  position: relative;
}

.line-active {
  width: 30%;
  height: 3px;
  background: linear-gradient(90deg, #FFD12C, #F29D2D);
  position: absolute;
  top: -1px;
}

.story-award {
  background: #fff;
  box-shadow: 0px 4px 4px #00000040;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px !important;
  border-radius: 20px;
  margin: 0px 10px;
}

.story-award img {
  margin: 0 auto;
  margin-bottom: 20px !important;
}

.story-award h4 {
  font-size: 18px;
  font-family: 'IvyPrestoDisplay';
  color: #F3A12D;
}

.story-award.slick-slide.slick-current.slick-active.slick-center {
  opacity: 1;
}

.story-award.slick-slide.slick-active {
  opacity: 0.1;
}

.our-story-slider .slick-prev {
  left: 31% !important;
  box-shadow: none;
  background: transparent !important;
}

.custom-arrow img {
  width: 20px !important;
}

.our-story-slider .slick-next {
  right: 31% !important;
  box-shadow: none;
  background: transparent !important;
}

.our-story-slider .slick-prev:before,
.slick-next:before {
  content: "" !important;
}

.our-story-slider .slick-prev,
.slick-next {
  display: block;
}


/* customer loyalty */
.banner-designed {
  text-align: center;
  position: relative;
}

.banner-designed h1 {
  font-family: 'IvyPrestoDisplay';
  text-align: center;
  background: -webkit-linear-gradient(45deg, #FFD12C, #F29D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.graph-dashboard {
  background: #F8F3E6;
  padding: 50px;
}

.key-feature-box h3 {
  font-size: 24px;
  font-family: 'IvyPrestoDisplay';  
  margin-bottom: 0;
}

.key-feature-box {
  border: 2px solid #DCD7E6;
  padding: 15px;
  height: 260px;
  margin-bottom: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;

}

.key-feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.key-feature-box img {
  margin-bottom: 20px;
}

.key-feature-box a {
  color: #01312C;
  text-decoration: underline;
}

.feature-brands {
  font-family: 'IvyPrestoDisplay';
  background: -webkit-linear-gradient(45deg, #FFD12C, #F29D2D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.setp-one {
  border: 1px solid #A9A9A9;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.setp-box h5 {
  font-family: 'IvyPrestoDisplay';
}

.setp-box {
  border-right: 1px solid #000;
  padding-right: 2px;
}

.setp-box.last {
  border-right: 0px;
}

.left-align {
  text-align: left;
}

.left-align h2 {
  text-align: left;
}

.border-line {
  border-bottom: 1px solid #000;
  padding-bottom: 14px;
}

/* Text styling */
.case-content h5 {
  color: #000;
}

.case-content p {
  color: #555;
}

.case-info p {
  color: #555;
}

.case-info span {
  color: #333;
}

.exlpore h4 {
  text-align: center;
  margin-bottom: 20px;
}


.case-study-big-hide {
  display: none;
}

.case-study-small-hide {
  display: none;
}


.bg-case-study {
  background: #F5ECEF;
  border-radius: 15px;
  padding: 30px;
}

.case-info h6 {
  font-family: 'IvyPrestoDisplay';
  text-align: right;
}

.bg-case-study {
  background: #F5ECEF;
  border-radius: 15px;
  padding: 30px;
  height: 454px;
  display: flex;
  align-items: center;
}

.case-img-default {
  position: relative;
}

.case-content {
  background: #F0F8E6F0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  border-radius: 12px;
}

.case-content h5 {
  position: absolute;
  top: 15px;
  width: 100%;
  font-size: 18px;
  text-align: left;
  left: 23px;
}

.case-content p {
  position: absolute;
  width: 100%;
  font-family: 'IvyPrestoDisplay';
  color: #000;
  bottom: 16px;
  text-decoration: underline;
  margin-bottom: 0;
}

.case-content h5::before {
  content: '';
  width: 14px;
  height: 5px;
  background: linear-gradient(90deg, #FFD12C, #F29D2D);
  display: inline-block;
  border-radius: 4px;
  transform: rotate(90deg);
  position: absolute;
  left: -15px;
  top: 6px;
}

.benefical-box {
  /* background: #F8F3E6;
    padding: 50px;
    border-radius: 10px; */
  margin-bottom: 10px;
}

.boder-none {
  border-right: none;
}

.benefical-box.cricle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #FFEDCD;
  margin: 0 auto;
}

.enroll .nav-link.active {
  background: #FFFEFC !important;
  box-shadow: 0px 10.77px 53.85px -2.69px #060C3B14;
  color: #F29D2D !important;
  font-family: 'IvyPrestoDisplay';
  text-align: left;
}

.enroll .nav-pills .nav-link {
  text-align: left;
  color: #000000;
  font-family: 'IvyPrestoDisplay';
}

.enroll p {
  margin-left: 47px;
}

.enroll-box-content.box-color {
  background: #F0F8E6;
  padding: 15px;
  border-radius: 8px;
}

.enroll-box-content.box-color-skyblue {
  box-shadow: 0px 10.77px 53.85px -2.69px #060C3B14;
  background: #E6F8F0;
  padding: 15px;
  border-radius: 8px;
}

.enroll-box-content.box-color-light-blue {
  background: #E6F2F8;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 10.77px 53.85px -2.69px #060C3B14;
}

.enroll-box-content.box-color-purple {
  background: #ECE6F8;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 10.77px 53.85px -2.69px #060C3B14;
}

.enroll-reatiler {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.enroll-reatiler h6 {
  font-family: 'IvyPrestoDisplay';
}

.enroll-reatiler img {
  background: #fff;
  padding: 20px;
  border-radius: 50%;
  width: 32%;
  margin-bottom: 10px;
  box-shadow: 0px 9px 27px 0px #0000001A;
}

.enroll-reatiler::after {
  content: "";
  width: 121px;
  height: 1px;
  position: absolute;
  top: 43px;
  display: inline-block;
  background: #000;
  left: 78%;
}

.step-wrapper .col-md-3:last-child .enroll-reatiler::after {
  content: none !important;
}

.loyalty-box-feature {
  border: 1.59px solid #E7E9ED;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 54px 52px -36.6px #161C2D21;
  padding: 15px;
  margin: 0px 15px;
}

.loyalty-box-feature span {
  font-family: 'IvyPrestoDisplay';
  color: #151515;
}

.loyalty-box-feature h3 {
  font-family: 'IvyPrestoDisplay';
}

.D-icon {
  background: #F29D2D;
  color: #fff !important;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  align-items: center;
  font-family: 'Inter';
  margin-right: 10px;
}

.loyalty-box-feature h6 {
  font-family: 'IvyPrestoDisplay';
}

.based-color {
  color: #F29D2D !important;
}

.slick-prev-reatiler {
  border: none;
  background: #F4F7FA;
  padding: 5px 10px;
  border-radius: 8px 0px 0px 8px;
  position: absolute;
  top: -105px;
  right: 55px;
}

.slick-next-reatiler {
  border: none;
  background: #F4F7FA;
  padding: 5px 10px;
  border-radius: 0px 8px 8px 0px;
  top: -105px;
  right: 15px;
  position: absolute;
}

.slick-prev-reatiler i {
  color: #000;
}

.slick-next-reatiler i {
  color: #000;
}

.program-hub-box {
  background: #F8F3E8;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.intro-box-hub {
  background: #FFEDCD;
  padding: 15px;
  border-radius: 8px;
}

.program-hub-box h5 {
  font-weight: 700;
  font-size: 30px;
}

.intro-box-hub h5 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
}

.slick-prev-blog {
  border: none;
  background: #01312C;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: -5px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.slick-next-blog {
  border: none;
  background: #01312C;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: -5px;
  display: flex;
  align-items: center;
}

.user-img-graph {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.user-name-grpah h5 {
  font-size: 8px;
  margin-bottom: 0;
}

.user-name-grpah p {
  font-size: 6px;
  margin-bottom: 0;
  text-align: left;
}

.whyLoyal-graph {
  position: absolute;
  background: #FFFFFFCC;
  border-radius: 14px;
  padding: 15px;
  bottom: 0;
  left: -0px;
  width: 40%;
}

.graph-user-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.user-graph-price h6 {
  font-size: 8px;
}

.user-name-grpah {
  margin-left: 10px;
}


.step-follow-content h5 {
  font-family: 'IvyPrestoDisplay';
  color: #000;
  display: flex;
  align-items: center;
}

.counting-series {
  background: #F29D2D;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 15px;
}

ul.boot-sales li {
  list-style: none;
  margin-bottom: 20px;
  font-size: 18px;
  color: #191A15;
  display: flex;
  align-items: center;
}

.icon-tick {
  margin-right: 10px;
}

.sale-teams {
  background: #fff3d1;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  position: absolute;
  bottom: 103px;
  left: -38px;
}

.sale-teams-icon img {
  margin-right: 10px;
}

.step-follow-img {
  position: relative;
}


.about-pie-chart {
  background: #FFFFFF;
  box-shadow: 0px 7.49px 37.9px -1.89px #060C3B14;
  width: 15%;
  border-radius: 14px;
  padding: 15px;
  position: absolute;
  right: -32px;
  top: 17%;
}


#pie-chart-about {
  height: 150px;
}

.blue-progress-bar {
  margin-bottom: 10px;
}

.about-lines-graph {
  width: 300px;
  background: #FFFFFF;
  box-shadow: 0px 8.16px 43px -2.6px #060C3B14;
  padding: 20px;
  border-radius: 5px;
  height: 226px;
  position: absolute;
  bottom: 0;
  left: 4%;
  transform: rotate(338deg);
}

.daily.visitor.about {
  right: 44%;
  top: -59px;
}

#about-line-graph {
  height: 250px !important;
}

.plumber-in {
  background: #ffff;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  box-shadow: 0px 2px 4px #0000000A;
  position: absolute;
  padding: 6px 20px;
  top: 29px;
  transform: rotate(341deg);
  left: 8%;
}

.plumber-in h6 {
  margin-bottom: 0px;
}

.masons-in {
  background: #ffff;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  box-shadow: 0px 2px 4px #0000000A;
  position: absolute;
  padding: 6px 20px;
  bottom: 42%;
  transform: rotate(5deg);
  left: 18%;
  z-index: 999;
}

.masons-in h6 {
  margin-bottom: 0px;
}

.elec-in {
  background: #ffff;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  box-shadow: 0px 2px 4px #0000000A;
  position: absolute;
  padding: 6px 20px;
  bottom: 46%;
  z-index: 999;
  transform: rotate(340deg);
  right: 13%;
}

.elec-in h6 {
  margin-bottom: 0px;
}


.recognize-graph {
  width: 28%;
  background: #fff;
  box-shadow: 0px 1.46px 2.91px #0000000A;
  border-radius: 8px;
  position: absolute;
  transform: rotate(342deg);
}

#recognize {
  height: 180px;
}

.electricsl-graph {
  width: 28%;
  background: #fff;
  box-shadow: 0px 1.46px 2.91px #0000000A;
  border-radius: 8px;
  position: absolute;
  right: 0px;
  transform: rotate(342deg);
}

#electrical {
  height: 200px;
}

.credit-score {
  width: 180px;
  position: absolute;
  top: -14px;
  right: 0;
}


.employee-graph {
  width: 173px;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  right: 85px;
  transform: rotate(350deg);
  bottom: 112px;
}

#data-chart {
  height: 200px;
}

.new-registration {
  background: #fff;
  box-shadow: 0px 1.49px 2.91px #060C3B14;
  position: absolute;
  text-align: left;
  padding: 10px;
  border-radius: 5px;
}

.new-registration h6 {
  font-size: 14px;
  font-family: 'Inter';
  margin-bottom: 10px;
}

.new-registration h5 {
  font-weight: 700;
}

.cricle-box img {
  width: 34%;
}

.cricle-box {
  display: flex;
  justify-content: space-between;
}


.engagment {
  background: #fff;
  position: absolute;
  padding: 8px 30px;
  top: 14%;
  border-radius: 5px;
  box-shadow: 0px 1.49px 2.91px #060C3B14;
}

.engagment h4 {
  font-size: 19px;
  font-weight: 800;
}

.engagment span {
  color: #017F75;
  font-size: 12px;
}

.engagment p {
  font-size: 10px;
}

.star {
  position: absolute;
  top: 0;
  right: 0;
}

.graph-increase {
  position: absolute;
  top: -20px;
  left: 12%;
}

.graph-increase img {
  width: 75%;
}

.star img {
  width: 75%;
}

.phone-mockup-disr img {
  width: 60%;
}

.phone-mockup-disr {
  text-align: right;
}


.graph-column.distribut {
  top: -90px;
}


.active-distributors {
  background: #fff;
  box-shadow: 3px 3px 8px #858D9373;
  padding: 10px 30px;
  position: absolute;
  border-radius: 8px;
  transform: rotate(354deg);
}

.total-payment {
  background: #fff;
  box-shadow: 3px 3px 8px #858D9373;
  padding: 10px 30px;
  position: absolute;
  border-radius: 8px;
  transform: rotate(31deg);
  right: 70px;
  top: -14px;
}

.dis-pie {
  position: absolute;
  background: #fff;
  box-shadow: 3px 3px 8px #858D9373;
  width: 189px;
  border-radius: 8px;
  right: 16%;
  bottom: 24%;
}

#pie-dis {
  height: 165px;
}

.employee-graph.dist-data {
  right: -22px;
  transform: none;
}

.sale-line-graph {
  background: #fff;
  position: absolute;
  width: 27%;
  right: -44px;
  top: 75px;
}

.sale-graph {
  background: #fff;
  position: absolute;
  width: 23%;
  right: 20%;
  bottom: 10%;
  box-shadow: 3px 3px 8px #00000040;
  padding: 5px;
  border-radius: 8px;
}

.top-performancce {
  background: #fff;
  width: 42%;
}

#top-graph {
  height: 220px;
}

#top-graph .highcharts-data-label {
  display: none !important;
}

.top-performancce {
  background: #fff;
  width: 34%;
  box-shadow: 3px 3px 8px #00000040;
  border-radius: 8px;
}


.top-chart {
  position: absolute;
  width: 22%;
  top: 14px;
  background: #fff;
  height: 167px;
  box-shadow: 3px 3px 8px #00000040;
  border-radius: 8px;
  z-index: -1;
  left: 4px;
}

#top-chart {
  height: 169px;
}

.bg-pattern {
  background: url(../img/icon/pattern.png);
  height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.exlpore img {
  width: 100%;
}


.learn-box-img img {
    height: 240px;
}

.client-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.video-box video {
    height: 182px;
}