/* ===== ROOT VARIABLES ===== */
:root {
  --theme-color: #03CF65;
  --black-color: #000000;
  --white-color: #FFFFFF;
  --gray-color: #F3F3F3;
  --text-light: #979797;
  --text-lightGray: #4B5563;
  --border-color: #e0e0e0;
  --text-dark: #111827;
  --text-blueLight: #0078D4;
  --primary-color: #7949FF;
  --secondary-color: #4D49FF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  color: var(--black-color);
  background-color: #FAF9F6;
  line-height: normal;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1240px !important;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1280px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}



/* ===== SCALABLE GAPS ===== */
.scalable-gap-12 {
  gap: clamp(0.625rem, 0.5572rem + 0.339vw, 0.75rem);
}

.scalable-gap-20 {
  gap: clamp(1rem, 0.9322rem + 0.339vw, 1.25rem);
}

.scalable-gap-24 {
  gap: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
}

.scalable-gap-32 {
  gap: clamp(1.5rem, 1.3644rem + 0.678vw, 2rem);
}

.scalable-gap-50 {
  gap: clamp(2rem, 1.5rem + 2vw, 3.125rem);
}

/* ===== FONT WEIGHT ===== */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400 !important;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* ===== FONT SIZE ===== */
.font-56 {
  font-size: clamp(2rem, 5vw, 56px);
}

.font-50 {
  font-size: clamp(1.75rem, 4.5vw, 50px);
}

.font-48 {
  font-size: clamp(1.375rem, 1.0459rem + 1.6456vw, 3rem);
}

.font-42 {
  font-size: clamp(1.5625rem, 1.3473rem + 1.0759vw, 2.625rem);
}

.font-40 {
  font-size: clamp(1.5rem, 1.2468rem + 1.2658vw, 2.5rem);
}

.font-34 {
  font-size: clamp(1.375rem, 1.125rem + 1.25vw, 34px);
}

.font-32 {
  font-size: clamp(1.25rem, 2.5vw, 32px);
}

.font-30 {
  font-size: clamp(1.25rem, 2.5vw, 30px);
}

.font-28 {
  font-size: clamp(1rem, 0.8987rem + 0.5063vw, 1.75rem);
}

.font-24 {
  font-size: clamp(1rem, 0.8987rem + 0.5063vw, 1.5rem);
}

.font-22 {
  font-size: clamp(0.95rem, 0.87rem + 0.45vw, 1.375rem);
}


.font-20 {
  font-size: clamp(0.875rem, 0.7991rem + 0.3797vw, 1.25rem);
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.font-16 {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}

.font-14 {
  font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.875rem);
}

.font-12 {
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

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

.lh-26 {
  line-height: 26px;
}

/* Color */
.black {
  color: var(--black-color);
}

.textLightGray {
  color: var(--text-lightGray);
}

.textDark {
  color: var(--text-dark);
}

.theme {
  color: var(--theme-color);
}

.blue {
  color: #4880FF;
}

.gray {
  color: #575757;
}

.grayLight {
  color: #97A3B7;
}

.textLight {
  color: var(--text-light);
}

.bgDark {
  background-color: #191A23;
}

.bgTheme {
  background-color: var(--theme-color);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--gray-color);
}

::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: #FAF9F6;
  padding: 1.5rem 0;
  box-shadow: none;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.logo-img {
  height: 45px;
}

.navbar-nav {
  gap: 24px;
}

.navbar-collapse {
  gap: 30px;
}

.nav-link {
  color: var(--black-color);
  transition: color 0.3s ease;
  padding: 0 !important;
}

.nav-link:hover {
  color: var(--theme-color);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2303CF65' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  font-size: 16px;
}

/* Buttons */
.primary-btn {
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 14px clamp(1.25rem, 1.1487rem + 0.5063vw, 1.75rem);
  border-radius: 14px;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.primary-btn:hover {
  background-color: #02b557;
}

.outline-btn {
  background-color: transparent;
  color: #0077d4;
  padding: 14px clamp(1.25rem, 1.1487rem + 0.5063vw, 1.75rem);
  border-radius: 14px;
  border: 1px solid #0077d4;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.outline-btn:hover {
  background-color: #0077d4;
  color: var(--white-color);
}

.outline-btn:hover .arrow-icon {
  filter: brightness(0) invert(1);
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(29%) sepia(99%) saturate(2202%) hue-rotate(189deg) brightness(92%) contrast(101%);
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding: 120px 0 0px;
}

.hero-title {
  color: var(--black-color);
  line-height: 1.2;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #02b557;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--theme-color);
  padding: 1rem 2.5rem;
  border: 2px solid var(--theme-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.hero-image {
  text-align: center;
  padding: 2rem 0;
}

/* ===== TRUSTED SECTION ===== */
.trusted-section {
  padding: clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem) 0;
}

.trusted-content {
  gap: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}

.trusted-logos-wrapper {
  overflow: hidden;
  width: 100%;
}

.borderBottom {
  border-bottom: 1px solid #00000033;
  padding-bottom: 40px;
}

.trusted-logos {
  width: fit-content;
  animation: scroll 20s linear infinite;
}

.logos-slide {
  gap: 60px;
  flex-shrink: 0;
}

.trusted-logos img {
  height: 40px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
  flex-shrink: 0;
}

.trusted-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.trusted-logos:hover {
  animation-play-state: paused;
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding-top: clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem);
}

.features-content {
  gap: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}

.feature-card {
  background-color: var(--white-color);
  border-radius: clamp(1.5rem, 1.2342rem + 1.3291vw, 2.8125rem);
  padding: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 0px #191A23;
  border: 1px solid var(--black-color);
  overflow: hidden;
}


.feature-green {
  background-color: var(--theme-color);
}

.feature-green .feature-title,
.feature-green .feature-description {
  color: var(--white-color);
}

.feature-white {
  background-color: var(--white-color);
}

.features-arrow {
  height: clamp(1.875rem, 1.7484rem + 0.6329vw, 2.5rem);
  width: clamp(1.875rem, 1.7484rem + 0.6329vw, 2.5rem);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-arrow {
  img {
    height: clamp(0.875rem, 0.7991rem + 0.3797vw, 1.25rem);
  }
}

.feature-title {
  border-radius: 7px;
  font-size: clamp(1.125rem, 0.9731rem + 0.7595vw, 1.875rem);
  font-weight: 500;
  width: max-content;
  padding: 0px 6px;
}

.feature-image {
  text-align: center;
}

.feature-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* ===== ADVANCED FEATURES SECTION ===== */
.advanced-features-content {
  gap: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}

.advanced-feature-large {
  padding: 36px clamp(1.875rem, 1.2674rem + 3.038vw, 4.875rem) 0px;
  border-radius: 45px !important;
}

.advanced-feature-small {
  border-radius: 45px 45px 25px 25px;
  padding: 35px 30px 0px;
}

.feature-small-card {
  padding: 50px 30px 0px;
}

.advanced-feature-card {
  background-color: #F3F3F380;
  /* height: 100%; */
  transition: all 0.3s ease;
}

.advanced-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.advanced-feature-image {
  text-align: center;
}

.advanced-feature-image img {
  max-width: 100%;
  border-radius: 12px;
}


/* ===== WHATSAPP MARKETING SECTION ===== */
.whatsapp-marketing-section {
  background-color: var(--gray-color);
  border-radius: 45px;
}

.marketing-content {
  padding: clamp(1.25rem, 0.9968rem + 1.2658vw, 2.5rem) clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem);
}

.marketing-image img {
  max-width: 100%;
  height: auto;
}

/* customer */
.customer-section {
  padding-bottom: clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem);
}

.customer-content {
  gap: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}

.customer-card {
  border: 1px solid var(--black-color);
  border-radius: 15px;
  padding: 40px clamp(2.5rem, 2.2975rem + 1.0127vw, 3.5rem) clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem);
  gap: clamp(2.1875rem, 1.9976rem + 0.9494vw, 3.125rem);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 0px 0px clamp(3.75rem, 3.3703rem + 1.8987vw, 5.625rem) 0px;
}

.faq-content {
  gap: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}

.accordion-item {
  background-color: var(--white-color);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.accordion-item:has(.accordion-collapse.show) {
  background-color: var(--gray-color);
}

.accordion-button {
  background-color: #faf9f6;
  color: var(--black-color);
  padding: 1rem;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  font-weight: 500;
  gap: 8px;
}

/* Remove Bootstrap default arrow */
.accordion-button::after {
  display: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--black-color);
  box-shadow: none;
  gap: 16px;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-icon {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--black-color);
  line-height: 1.7;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 400;
}

/* ===== FOOTER ===== */
.footer-section {
  background-color: #000000DE;
  color: var(--white-color);
  padding: 73px 0 60px;
  border-radius: 50px 50px 0px 0px;
}

.footer-logo img {
  height: 40px;
}

.footer-description {
  color: var(--text-light);
  line-height: 1.6;
}

.footer-title {
  color: var(--theme-color);
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--white-color);
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--theme-color);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
  transform: translateY(-4px);
}

.social-links img {
  width: 35px;
  height: 34px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.footer-logo-section img {
  height: 106px;
  width: 430px;
}

.footer-bottom-section {
  border-top: 1px solid var(--white-color);
  padding-top: 40px;
}

.footer-copyright {
  color: var(--text-light);
}

.footer-links-bottom a {
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.footer-links-bottom a:hover {
  color: var(--theme-color) !important;
}

/* Price Page */
.plans-details-section {
  padding: clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem) 0px;
}

.plan-details-content {
  gap: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}

.plan-details-card {
  border: 1px solid var(--black-color);
  background-color: #D9D9D900;
  border-radius: 16px;
  box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.25);
  padding: 45px 60px 50px;
}

/* Pricing Cards Section */
.pricing-card {
  border-radius: 30px;
  padding: 48px 22px;
  height: 100%;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card-blue {
  background: #E3F5FF;
  border: 1px solid var(--text-blueLight);
}

.pricing-card-green {
  background: #CAFDE8;
  border: 1px solid var(--theme-color);
}

.pricing-card-yellow {
  background: #FBBB0033;
  border: 1px solid #FBBB00;
}

.pricing-btn-blue {
  background-color: var(--text-blueLight);
  color: var(--white-color);
}

.pricing-btn-green {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.pricing-btn-yellow {
  background-color: #FBBB00;
  color: var(--black-color);
}

.pricing-btn {
  padding: 12px 78px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}


.pricing-detailed-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 0.7484rem + 0.6329vw, 1.5rem);
}

.feature-check {
  background-color: var(--theme-color);
  flex-shrink: 0;
  border-radius: 50%;
  height: 18px;
  width: 18px;

}

/* Sign Up Page Styles */
.sign-form {
  background-color: #EFFFF8;
}

.left-section {
  padding: clamp(2rem, 3vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.form-section {
  background-color: var(--white-color);
  padding: clamp(2rem, 3vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Custom Input */
.custom-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 16px;
}

.custom-input:focus {
  outline: none;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 4px rgba(3, 207, 101, 0.18);
}

.password-icon {
  position: absolute;
  bottom: 14px;
  right: 16px;
}

.sign-up-form {
  gap: 14px;
}

.custom-input::placeholder {
  color: #9A9A9A;
}

/* Custom Select */
.btn-theme {
  width: 100%;
  padding: 10px 28px;
  background-color: var(--theme-color);
  color: var(--white-color);
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 20px;
}

.account {
  color: #BDADAD;
}

.btn-theme:hover {
  background-color: #02b557;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 207, 101, 0.3);
}

.icon-bg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aspect-ratio: 1;
}

.trusted-text {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 6px;
}

.trusted-text::before,
.trusted-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--black-color);
}

/* Add-Ons Section */
.addons-section {
  padding: clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem) 0;
}

.addons-content {
  gap: 40px;
}

.addons-card {
  background: #BFDBFE66;
  border-radius: 16px;
  padding: 30px 42px 22px;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.7468rem + 1.2658vw, 3.125rem);
}

.addons-row {
  justify-content: space-between;
}

.addon-item {
  gap: clamp(0.75rem, 0.6234rem + 0.6329vw, 1.375rem);
}

.contact-btn {
  background-color: var(--text-blueLight);
  padding: 12px 70px;
  border-radius: 14px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 35px 0px clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem);
  background-color: var(--gray-color);
}

.testimonials-content {
  padding: 0;
  gap: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}

.testimonial-card {
  background-color: var(--white-color);
  border-radius: 24px;
  padding: 33px 25px;
  height: 100%;
}

.testimonials-row {
  justify-content: space-between;
}

/* Advanced Features  */
.advanced-features-contents {
  gap: clamp(1.875rem, 1.7484rem + 0.6329vw, 2.5rem);
}

.advanced-features-section {
  padding: clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem) 0px;
}

.advanced-features-tabs {
  .nav-pills {
    border: 1px solid var(--theme-color);
    border-radius: 50px;
  }

  .nav-pills .nav-link.active {
    background-color: #03CF654D;
    color: #03CF65;
    padding: 16px 35px !important;
    border-radius: 50px;
  }

  .nav-pills .nav-link {
    padding: 16px 35px !important;
    height: 100%;
    font-size: clamp(1rem, 0.8481rem + 0.7595vw, 1.75rem);
    font-weight: 400;
  }
}

/* Sign up */
.bg-primaryLight {
  background-color: #E9F9EF;
}


.left-section {
  min-height: 100vh;
  padding: 35px 20px 20px 45px;
}

.feature-box {
  background: #DFF4E9;
  padding: 12px 14px;
  border-radius: 8px;
}

.icon-list li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-list img {
  width: 22px;
}

.form-section {
  padding: 27px;
  background-color: var(--white-color);
  border-radius: 45px 0px 0px 45px;
}

.form-control {
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* Wrapper */
.dropdown-custom {
  position: relative;
  width: 100%;
  user-select: none;
  font-size: 16px;
}

/* Selected Box */
.dropdown-selected {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}

/* Arrow */
.dropdown-selected::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #7c7c7c;
  border-bottom: 2px solid #7c7c7c;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.dropdown-custom.active .dropdown-selected {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 4px rgba(3, 207, 101, 0.18);
}

.dropdown-list {
  position: absolute;
  width: 100%;
  background: var(--white-color);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-top: 6px;
  padding: 6px 0;
  list-style: none;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.dropdown-custom.active .dropdown-list {
  display: block;
}

.dropdown-list li {
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.2s;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 400;
}

.dropdown-list li:hover {
  background: #03cf651a;
}

.dropdown-custom.selected .dropdown-selected {
  color: var(--black);
}

/* Phone Input with Country Selector */
.phone-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: var(--white-color);
  gap: 8px;
}

.phone-input-wrapper:focus-within {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(3, 207, 101, 0.1);
}

.country-selector-display {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.country-selector-display .fi {
  font-size: 18px;
  line-height: 1;
  border-radius: 2px;
}

.country-selector-display .dropdown-arrow {
  font-size: 8px;
  color: #7c7c7c;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.country-code-text {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  font-weight: 400;
  color: var(--black-color);
  flex-shrink: 0;
  padding-right: 8px;
  border-right: 1px solid #D9D9D9;
  margin-right: 4px;
}

.phone-number-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  background: transparent;
  min-width: 0;
}

.phone-number-input::placeholder {
  color: #9A9A9A;
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 6px 0;
  list-style: none;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  min-width: 280px;
}

.country-dropdown.active {
  display: block;
}

.country-dropdown li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.country-dropdown li:hover {
  background-color: #03cf651a;
}

.country-dropdown .fi {
  font-size: 18px;
  line-height: 1;
  border-radius: 2px;
  flex-shrink: 0;
}

.country-dropdown .country-name {
  flex: 1;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  font-weight: 400;
  color: var(--black-color);
}

.country-dropdown .country-code {
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 400;
  color: var(--text-light);
}

/* Pricing Swiper  */
.tab-pane {
  position: relative;
}

.swiper-button {
  display: none;
}

.tab-pane .swiper-button-next,
.tab-pane .swiper-button-prev {
  top: auto;
  bottom: 22px;
  width: 40px;
  height: 40px;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Desktop - default */
.tab-pane .swiper-button-prev {
  left: 50%;
  transform: translateX(-40px);
}

.tab-pane .swiper-button-next {
  left: 50%;
  transform: translateX(40px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
}

/* ===== CONTACT US PAGE ===== */
.contact-section {
  padding-bottom: clamp(3.125rem, 2.7453rem + 1.8987vw, 5rem);
}

/* ===== CHECKOUT PAGE ===== */
.checkout-progress {
  margin-bottom: 35px;
}

.checkout-container {
  padding-bottom: clamp(2.5rem, 0.875rem + 8.125vw, 10.625rem);
}

/* Progress Indicator */
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid var(--black-color);
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.progress-line {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background-color: #979797;
  align-self: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background-color: var(--black-color);
  border-color: var(--black-color);
  color: var(--white-color);
}

.line {
  color: #B0B0B0;
}

/* Order Summary */
.order-summary-card {
  background-color: #F0F0F0;
  border-radius: 12px;
  padding: 60px 37px 26px;
  box-shadow: 0 0px 4px #00000040;
}

.order-summary {
  gap: 36px;
}

.checkout-card {
  border: 3px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px 35px;
  transition: all 0.3s ease;
}

.checkout-card,
.address-form,
.payment-method {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.btn-outline-secondary {
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 14px 40px;
  border-radius: 8px;
  border: 1px solid var(--black-color);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: clamp(0.9375rem, 0.1445rem + 3.125vw, 1.375rem);
  font-weight: 400;
}


.secondary-btn {
  background-color: #0078D4;
  color: var(--white-color);
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.1445rem + 3.125vw, 1.375rem);
  width: 100%;
  white-space: nowrap;
}

.secondary-btn:hover {
  background-color: #3D39EF;
}

.btn-proceed-order:disabled {
  background-color: #BDBDBD;
  cursor: not-allowed;
  box-shadow: none;
}

/* Form Elements */
.address-type {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-check-input {
  width: 39px;
  height: 39px;
  border: 1px solid var(--primary-color);
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 50%;
  background-color: var(--white-color);
  position: relative;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: var(--white-color);
  border-color: var(--primary-color);
}

.form-check-input:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
}


/* Card Input Wrapper */
.payment-method {
  padding: 30px 0px;
}

.card-input-wrapper {
  position: relative;
}

.card-logo {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 25px;
  width: auto;
}

/* Custom Checkbox */
.custom-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid var(--secondary-color);
  border-radius: 6px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--white-color);
  position: relative;
  transition: all 0.3s ease;
}

.custom-checkbox:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.custom-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  font-size: 16px;
  font-weight: bold;
}

.custom-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(121, 73, 255, 0.15);
}

/* Custom Radio Button */
.custom-radio {
  width: 39px;
  height: 39px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--white-color);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-radio:checked {
  background-color: var(--white-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(121, 73, 255, 0.25);
}

.custom-radio:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white-color);
}

.custom-radio:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(121, 73, 255, 0.15);
}

.custom-radio:hover {
  box-shadow: 0 4px 12px rgba(121, 73, 255, 0.2);
}


/* Alternative Payment Options */
.payment-methods {
  padding-top: 40px;
}

.payment-option {
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--white-color);
  padding: 24px 48px 24px 38px;
  box-shadow: 0px 2px 4px #00000040;
  ;
}

.payment-option input[type="radio"] {
  cursor: pointer;
  width: 32px;
  height: 33px;
  border: 0px solid #D9D9D9;
  accent-color: var(--white-color);
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25);
}

.payment-option input[type="radio"]:checked {
  border-color: var(--white-color);
  background-color: var(--secondary-color);
}

/* ===== WALLET PURCHASE PAGE ===== */

.wallet-balance-card {
  background-color: var(--white-color);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem);
}

.wallet-topup-section {
  gap: 28px;
}

.wallet-balance-card {
  gap: 34px;
}

/* Quick Amount Buttons Grid */
.quick-amounts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.amount-btn {
  background-color: var(--white-color);
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  outline: 0;
}

.amount-btn:hover {
  background-color: #F8F9FF;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 4px rgba(3, 207, 101, 0.18);
}

.amount-btn.active {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
  box-shadow: 0 2px 8px rgba(77, 73, 255, 0.3);
}

/* Payment Method Section */
.payment-method-section {
  margin-top: 40px;
}

.payment-card {
  background-color: var(--white-color);
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Alternative Payment Options */
.alternative-payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Gray Text Color */
.gray {
  color: #666666;
}

.bluelight {
  color: var(--text-blueLight);
}

.outline-btn-sucess {
  background-color: transparent;
  color: var(--black-color);
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid #D1D5DB;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}



/* ===== SUCCESS PAGE ===== */
.success-card {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(1.875rem, 1.625rem + 1.25vw, 3.125rem);
}

.success-icon {
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  background: linear-gradient(135deg, #CAFDE8 0%, #E3F5FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPulse 2s ease-in-out infinite;
}

.success-icon svg {
  width: clamp(32px, 4vw, 40px);
  height: clamp(32px, 4vw, 40px);
}

@keyframes successPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(3, 207, 101, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(3, 207, 101, 0);
  }
}

/* Success Content */
.success-content {
  gap: 10px;

  h2 {
    color: var(--text-dark);
  }

  p {
    color: var(--text-lightGray);
  }
}

/* Transaction ID Box */
.transaction-id-box {
  background-color: #EFF6FF;
  border-radius: 10px;
  padding: 12px;
}

/* Transaction Details */
.transaction-details {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 33px;
  border: 1px solid #E5E7EB;
  margin-bottom: clamp(1.5rem, 1.3625rem + 0.6875vw, 2.1875rem);
}

.transaction-details-bottom {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 20px 30px;
  border: 1px solid #E5E7EB;
  margin-bottom: clamp(1.5rem, 1.3625rem + 0.6875vw, 2.1875rem);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1rem, 1.2vw, 1.25rem) 0px;
  border-bottom: 1px solid #E5E7EB;
  gap: 16px;
}

.detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.detail-label svg {
  flex-shrink: 0;
}

.status-row {
  padding-top: 26px;
  border-top: 1px solid #E0E0E0;
  border-bottom: none;
}

.status-badge {
  background-color: #DCFCE7;
  color: #15803D;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 700;
}

/* Success Actions */
.success-actions {
  padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem);
}

.detail-row {
  h3 {
    color: #475569;
  }

  h4 {
    color: #0F172A;
  }
}

.success-actions .primary-btn {
  justify-content: center;
}

.success-actions .outline-btn {
  justify-content: center;
  gap: 8px;
}

.success-actions .outline-btn svg {
  width: 18px;
  height: 18px;
}

/* ===== ORDER CONFIRMED PAGE ===== */
.order-confirmed-card {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: clamp(2.5rem, 3vw, 3.5rem) clamp(1.875rem, 2.5vw, 2.5rem);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  margin-top: clamp(1rem, 1.5vw, 1.5rem);
  margin-bottom: clamp(2rem, 2.5vw, 3rem);
}

/* Order Success Content */
.order-success-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Order Number Box */
.order-number-box {
  background-color: #E3F5FF;
  border-radius: 10px;
  padding: clamp(1rem, 1.2vw, 1.25rem);
  border: 1px solid #0078D433;
}

/* Order Info Cards */
.order-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.info-card {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: clamp(1rem, 1.2vw, 1.25rem);
  border: 1px solid #E5E7EB;
}

.info-card {
  h5 {
    color: var(--text-dark);
  }

  p {
    color: var(--text-lightGray);
  }
}

.info-card svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Customer Information Section */
.customer-info-section {
  background-color: var(--gray-color);
  border-radius: 12px;
  padding: clamp(1.25rem, 1.5vw, 1.75rem);
}

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

.info-block {
  display: flex;
  flex-direction: column;
}

/* Order Items Section */
.order-items-section {
  background-color: var(--gray-color);
  border-radius: 12px;
  padding: clamp(1.25rem, 1.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* padding-bottom: 16px; */
  /* border-bottom: 1px solid #E0E0E0; */
  gap: 16px;
}

.order-item:last-of-type {
  margin-bottom: 16px;
}

.item-details {
  flex: 1;
}

.item-price {
  text-align: right;
  flex-shrink: 0;
}

/* Order Summary Totals */
.order-summary-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 2px solid #D0D0D0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-row {
  padding-top: 12px;
  border-top: 1px solid #E0E0E0;
  margin-top: 8px;
}

/* What's Next Section */
.whats-next-section {
  background-color: #F8F9FA;
  border-radius: 12px;
  padding: clamp(1.25rem, 1.5vw, 1.5rem);
  border-left: 4px solid var(--theme-color);
}

/* Order Actions */
.order-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.order-actions .outline-btn {
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

/* Continue Shopping */
.continue-shopping {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.continue-shopping .secondary-btn {
  min-width: 280px;
}

.continue-btn {
  background-color: var(--text-blueLight);
  color: var(--white-color);
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  white-space: nowrap;
}

/* Platforms section */
.platforms-section {
  padding: clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem) 0px clamp(3.125rem, 2.6187rem + 2.5316vw, 5.625rem);
}















































/* Media Query */
@media (max-width: 1199px) {
  .progress-line {
    width: 100px;
  }
}

@media (max-width: 991px) {
  .tab-pane .swiper-button-prev {
    left: 40%;
    transform: translateX(0);
  }

  .tab-pane .swiper-button-next {
    right: 40%;
    left: auto;
    transform: translateX(0);
  }

  .left-section {
    min-height: auto;
    padding: 2.5rem 2rem;
  }

  .hero-content {
    padding: 0px;
  }

  .trusted-text {
    padding: 30px 0 0;
  }

  .feature-box {
    flex-direction: row;
  }

  .icon-bg {
    width: 44px;
    height: 44px;
  }

  .navbar {
    padding: 1rem 0;
  }

  .navbar-collapse {
    padding: 1rem;
    margin-top: 1rem;
  }

  .navbar-nav {
    gap: 16px;
    margin-bottom: 1rem;
  }



  .feature-icon img {
    max-width: 100px;
    height: auto;
  }


  .social-links {
    justify-content: center;
  }

  .footer-logo-section img {
    height: 70px;
    width: auto;
  }

  .sign-up-heading {

    h4,
    h5 {
      font-size: 25px !important;
    }

  }

  .hero-section {
    padding: 90px 0 0px;
  }

  .pricing-card {
    padding: clamp(3.75rem, 3.3703rem + 1.8987vw, 5.625rem) 22px;
  }

  .swiper-button {
    display: block;
  }

  .progress-line {
    width: 80px;
  }

  .step-circle {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .order-summary-wrapper {
    position: static;
  }

  .checkout-card {
    padding: 1.5rem;
  }

  .order-summary-card {
    margin-bottom: 30px;
  }

  .btn-outline-secondary,
  .btn-theme-primary {
    padding: 12px 32px;
  }

  .shipping-row {
    .col-md-7 {
      width: 100%;
    }

    .col-md-5 {
      width: 100%;
    }
  }
}

@media (max-width: 767px) {
  .order-item {
    flex-direction: column;
    gap: 8px;
  }

  .customer-row {
    .col-md-6 {
      width: 50%;
    }
  }

  .item-price {
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .item-price p {
    display: inline-block;
  }

  .left-section,
  .form-section {
    padding: 1.5rem 1.25rem;
  }

  .left-section img[src*="logo"] {
    width: 180px;
    height: auto;
  }

  .icon-bg {
    width: 40px;
    height: 40px;
  }

  .trusted-text {
    gap: 12px;
    padding: 20px 0 0;
  }

  .trusted-text::before,
  .trusted-text::after {
    flex: 0.5;
  }

  .feature-box {
    gap: 16px;
  }

  .btn-theme {
    padding: 12px 24px;
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .logo-img {
    height: 45px;
  }



  .trusted-logos img {
    height: 30px;
  }

  .footer-links-bottom span {
    display: none;
  }

  .customer-card {
    img {
      max-width: 150px;
      margin: auto;
    }
  }

  .plan-details-card {
    padding: 30px 20px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .pricing-detailed-features li {
    gap: 8px;
  }

  .addons-card {
    padding: 1.5rem;
  }

  .plan-details-card {
    flex-direction: column;

    h2 {
      text-align: center;
    }
  }

  .pricing-cards-row {
    padding-top: 20px;
  }

  .sign-form {
    background-color: var(--white-color);
  }

  .form-section {
    border-radius: 0px;
  }

  .quick-amounts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .success-icon {
    width: 50px;
    height: 50px;
  }

  .success-icon svg {
    width: 28px;
    height: 28px;
  }

  .detail-label {
    width: 100%;
  }

  .success-actions .d-flex {
    flex-direction: column;
  }

  .success-actions .outline-btn {
    width: 100%;
  }

  .progress-line {
    width: 60px;
  }

  .step-circle {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .step-label {
    font-size: 13px;
  }

  .checkout-card {
    padding: 1.25rem;
  }

  .order-summary-card {
    padding: 1.5rem;
  }

  .btn-outline-secondary,
  .btn-theme-primary {
    padding: 12px 24px;
    width: 100%;
  }

  .btn-proceed-order {
    padding: 14px 24px;
  }

  .order-summary-wrapper {
    order: -1;
  }

  .payment-option {
    padding: 14px !important;
  }
}

@media (max-width: 575px) {

  .tab-pane .swiper-button-prev,
  .tab-pane .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .left-section,
  .form-section {
    padding: 24px;
  }

  .left-section img[src*="logo"] {
    width: 160px;
  }

  .icon-bg {
    width: 36px;
    height: 36px;
  }

  .icon-bg img {
    width: 18px;
    height: 18px;
  }

  .trusted-text {
    font-size: 12px;
    gap: 10px;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .feature-icon img {
    max-width: 80px;
    height: auto;
  }

  .order-info-cards {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .customer-row {
    .col-md-6 {
      width: 100% !important;
    }
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .progress-line {
    width: 50px;
    height: 1.5px;
  }

  .step-circle {
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-width: 1.5px;
  }

  .step-label {
    font-size: 12px;
  }

  .checkout-card {
    padding: 1rem;
    border-radius: 10px;
  }

  .payment-option {
    padding: 12px !important;
  }

  .btn-outline-secondary,
  .btn-theme-primary {
    padding: 12px 20px;
    font-size: 15px;
  }

  .btn-proceed-order {
    padding: 14px 20px;
    font-size: 16px;
  }


  .card-input-wrapper .card-logo {
    height: 22px;
    right: 12px;
  }
}

@media (max-width: 400px) {
  .tab-pane .swiper-button-prev {
    left: 38%;
  }

  .tab-pane .swiper-button-next {
    right: 38%;
  }

  .progress-line {
    width: 40px;
  }

  .step-circle {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }


  .btn-outline-secondary,
  .btn-theme-primary {
    padding: 10px 16px;
    font-size: 14px;
  }
}


@media (max-width: 375px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar {
    padding: 0.4rem 0;
  }

  .left-section,
  .form-section {
    padding: 1rem 0.875rem;
  }

  .left-section img[src*="logo"] {
    width: 140px;
  }

  .feature-box {
    gap: 12px;
  }

}



/* Header dropdown add css 24/12/25 */

.navbar-collapse.collapsing .mega-menu.dropdown-menu {
  display: none !important;
}

/* Normal hidden state */
.mega-menu.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
  transform-origin: top center;
}

.mega-menu.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.mega-menu {
  width: 480px;
  background: #FAF9F6;
  border: 1px solid #737373;
  border-radius: 16px;
  padding: clamp(1.25rem, 1.0854rem + 0.8228vw, 2.0625rem) clamp(1.25rem, 1.0854rem + 0.8228vw, 2.0625rem) clamp(1.25rem, 1.1614rem + 0.443vw, 1.6875rem);
}

.navbar-nav .nav-link.show {
  color: var(--theme-color);
}

.dropdown-arrow {
  transition: .3s ease;
}

.dropdown-arrow {
  transition: .3s ease;
  display: inline-block;
}

.mega-dropdown>a[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu[data-bs-popper] {
  margin-top: 10px;
}

.dropdown-subheading {
  color: #677489;
}

.w-max {
  width: max-content !important;
}

.chatbot-herosection {
  padding-top: clamp(0rem, -0.8861rem + 4.4304vw, 4.375rem);
}

.user-chatbot {
  height: clamp(10.625rem, 9.8655rem + 3.7975vw, 14.375rem);
  width: clamp(10.625rem, 9.8655rem + 3.7975vw, 14.375rem);
  border-radius: 50%;
}

.case-studies-card {
  background-color: var(--white-color);
  border-radius: 24px;
  padding: clamp(1.875rem, 1.6472rem + 1.1392vw, 3rem) clamp(1.875rem, 1.432rem + 2.2152vw, 4.0625rem);
  height: 100%;
  gap: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}

.chatbot-section {
  padding: clamp(0rem, -0.5063rem + 2.5316vw, 2.5rem) 0px;
}

.chabot-buzzFlow-card {
  background-color: var(--white-color);
  border: 1px solid var(--black-color);
  border-bottom: 3px solid var(--black-color);
  border-radius: 24px 0px 24px 0px;
  padding: 44px 46px;
  height: 100%;

  h4 {
    color: #74787C;
  }
}


.dropdown-content {

  h6,
  p {
    transition: color 0.3s ease;
  }

  img {
    transition: filter 0.3s ease;
  }

  &:hover {

    h6,
    p {
      color: var(--theme-color);
      cursor: pointer;
    }

    img {
      filter: brightness(0) saturate(100%) invert(65%) sepia(35%) saturate(5185%) hue-rotate(106deg) brightness(98%) contrast(98%);
    }
  }
}

.drop-title {
  transition: color 0.3s ease;
  cursor: pointer;

  &:hover {
    color: var(--theme-color);
  }
}

@media (max-width: 575px) {
  .mega-menu {
    width: 100%;
  }

}

@media (max-width: 768px) {
  .case-studies-card {
    flex-direction: column;
  }
}


@media (max-width: 992px) {
  .navbar-nav .dropdown-menu {
    position: absolute;
  }
}

/* Discount Price Styles */
.original-price {
  position: relative;
  color: #999;
  display: inline-block;
}

/* Custom Cut Line */
.original-price::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  /* line thickness */
  background: red;
  /* line color */
  transform: translateY(-50%);
}

.discount-badge {
  background-color: #03CF65;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

/* Add new */

.section-padding {
  padding-top:  clamp(6.25rem, 5.7437rem + 2.5316vw, 8.75rem);
}

.blog-img {
  border: 1px solid #E6E6FA;
  border-radius: 6px;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.recent-post-img {
  border: 1px solid #E6E6FA;
  border-radius: 6px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-icon-bg {
  background: #03CF65;
  padding: 6px;
  border-radius: 6px;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 👈 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 👈 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-card {
    border: 2px solid #02693333;
    border-radius: 6px;
    padding: 12px 16px;
}

.borderBottom {
  border-bottom: 1px solid #FFFDF3;
}


/* Breadcrumb Link */
.breadcrumb-link {
  text-decoration: none;
}

/* Pagination Buttons */
.pagination-btn {
  padding: 10px 14px;
  border-radius: 6px;
  background: transparent;
  color: #0a0a0a;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #03CF6566;
}

.pagination-btn:hover {
  border-color: #03CF65;
  color: #03CF65;
}

.pagination-btn-active {
  padding: 10px 14px;
  border: 1px solid #03CF65;
  border-radius: 6px;
  background: #03CF65;
  color: #FFFDF3;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  min-width: 40px;
}

.pagination-btn-number {
  min-width: 40px;
}

.line-height-22 {
  line-height: 22px !important;
}

.blog-content {
  border: 2px solid #02693333;
  border-radius: 6px;
  padding: 10px 15px;
}

/* Blog Details Section */
.blog-details-section {
  padding: 24px 0 clamp(4.375rem, 3.9953rem + 1.8987vw, 6.25rem);
}

.author-card {
  background: url('../images/png/author-bg-img.png') center/cover no-repeat;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.author-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.author-image {
  width: 100px;
  height: auto;
  border-radius: 12px;
  border: 1px solid #FFFFFF80;
}

.author-info {
  border-bottom: 1px solid #ffffff24;
  position: relative;
  z-index: 2;
}

.social-media-card {
  background: url('../images/png/social-media-bg.png') center/cover no-repeat;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.author-container {
  gap: 30px;
}

.toc-list li {
  position: relative;
  padding: 6px 18px;
}

.toc-list li:first-child {
  border-left: 3px solid var(--theme-color);
}

.toc-list a {
  color: var(--whiteLightColor);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.toc-list a:hover {
  color: var(--theme-color);
}

/* Blog Details Section */
.blog-hero-section {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 462px;
}

.blog-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.blog-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #F1ECFF;
  border-radius: 20px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--theme-color);
}

.blog-category-badge::before {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--theme-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.blog-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  padding: 60px 20px 20px;
  z-index: 2;
}

.blog-header {
  padding: 20px 0;
}

.blog-meta {
  margin-top: 12px;
}


/* Related Articles Section */
.article-card {
  border-radius: 10px;
  overflow: hidden;
  background: #A6A6A666;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.article-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-color);
  box-shadow: 0 15px 30px rgba(120, 119, 198, 0.3);
}
.article-card h4{
  color: #1B1B1F;
}
.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 6px;
}

.article-card:hover .article-image {
  transform: scale(1.05);
}

.article-content {
  padding: 10px 0px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  border-radius: 20px;
  background-color: var(--white-color);
  color: var(--theme-color);
  padding: 4px;
}

.article-category::before {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--theme-color);
  border-radius: 50%;
}

.article-meta {
  margin-top: auto;
  span{
    color: #1B1B1F;
  }
}

.social-media-bottom-card {
  background: url(../images/png/social-media-bottom-bg.png) center / cover no-repeat;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.borderTop{
  border-top:2px solid #ffffff52;
  margin-top: 30px;
}
.blog-link{
  color: var(--theme-color);
}