html,
body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Ribeye', sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
  background: var(--color-white);
}

:root {
  --color-primary: #090046;
  --color-secondary: #3b82f6;
  --color-default: #000000;
  --color-light: #b4b4b4;
  --color-white: #ffffff;
}

a {
  text-decoration: none !important;
  font-family: 'Ribeye';
}

a:hover {
  color: var(--color-default);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-family: 'Ribeye';
}

ul,
li {
  list-style: none;
  padding: 0px;
}

.btn:focus {
  box-shadow: none;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  color: #0d0d25;
  padding-bottom: 20px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
}

.section-title h2::after {
  content: '';
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

@media (max-width: 993px) {
  .section-title h2 {
    font-size: 24px;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  width: 100vw;
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 2px 0px 3px rgba(0, 0, 0, 0.25);
  background: transparent;
  backdrop-filter: blur(10px);
}

#header.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
}

#header .logo img {
  padding: 0;
  margin: 0;
  height: 60px;
}

@media (max-width: 668px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
  }

  #header .logo img {
    height: 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 18px 5px 18px;
  margin-left: 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-default);
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 15px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  /* background: var(--primary_color); */
  color: #000000;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 5px 0 0 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--color-white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 15px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 7px 18px;
  color: #2a2c39;
  margin: 0 5px;
  font-size: 16px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-default);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

#header .account .xgn-nav-btn {
  display: flex;
  align-items: center;
  padding: 10px 25px;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: var(--color-white);
  font-family: var(--xgs-inter-font) !important;
  font-weight: 500;
  border-radius: 30px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.dropdown-service {
  width: 700px;
  left: auto !important;
  right: 0px;
  top: 50px !important;
  border-radius: 0px !important;
  padding: 32px !important;
}

.dropdown-service a {
  padding: 0px !important;
  margin: 0px !important;
}

.dropdown-service h4 {
  font-size: 16px;
  font-weight: 600;
}

.dropdown-service p {
  font-size: 14px;
}

.dropdown-service img {
  width: 60px;
  height: 60px;
}

.dropdown-doc {
  padding: 16px !important;
  width: 300px;
}

.dropdown-doc a {
  padding: 0px !important;
  margin: 0px !important;
}

.dropdown-doc h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0px;
}

.dropdown-doc p {
  font-size: 14px;
}

.dropdown-doc img {
  width: 50px;
  height: 50px;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--color-default);
  font-size: 14px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  color: var(--color-default);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--color-white);
  height: 100vh;
  width: 100vw;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: var(--color-bg);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: var(--color-default);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-default);
  /* background: var(--primary_color); */
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--color-default);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-default);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* ======================== Hero ============== */
.custom_banner_area {
  position: relative;
  height: 1080px;
  color: #1a1a1a;
  z-index: 1;
}

.hero-text {
  height: 800px;
  background: radial-gradient(circle at center, #6265ff, #e0e0ff 80%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom_container_one {
  position: absolute;
  left: 17%;
  bottom: 40%;
}

.custom_banner_shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.custom_banner_shapes svg {
  position: absolute;
  opacity: 0.2;
  animation: float 12s ease-in-out infinite;
}

.custom_banner_shapes svg:nth-child(1) {
  top: 20%;
  left: 5%;
  fill: #00ffb3;
  animation-delay: 0s;
}

.custom_banner_shapes svg:nth-child(2) {
  top: 70%;
  left: 15%;
  fill: #69e9ff;
  animation-delay: 3s;
}

.custom_banner_shapes svg:nth-child(3) {
  top: 30%;
  right: 10%;
  fill: #6a5acd;
  animation-delay: 6s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }

  100% {
    transform: translateY(0);
  }
}

.custom_banner_title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
}

.custom_banner_para {
  font-size: 1.1rem;
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto;
}

.cmn_btn {
  padding: 12px 28px;
  font-size: 16px;
  margin: 0 10px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn_purchase {
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
  color: var(--color-default);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.btn_demo {
  border: 2px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
}

.btn_purchase:hover,
.btn_demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn_demo:hover {
  color: var(--color-white);
}

.custom_link_btn {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #222;
  font-size: 14px;
  margin: 5px;
  transition: background 0.3s ease;
}

.custom_link_btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-imgs {
  width: 1500px;
  position: absolute;
  bottom: -43%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.banner__thumb__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 24px;
}

.banner__thumb__item {
  text-align: center;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: inline-block;
}

.banner__thumb__item img {
  width: 100%;
}

.elementor img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

.banner__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.banner__shapes svg {
  position: absolute;
  animation: floatUpDown 6s ease-in-out infinite alternate;
}

.banner__shapes svg {
  position: absolute;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  opacity: 1;
}

@media (max-width: 768px) {
  .custom_banner_area {
    height: auto;
    margin-top: 50px;
  }

  .hero-text {
    height: 150px;
    padding: 40px 20px;
    flex-direction: column;
    text-align: center;
  }

  .custom_container_one {
    max-width: 100%;
    margin-top: 60px;
    bottom: 52%;
    left: 3.5%;
  }

  .custom_banner_title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .custom_banner_para {
    font-size: 1rem;
    max-width: 100%;
  }

  .custom_banner_button {
    flex-direction: column;
    gap: 4px;
  }

  .cmn_btn {
    width: 100%;
    font-size: 6px;
    padding: 0px;
    text-align: center;
  }

  .hero-imgs {
    width: 100%;
    position: static;
    transform: none;
    margin-top: 0px;
  }

  .banner__thumb__flex {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .custom_banner_shapes,
  .banner__shapes {
    display: none;
  }

  .section-title h2 {
    font-size: 20px !important;
    margin-bottom: 0px !important;
  }

  .section-title {
    margin-bottom: 30px;
  }
}


/*================== Theme */
.tabs {
  width: 100%;
}

.tabs-nav {
  position: relative;
  display: flex;
  gap: 16px;
  background: #fff9f0;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.tab-button {
  flex: 1;
  all: unset;
  position: relative;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
  border-radius: 5;
  cursor: pointer;
  transition: color .4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}

.tab-button:hover {
  color: var(--color-primary);
}

.tab-button[aria-selected="true"] {
  color: var(--color-white);
}

.tabs-indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: calc(8px - 2px);
  background: var(--color-primary);
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1),
    width .4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 0 0 1px var(--color-primary), 0 4px 12px rgba(0, 0, 0, 0.1);
  will-change: transform, width;
}

.tab-panel {
  padding: 2rem;
  background: transparent;
  border-radius: 8px;
  display: none;
  transform-origin: top;
  animation: slideIn .5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 1px var(--border-color), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-panel[aria-hidden="false"] {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tab-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.tab-panel h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.tab-panel p {
  line-height: 1.6;
  opacity: 0.9;
}

.single-page .single-page-item {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all linear 2s;
  transition: all linear 2s;
  margin-bottom: 24px;
  height: 600px;
  overflow: hidden;
  position: relative;
  transition: all linear 0.3s;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.single-page .single-page-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.single-page .single-page-item .bg {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all linear 2s;
  transition: all linear 2s;
}

.xg-badge {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(100% 0%, 90.6% 52.17%, 100% 100%, 0px 100%, -0.49% 47%, 0px 0px);
  clip-path: polygon(100% 0%, 90.6% 52.17%, 100% 100%, 0px 100%, -0.49% 47%, 0px 0px);
  color: #ffffff;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 0px 8px;
  margin-bottom: 2px;
  display: inline-block;
  text-align: center;
  padding-right: 20px;
}

.single-page .single-page-item:hover .bg {
  background-position: bottom center;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.coming-soon-text {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  border: 2px solid #ffffff44;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 993px) {
  .coming-soon-text {
    font-size: 14px;
    margin: 0px 10px;
  }
}

@media (max-width: 993px) {
  .single-page .single-page-item {
    height: 200px;
  }

  .coming-soon-text {
    padding: 4px 8px;
    font-size: 8px;
    margin: 0px 4px;
  }
}

/*=========================== How work */
.step-item {
  height: 110px;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding-left 0.3s ease, border-left-color 0.3s ease;
  background-color: #f9f9f9;
}

.step-item:hover {
  background-color: #eef6ff;
}

.step-item.active {
  background-color: #e8f0ff;
  border-left: 4px solid var(--color-primary);
  padding-left: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 35px;
  height: 35px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}


/*============ counter */
.counter-section-modern {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.counter-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.counter {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
}

.counter-label {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-top: 8px;
}

.icon svg {
  font-size: 2rem;
  color: var(--color-light);
}

@media (max-width: 767.98px) {
  .counter-card {
    padding: 8px;
    border-radius: 8px;
  }

  .counter {
    font-size: 22px;
  }

  .counter-label {
    font-size: 14px;
    margin-top: 6px;
  }

  .icon svg,
  .icon i {
    font-size: 16px;
  }
}

/*============================ Pricing Plan */
.pricing-card {
  background: linear-gradient(145deg, #ffffff, #e6e9f0);
  border-radius: 24px;
  padding: 40px 35px;
  box-shadow:
    0 8px 15px rgba(0, 0, 0, 0.1),
    inset 0 0 10px rgba(255, 255, 255, 0.7);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 18px 40px rgba(50, 50, 93, 0.2),
    0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Gradient border glow effect */
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  /* thickness of border */
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

/* Header */
.card-header h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2c2e3e;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

/* ======================= Price */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.price {
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.price .old {
  font-weight: 400;
  font-size: 1.1rem;
  color: #a1a4b2;
  text-decoration: line-through;
}

.month {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #a1a4b2;
}

/* ================================ Features */
.features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
  color: #4b4f68;
}

.features li {
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid #dbe1f0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}

.features li.included::before {
  content: '✔';
  color: var(--color-primary);
  font-weight: 900;
  font-size: 1.2rem;
}

.features li.excluded::before {
  content: '✖';
  color: #e94f4f;
  font-weight: 900;
  font-size: 1.2rem;
}

/* Secondary Features */
.features.secondary li {
  font-size: 0.95rem;
  font-weight: 400;
  color: #6b7280;
  border-bottom: none;
  padding: 6px 0;
}

/* Card Footer */
.card-footer {
  margin-top: auto;
  text-align: center;
}

.btn-buy {
  background: var(--color-primary);
  color: white;
  padding: 14px 40px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 36px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 117, 252, 0.5);
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
  user-select: none;
}

.btn-buy:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: scale(1.07);
  box-shadow: 0 12px 30px rgba(5, 0, 31, 0.6);
}


@media (max-width: 767.98px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 0px;
  }

  .pricing-card {
    padding: 16px 8px;
    border-radius: 8px;
  }

  .pricing-card::before {
    border-radius: 8px;
  }

  .card-header h3 {
    font-size: 16px;
  }

  .price {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .price .old {
    font-size: 14px;
  }

  .month {
    font-size: 14px;
  }

  .card-footer {
    padding: 0px !important;
  }

  .features {
    margin-bottom: 8px;
  }

  .features li {
    font-size: 10px;
  }

  .features li.included::before {
    font-size: 10px;
  }

  .features li.excluded::before {
    font-size: 10px;
  }

  .btn-buy {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
  }
}


/* =========== FAQ */
.AskQuestion {
  background: #f8fafc;
  padding: 60px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.AskQuestion .accordion {
  max-width: 1200px;
  margin: 0 auto;
}

.AskQuestion .accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 15px;
  background: var(--color-primary);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  transition: box-shadow 0.3s ease;
}

.AskQuestion .accordion-item:hover {
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.5);
}

.accordion-header {
  padding: 0;
}

.AskQuestion .accordion-button {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 24px !important;
  padding: 18px 25px;
  border-radius: 12px;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#AskQuestion.accordion-button:hover,
.AskQuestion .accordion-button:focus {
  color: var(--color-white);
  box-shadow: none;
}

.AskQuestion .accordion-button::after {
  display: none;
}

.AskQuestion .accordion-button .img {
  width: 28px;
  height: 28px;
  position: relative;
}

.AskQuestion .accordion-button .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.AskQuestion .accordion-item:first-of-type .accordion-button {
  background-color: var(--color-primary);
}

.AskQuestion .accordion-button.collapsed .img img.plus {
  opacity: 1;
}

.AskQuestion .accordion-button:not(.collapsed) .img img.plus {
  opacity: 0;
}

.AskQuestion .accordion-button:not(.collapsed) .img img.minus {
  opacity: 1;
}

.AskQuestion .accordion-button.collapsed .img img.minus {
  opacity: 0;
}

.AskQuestion .accordion-collapse {
  border-radius: 0 0 12px 12px;
}

.AskQuestion .accordion-body {
  padding: 20px 30px;
  font-size: 1.05rem;
  color: var(--color-white);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 12px 12px;
}

.AskQuestion .accordion-button:not(.collapsed) {
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
}

.AskQuestion .accordion-button.collapsed {
  color: var(--color-white) !important;
  background: var(--color-primary);
}

@media (max-width: 993px) {
  .AskQuestion .accordion-button {
    font-size: 16px !important;
  }
}

/* ============== Featured */
.featured-item {
  border-radius: 20px;
  padding: 2.2rem 2rem 2.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: default;
}

.featured-item .comming-img {
  height: 100px;
}

.featured-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 38px rgba(0, 132, 255, 0.35);
  border-color: var(--color-primary);
  cursor: pointer;
}

.featured-image-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(var(--color-secondary), #6394c7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 132, 255, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.featured-item:hover .featured-image-wrapper {
  background: linear-gradient(var(--color-secondary), #84b9f1);
  box-shadow: 0 12px 30px rgba(0, 132, 255, 0.55);
}

.featured-image-wrapper path {
  fill: var(--color-white);
}

.featured-icon {
  width: 55%;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.12));
  transition: filter 0.3s ease;
}

.featured-item:hover .featured-icon {
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.9));
}

.featured-content h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  height: 55px;
  margin-bottom: 0.7rem;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.featured-item:hover .featured-content h4 {
  color: var(--color-primary);
}

.featured-content p {
  font-size: 1rem;
  color: #3a3a3a;
  line-height: 1.6;
  flex-grow: 1;
  user-select: none;
  margin-bottom: 1.8rem;
}

.btn-readmore {
  align-self: flex-start;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-secondary);
  background: rgba(0, 123, 255, 0.1);
  padding: 0.5rem 1.3rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  user-select: none;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.15);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-readmore svg {
  transition: transform 0.35s ease;
  stroke-width: 1.5;
}

.btn-readmore:hover {
  background: var(--color-secondary);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.5);
  border-color: #0056b3;
}

.btn-readmore:hover svg {
  transform: translateX(6px);
}

@media (max-width: 767.98px) {
  .featured-funnel .row {
    row-gap: 1.5rem;
  }

  .featured-item {
    padding: 1.5rem 1rem;
  }

  .featured-image-wrapper {
    width: 40px;
    height: 40px;
  }

  .featured-image-wrapper svg {
    font-size: 16px;
  }

  .featured-content h4 {
    font-size: 16px;
    height: auto;
    margin-bottom: 0.5rem;
  }

  .featured-content p {
    font-size: 12px;
    margin-bottom: 1rem;
  }

  .btn-readmore {
    font-size: 0.95rem;
    padding: 0.4rem 1rem;
  }
}


/* ========== client  */
.swiper-slide img {
  height: 130px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.swiper-slide img:hover {
  filter: grayscale(0%);
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
  color: white;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #0056b3;
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.5);
}

/* Position navigation buttons */
.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* Arrow icon style */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 22px;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  transform: scale(1.2);
}



/* =============== Contact us */
/* CONTACT AREA */
.contact-area {
  background-color: #f8f9fc;
  font-family: 'Inter', sans-serif;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.section-title h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: var(--color-secondary);
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

.contact-info-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  border-left: 6px solid var(--color-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-info-box h3 {
  font-size: 24px;
  color: #2b2d42;
}

.contact-info-box p {
  font-size: 15px;
  color: #ebebeb;
}

.info-item {
  background-color: var(--color-secondary);
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background-color: #0c29ac;
}

.info-item .icon path {
  fill: var(--color-white);
}

.info-item h6 {
  color: var(--color-white);
  font-weight: 600;
}

.contact-form-modern {
  background-color: #e1e5ff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form-modern .form-label {
  font-weight: 600;
  font-size: 14px;
  color: #2c3135;
}

.contact-form-modern .form-control {
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 10px 15px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-form-modern .form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .1);
}

.contact-form-modern textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-brand {
  background: var(--color-secondary) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  transition: 0.3s ease;
}

.btn-brand:hover {
  background-color: #0056b3;
  color: #fff;
}

/* =============== Footer */
.custom-footer {
  background: #1e1e2f;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.footer-bg-svg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 0;
  pointer-events: none;
}

.footer-bg-svg path {
  fill: var(--color-primary) !important;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.social-icon {
  font-size: 1.2rem;
  color: #ccc;
  background-color: #2c2c3e;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  background-color: #fff;
  color: #1e1e2f;
}

.footer-credit:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 768px) {
  .custom-footer {
    padding: 40px 20px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer-link {
    font-size: 0.95rem;
  }

  .social-icon {
    margin: 5px;
  }

  .footer-bg-svg {
    height: 120px;
    /* reduce background height for smaller screen */
  }
}

/* ================ Singup */
.singup {
  background: linear-gradient(135deg, var(--color-white), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-top: 90px;
}

.singup .signup-container {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.singup .signup-image {
  background-size: cover;
  width: 100%;
  height: 250px;
}

.singup .signup-form {
  padding: 50px;
  flex: 1;
}

.singup .signup-form h2 {
  position: absolute;
  top: 13%;
  color: var(--color-white);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

.singup .form-control {
  border-radius: 12px;
  padding: 12px;
}

.singup .btn-signup {
  background-color: #6e8efb;
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  width: 100%;
  font-weight: 600;
  transition: 0.3s;
}

.singup .btn-signup:hover {
  background-color: #5b7ee1;
}

.singup .text-muted a {
  color: #6e8efb;
  text-decoration: none;
}

.singup .text-muted a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .singup .signup-image {
    display: none;
  }

  .singup .signup-form {
    padding: 30px 20px;
  }
}

/* Terms Conditions */
.terms-wrapper {
  max-width: 900px;
  margin: 60px auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.terms-header {
  padding: 20px 0px;
  background-color: var(--color-primary);
}

.terms-wrapper h1 {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: var(--color-white);
}

.terms-wrapper p.lead {
  font-size: 1rem;
  color: #6c757d;
}

.terms-section {
  margin-top: 40px;
}

.terms-section h5 {
  font-weight: 600;
  color: #1d3557;
  margin-bottom: 10px;
}

.terms-section p {
  color: #555;
  line-height: 1.6;
  font-size: 0.97rem;
}

@media (max-width: 768px) {
  .terms-wrapper {
    padding: 30px 20px;
  }

  .terms-wrapper h1 {
    font-size: 2rem;
  }
}

/* Privacy Policy */
.privacy-wrapper {
  max-width: 900px;
  margin: 60px auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.policy-header {
  padding: 20px 0px;
  background-color: var(--color-primary);
}

.privacy-wrapper h1 {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: var(--color-white);
}

.privacy-wrapper p.lead {
  font-size: 1rem;
  color: #6c757d;
}

.privacy-section {
  margin-top: 40px;
}

.privacy-section h5 {
  font-weight: 600;
  color: #1d3557;
  margin-bottom: 10px;
}

.privacy-section p {
  color: #555;
  line-height: 1.6;
  font-size: 0.97rem;
}

@media (max-width: 768px) {
  .privacy-wrapper {
    padding: 30px 20px;
  }

  .privacy-wrapper h1 {
    font-size: 2rem;
  }
}