/* --- Dynamic Header Styles (Top vs Scrolled) --- */

/* 1. DEFAULT STATE: When at the TOP (Not Fixed) */
.site-header.style-4:not(.is-fixed) {
  background: #ffffff !important;
  /* Light Mode Default */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: absolute;
  /* Stay at top */
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
}

.site-header.style-4:not(.is-fixed) .navbar-nav>li>a {
  color: #1a1a1a !important;
  /* Dark text for light mode top */
}

.site-header.style-4:not(.is-fixed) .xmenu-toggler span {
  background-color: #ffffff !important;
}

/* 2. DARK MODE TOP STATE: When at the TOP in Dark Mode */
[data-theme-version="dark"] .site-header.style-4:not(.is-fixed) {
  background: #0a0a0a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}



[data-theme-version="dark"] .site-header.style-4:not(.is-fixed) .navbar-nav>li>a {
  color: #fff !important;
}


@media (max-width: 768px) {


  [data-theme-version="dark"] .site-header.style-4:not(.is-fixed) .navbar-nav>li>a {
    color: #000000 !important;
  }
}




[data-theme-version="dark"] .site-header.style-4:not(.is-fixed) .xmenu-toggler span {
  background-color: #fff !important;
}

/* 3. SCROLLED STATE: Theme-Aware Solid Header when Fixed */
.site-header.style-4.is-fixed {
  background: #ffffff !important;
  /* Default Light Mode Scrolled */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.site-header.style-4.is-fixed .navbar-nav>li>a {
  color: #1a1a1a !important;
  /* Dark text for light mode scrolled */
}

.site-header.style-4.is-fixed .xmenu-toggler span {
  background-color: #1a1a1a !important;
}

/* Dark Mode Scrolled Override */
[data-theme-version="dark"] .site-header.style-4.is-fixed {
  background: #0a0a0a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme-version="dark"] .site-header.style-4.is-fixed .navbar-nav>li>a {
  color: #fff !important;
}

[data-theme-version="dark"] .site-header.style-4.is-fixed .xmenu-toggler span {
  background-color: #fff !important;
}

/* Logo visibility adjustment based on scrolled background */
.site-header.style-4.is-fixed .logo-dark {
  display: block;
}

.site-header.style-4.is-fixed .logo-light {
  display: none;
}

[data-theme-version="dark"] .site-header.style-4.is-fixed .logo-dark {
  display: none;
}

[data-theme-version="dark"] .site-header.style-4.is-fixed .logo-light {
  display: block;
}

/* Hover & Active (Global) */
.site-header.style-4 .navbar-nav>li:hover>a,
.site-header.style-4 .navbar-nav>li.active>a {
  color: #B2FF41 !important;
}

.site-header.style-4 .main-bar {
  background: transparent !important;
}

.hero-dark-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(178, 255, 65, 0.1);
  border: 1px solid rgba(178, 255, 65, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 10px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #B2FF41;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.badge-text {
  color: #B2FF41;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}


@media (max-width: 425px) {
  .badge-text {
    font-size: 8px;
  }

  .hero-main-heading {
    color: #000000;
  }


  [data-theme-version="dark"] .hero-main-heading {
    color: #ffffff;
  }

  [data-theme-version="dark"] .hero-form-card {

    background: rgba(30, 30, 30, 0.85);
  }



}

/* Heading */
.hero-main-heading {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 10px;
  font-style: italic;
  letter-spacing: -1px;
}

@media (max-width: 425px) {

  .hero-main-heading {
    color: #000000;
  }
}


.hero-main-heading .text-accent {
  color: #86e100;
  font-style: italic;
}

/* Description */
.hero-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(178, 255, 65, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Form Card */
.hero-form-card {
  background: rgb(30, 30, 30);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 35px;
}

.hero-form-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.hero-form-subtitle {
  color: rgb(255, 255, 255);
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-form-group {
  margin-bottom: 20px;
}

.hero-form-label {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

.hero-form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.hero-form-input:focus {
  border-color: #B2FF41;
  background: rgba(178, 255, 65, 0.04);
  box-shadow: 0 0 0 3px rgba(178, 255, 65, 0.1);
}

.hero-form-btn {
  width: 100%;
  background: #B2FF41;
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 18px 30px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.hero-form-btn:hover {
  background: #c8ff6e;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(178, 255, 65, 0.3);
}

.hero-form-offer {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(178, 255, 65, 0.12) 0%, rgba(56, 192, 105, 0.1) 100%);
  border: 1px solid rgba(178, 255, 65, 0.2);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 20px;
}

.offer-star {
  color: #B2FF41;
  font-size: 18px;
  flex-shrink: 0;
}

.offer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.4;
}

.offer-text strong {
  color: #B2FF41;
  font-weight: 700;
}

.offer-highlight {
  color: #fff;
  font-weight: 800;
  background: rgba(178, 255, 65, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .hero-dark-banner {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-main-heading {
    font-size: 36px;
  }

  .hero-stats {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .hero-bg-video {
    display: none;
  }

  .hero-form-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@media (max-width: 425px) {
  .hero-video-overlay {
    background: rgb(255, 255, 255);
  }

  [data-theme-version="dark"] .hero-video-overlay {
    background: rgba(0, 0, 0, 0.85);
  }



  .hero-dark-banner {
    padding: 90px 0 50px;
  }

  .hero-main-heading {
    font-size: 35px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-form-card {
    padding: 30px 20px;
  }
}

.text-color-black-01 {
  color: black !important;
}

/* --- Custom GST Page Styles (Centralized) --- */
:root {
  --gst-green: #0c8224;
  --gst-green-light: #f4fbf5;
  --gst-green-dark: #09611b;
}

.icon-bx-wraper.style-6 {
  background: #ffffff;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  padding: 30px 25px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  counter-increment: gstSVC;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.icon-bx-wraper.style-6:hover {
  border-color: var(--gst-green);
  box-shadow: 0 15px 30px rgba(241, 90, 36, 0.08);
  transform: translateY(-10px);
}

.icon-bx-wraper.style-6 .icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  flex-grow: 1;
}

.icon-bx-wraper.style-6 .icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.icon-bx-wraper.style-6 .icon svg {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.icon-bx-wraper.style-6::before {
  content: counter(gstSVC, decimal-leading-zero) !important;
  position: absolute;
  bottom: -15px;
  left: 20px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(241, 90, 36, 0.05);
  line-height: 1;
  z-index: 3;
  transition: all 0.4s ease;
}

.icon-bx-wraper.style-6:hover::before {
  color: var(--gst-green);
  transform: translateY(-10px);
}

.icon-bx-wraper.style-6 .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.icon-bx-wraper.style-6 .icon-footer {
  padding-top: 15px;
  display: flex;
  justify-content: flex-end;
  z-index: 5;
  position: relative;
}

.icon-bx-wraper.style-6 .icon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.icon-bx-wraper.style-6 .icon-tags a {
  background: var(--gst-green-light);
  color: var(--gst-green);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-block;
}

#services {
  counter-reset: gstSVC !important;
}

.benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  border: 1px solid #eee;
  position: relative;
}

.benefit-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
  border-color: var(--gst-green);
}

.benefit-icon {
  width: 55px;
  height: 55px;
  background: var(--gst-green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gst-green);
  font-size: 24px;
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--gst-green);
  color: #fff;
}

.benefit-card .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.benefit-card .text {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}

.gst-hero-banner {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/banner/bnr1.webp') no-repeat center center;
  background-size: cover;
  border-radius: 50px;
  padding: 80px 60px;
  margin-bottom: 50px;
  color: #fff;
  overflow: hidden;
  min-height: 30rem;
  display: flex;
  align-items: center;
}

.gst-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.gst-hero-content .title {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.gst-hero-content .btn-white {
  background: #fff;
  color: #000;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gst-hero-content .btn-white:hover {
  background: var(--gst-green);
  color: #fff;
  transform: scale(1.05);
}

.feature-point .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-beige {
  background-color: #f7f7eb !important;
}

.icon-bx-wraper.style-5 .icon-box {
  display: flex;
  transition: 0.5s;
  gap: 20px;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  align-items: center;
  border: 1px solid transparent;
  height: 100%;
}

.icon-bx-wraper.style-5 .icon-box:hover {
  border-color: var(--gst-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.white-color-001 {
  background-color: #ffffff !important;
}



[data-theme-version="dark"] .white-color-001 {
  background-color: #000000 !important;
}



.why-lynex-title {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.2;
  font-weight: 600;
  color: #1a1a1a;
}

/* --- Dark Mode Overrides (Centralized) --- */
[data-theme-version="dark"] .content-inner-2 {
  background-color: #1a1a1a !important;
}

[data-theme-version="dark"] .content-inner-2 .title.headline,
[data-theme-version="dark"] .content-inner-2 .title.headline span {
  color: #ffffff !important;
}

[data-theme-version="dark"] .content-inner-2 .text {
  color: #cccccc !important;
}

[data-theme-version="dark"] .icon-bx-wraper.style-6 .icon-content .title a,
[data-theme-version="dark"] .icon-bx-wraper.style-5 .icon-content .title {
  color: #fff !important;
}

[data-theme-version="dark"] .icon-bx-wraper.style-6,
[data-theme-version="dark"] .icon-bx-wraper.style-5,
[data-theme-version="dark"] .benefit-card,
[data-theme-version="dark"] .icon-bx-wraper.style-5 .icon-box {
  background-color: #1a1a1a !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme-version="dark"] .why-lynex-title {
  color: #fff !important;
}

[data-theme-version="dark"] .benefit-card .title {
  color: #ffffff !important;
}

[data-theme-version="dark"] .benefit-card .text {
  color: #cccccc !important;
}

[data-theme-version="dark"] .icon-bx-wraper.style-6::before {
  color: rgba(255, 255, 255, 0.05) !important;
}

[data-theme-version="dark"] .content-inner-2 .btn.btn-primary,
[data-theme-version="dark"] .content-inner-2 .btn.btn-primary span {
  color: #fff !important;
}

[data-theme-version="dark"] .truck-wheel-001 {
  stroke: #fff !important;
  stroke-width: 1.5px !important;
}

[data-theme-version="dark"] .interstate-icon-001 svg path {
  stroke: #fff !important;
}

[data-theme-version="dark"] .truck-body-001 {
  fill: #1a1a1a !important;
}

/* Marketplace Icon Dark Mode */
[data-theme-version="dark"] .marketplace-icon-001 svg path,
[data-theme-version="dark"] .marketplace-icon-001 svg rect {
  stroke: #fff !important;
}

[data-theme-version="dark"] .store-base-001 {
  fill: #1a1a1a !important;
}

[data-theme-version="dark"] .store-door-001 {
  fill: #fff !important;
}

[data-theme-version="dark"] .store-window-001 {
  opacity: 0.6 !important;
}

/* Registered Operations Dark Mode */
[data-theme-version="dark"] .operations-icon-001 svg path,
[data-theme-version="dark"] .operations-icon-001 svg circle {
  stroke: #fff !important;
}

[data-theme-version="dark"] .cert-base-001 {
  fill: #1a1a1a !important;
}

/* ITC Claims Dark Mode */
[data-theme-version="dark"] .itc-icon-001 svg path,
[data-theme-version="dark"] .itc-icon-001 svg circle {
  stroke: #fff !important;
}

[data-theme-version="dark"] .itc-base-001 {
  fill: #1a1a1a !important;
}

[data-theme-version="dark"] .itc-symbol-001 {
  stroke: var(--gst-green) !important;
}

/* Business Trust Dark Mode */
[data-theme-version="dark"] .trust-icon-001 svg path,
[data-theme-version="dark"] .trust-icon-001 svg circle {
  stroke: #fff !important;
}

[data-theme-version="dark"] .trust-base-001 {
  fill: #1a1a1a !important;
}

/* registration-icon-001 Dark Mode */
[data-theme-version="dark"] .registration-icon-001 svg path,
[data-theme-version="dark"] .registration-icon-001 svg circle {
  stroke: #fff !important;
}

[data-theme-version="dark"] .reg-base-001 {
  fill: #1a1a1a !important;
}

/* filing-icon-001 Dark Mode */
[data-theme-version="dark"] .filing-icon-001 svg path,
[data-theme-version="dark"] .filing-icon-001 svg rect {
  stroke: #fff !important;
}

[data-theme-version="dark"] .filing-base-001 {
  fill: #1a1a1a !important;
}

/* advisory-icon-001 Dark Mode */
[data-theme-version="dark"] .advisory-icon-001 svg path,
[data-theme-version="dark"] .advisory-icon-001 svg circle {
  stroke: #fff !important;
}

[data-theme-version="dark"] .advisory-base-001 {
  fill: #1a1a1a !important;
}

/* notice-icon-001 Dark Mode */
[data-theme-version="dark"] .notice-icon-001 svg path,
[data-theme-version="dark"] .notice-icon-001 svg rect {
  stroke: #fff !important;
}

[data-theme-version="dark"] .notice-base-001 {
  fill: #1a1a1a !important;
}

/* FSSAI Icons Dark Mode */
[data-theme-version="dark"] .fssai-basic-001 svg path,
[data-theme-version="dark"] .fssai-basic-001 svg rect,
[data-theme-version="dark"] .fssai-state-001 svg path,
[data-theme-version="dark"] .fssai-state-001 svg circle,
[data-theme-version="dark"] .fssai-central-001 svg path,
[data-theme-version="dark"] .fssai-central-001 svg rect,
[data-theme-version="dark"] .fssai-compliance-001 svg path,
[data-theme-version="dark"] .fssai-trust-001 svg circle,
[data-theme-version="dark"] .fssai-expansion-001 svg path {
  stroke: #fff !important;
}

[data-theme-version="dark"] .fssai-base-001 {
  fill: #1a1a1a !important;
}

[data-theme-version="dark"] .fssai-roof-001,
[data-theme-version="dark"] .fssai-accent-001 {
  fill: #ffc107 !important;
  stroke: #1c1a1b !important;
}

[data-theme-version="dark"] .fssai-trust-001 path {
  stroke: #ffc107 !important;
}

/* Trademark Icons Dark Mode */
[data-theme-version="dark"] .tm-search-icon-001 svg circle,
[data-theme-version="dark"] .tm-search-icon-001 svg line,
[data-theme-version="dark"] .tm-filing-icon-001 svg path,
[data-theme-version="dark"] .tm-filing-icon-001 svg circle,
[data-theme-version="dark"] .tm-objection-icon-001 svg path,
[data-theme-version="dark"] .tm-renewal-icon-001 svg circle,
[data-theme-version="dark"] .tm-renewal-icon-001 svg path,
[data-theme-version="dark"] .tm-legal-icon-001 svg path,
[data-theme-version="dark"] .tm-asset-icon-001 svg path,
[data-theme-version="dark"] .tm-authority-icon-001 svg circle,
[data-theme-version="dark"] .tm-authority-icon-001 svg path {
  stroke: #fff !important;
}

[data-theme-version="dark"] .tm-base-001 {
  fill: #1a1a1a !important;
}

[data-theme-version="dark"] .tm-renewal-icon-001 text {
  fill: var(--tm-blue) !important;
}

/* MSME Icons Dark Mode */
[data-theme-version="dark"] .udyam-new-icon-001 svg rect,
[data-theme-version="dark"] .udyam-new-icon-001 svg path,
[data-theme-version="dark"] .udyam-update-icon-001 svg path,
[data-theme-version="dark"] .udyam-loans-icon-001 svg path,
[data-theme-version="dark"] .udyam-subsidy-icon-001 svg circle,
[data-theme-version="dark"] .udyam-tender-icon-001 svg path {
  stroke: #fff !important;
}

[data-theme-version="dark"] .udyam-base-001 {
  fill: #1a1a1a !important;
}

[data-theme-version="dark"] .udyam-loans-icon-001 text {
  fill: var(--tm-blue) !important;
}

/* Company Icons Dark Mode */
[data-theme-version="dark"] .comp-dsc-icon-001 svg circle,
[data-theme-version="dark"] .comp-dsc-icon-001 svg path,
[data-theme-version="dark"] .comp-name-icon-001 svg rect,
[data-theme-version="dark"] .comp-name-icon-001 svg path,
[data-theme-version="dark"] .comp-name-icon-001 svg circle,
[data-theme-version="dark"] .comp-incorp-icon-001 svg path,
[data-theme-version="dark"] .comp-tax-icon-001 svg rect,
[data-theme-version="dark"] .comp-tax-icon-001 svg circle,
[data-theme-version="dark"] .comp-tax-icon-001 svg path,
[data-theme-version="dark"] .comp-shield-icon-001 svg path,
[data-theme-version="dark"] .comp-entity-icon-001 svg circle,
[data-theme-version="dark"] .comp-entity-icon-001 svg path,
[data-theme-version="dark"] .comp-capital-icon-001 svg path,
[data-theme-version="dark"] .comp-capital-icon-001 svg circle,
[data-theme-version="dark"] .comp-succession-icon-001 svg circle,
[data-theme-version="dark"] .comp-succession-icon-001 svg path,
[data-theme-version="dark"] .comp-trust-icon-001 svg circle,
[data-theme-version="dark"] .comp-trust-icon-001 svg path {
  stroke: #fff !important;
}

[data-theme-version="dark"] .comp-base-001 {
  fill: #1a1a1a !important;
}

[data-theme-version="dark"] .comp-dsc-icon-001 text,
[data-theme-version="dark"] .comp-tax-icon-001 text {
  fill: var(--gst-green) !important;
}

/* GST Page Dark Mode Fixes */
[data-theme-version="dark"] .icon-bx-wraper.style-6 {
  background: #1c1c1c !important;
  border-color: #2a2a2a !important;
}

[data-theme-version="dark"] .icon-bx-wraper.style-6 .icon-box {
  border-bottom-color: #2a2a2a !important;
}

[data-theme-version="dark"] .icon-bx-wraper.style-6 .title,
[data-theme-version="dark"] .benefit-card .title {
  color: #ffffff !important;
}

[data-theme-version="dark"] .icon-bx-wraper.style-6 .text,
[data-theme-version="dark"] .benefit-card .text {
  color: #bbbbbb !important;
}

[data-theme-version="dark"] .text-001 {
  color: #bbbbbb !important;
}


[data-theme-version="dark"] .benefit-card {
  background: #1c1c1c !important;
  border-color: #2a2a2a !important;
}

/* --- Company Registration Page Specifics --- */
.content-inner-6.style-1 {
  background-color: #ffffff;
}

[data-theme-version="dark"] .content-inner-6.style-1 {
  background-color: #1a1a1a !important;
}

.content-inner-6.style-1 .banner-media.style-1 {
  height: 100% !important;
}

.content-inner-6.style-1 .banner-media.style-1 img {
  height: 100% !important;
  object-fit: cover !important;
}

.icon-bx-wraper.style-6 .icon-content {
  position: relative;
  z-index: 2;
}

/* --- Amazon Account Launch Page Specifics --- */
.strategy-hero-banner {
  position: relative;
  background: url("../images/banner/amazon_launch_banner.webp") no-repeat center center;
  background-size: cover;
  border-radius: 50px;
  padding: 80px 60px;
  margin-bottom: 50px;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 30rem;
}

.strategy-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.strategy-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.strategy-hero-media img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.strategy-hero-content .title {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.strategy-hero-content .btn-white {
  background: #fff;
  color: #000;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.strategy-hero-content .btn-white:hover {
  background: #fc9928;
  color: #fff;
  transform: scale(1.05);
}

.feature-point {
  text-align: left;
}

.feature-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 20px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fc9928;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme-version="dark"] .feature-point .title {
  color: #fff !important;
}

[data-theme-version="dark"] .feature-avatar {
  background: #1a1a1a !important;
  color: #fc9928 !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05) !important;
}

[data-theme-version="dark"] .strategy-hero-banner::before {
  background: rgba(0, 0, 0, 0.5) !important;
}

/* --- Clients Page Specifics --- */
.clients-hero-section {
  padding: 120px 0 0;
  background-color: #f3f4f1 !important;
}

.hero-main-title {
  font-size: clamp(40px, 8vw, 85px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #111;
  max-width: 900px;
  margin: 0 auto 40px;
  text-transform: none;
}

.hero-content-left {
  max-width: 320px;
  position: absolute;
  left: 5%;
  top: 45%;
  z-index: 10;
}

.hero-content-right {
  position: absolute;
  right: 5%;
  top: 55%;
  z-index: 10;
  text-align: left;
}

.innovate-btn {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #333;
  border-radius: 50px;
  color: #111;
  font-weight: 500;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s;
}

.innovate-btn:hover {
  background: #111;
  color: #fff;
}

.experience-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
}

.experience-box p {
  color: #666;
  font-size: 14px;
}

.stars-row {
  color: #b2ff41;
  font-size: 18px;
  margin-bottom: 5px;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  z-index: 5;
}

.hero-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  z-index: -1;
}

.dual-btn-pill {
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 380px;
}

.pill-btn-green {
  background: #b2ff41;
  color: #000;
  padding: 10px 25px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
}

.pill-btn-text {
  color: #fff;
  padding: 0 25px;
  text-decoration: none;
  font-size: 14px;
}

.pill-btn-text:hover {
  color: #ffffffff;
}

.deco-icon-1 {
  position: absolute;
  top: 25%;
  left: 5%;
  width: 60px;
  opacity: 0.8;
  background: transparent !important;
}

.deco-icon-2 {
  position: absolute;
  top: 25%;
  right: 5%;
  width: 40px;
  transform: rotate(45deg);
  background: transparent !important;
}

.width-animate {
  transition: width 0.4s ease, max-width 0.4s ease, padding 0.4s ease;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

.w-fit-content {
  width: fit-content;
  margin-left: auto;
}

@media (max-width: 991px) {

  .hero-content-left,
  .hero-content-right {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    margin: 20px auto;
    text-align: center;
    max-width: 100%;
  }

  .hero-image-container {
    max-width: 350px;
  }

  .hero-main-title {
    font-size: 40px;
  }
}

[data-theme-version="dark"] .clients-hero-section {
  background-color: #191b1d !important;
}

[data-theme-version="dark"] .hero-main-title {
  color: #fff;
}

[data-theme-version="dark"] .hero-content-left p {
  color: #ccc;
}

[data-theme-version="dark"] .experience-box h3 {
  color: #fff;
}

[data-theme-version="dark"] .experience-box p {
  color: #bbb;
}

[data-theme-version="dark"] .innovate-btn {
  color: #fff;
  border-color: #fff;
}

[data-theme-version="dark"] .innovate-btn:hover {
  background: #fff;
  color: #000;
}

[data-theme-version="dark"] .hero-bg-circle {
  background: rgba(255, 255, 255, 0.05);
}

/* --- Homepage Specifics --- */
.seo-dark,
.seo-light {
  position: relative;
  top: -8px;
}

.rating-bx .logo img {
  width: 25px;
  height: 25px;
}

@media only screen and (max-width: 768px) {
  .main-banner.style-4 .banner-content .banner-title span img {
    width: 240px;
  }

  .seo-dark,
  .seo-light {
    position: relative;
    top: -4px;
  }
}

/* --- Services Page Specifics --- */
.min-w-125px {
  min-width: 125px;
}

/* --- Meesho Page Specifics --- */
.meesho-hero-banner {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/banner/meesho-banner.webp") no-repeat center center;
  background-size: cover;
  border-radius: 50px;
  padding: 80px 60px;
  margin-bottom: 50px;
  color: #fff;
  overflow: hidden;
  min-height: 30rem;
  display: flex;
  align-items: center;
}

.meesho-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.meesho-hero-content .title {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

[data-theme-version="dark"] .meesho-hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/banner/meesho-banner.webp") no-repeat center center;
}

/* --- JioMart Page Specifics --- */
:root {
  --jiomart-green: #008ecc;
  --jiomart-green-light: #e6f4fa;
  --jiomart-green-dark: #007bb0;
}

/* --- Flipkart RPD Specifics --- */
.section-rpd-process {
  background-color: #f2efe8 !important;
}

.benefit-card {
  background: #f8f8f8;
  padding: 40px 30px;
  border-radius: 20px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(50% - 12px);
}

.benefit-card:hover {
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 45px;
  height: 45px;
  background: #1c1a1b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.benefit-card .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c1a1b;
}

.benefit-card .text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

.benefit-center-img-box {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-center-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Mode Overrides for RPD */
[data-theme-version="dark"] .section-rpd-process {
  background-color: #1a1b1d !important;
}

[data-theme-version="dark"] .section-rpd-process .title.dz-title {
  color: #fff !important;
}

[data-theme-version="dark"] .section-rpd-process .text {
  color: #ccc !important;
}

[data-theme-version="dark"] .benefit-card {
  background: #242424 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme-version="dark"] .benefit-card:hover {
  background: #2c2c2c !important;
}

[data-theme-version="dark"] .benefit-card .title {
  color: #fff !important;
}

[data-theme-version="dark"] .benefit-card .text {
  color: #bbb !important;
}

[data-theme-version="dark"] .benefit-icon {
  background: #fff;
  color: #000;
}

/* ============================================
   About Us - History Carousel Mobile Fix
   Modified for all mobile screens up to 767px
   ============================================ */
@media (max-width: 767px) {

  /* Section aur carousel container ko clip karo — yahi root cause hai */
  #history,
  .pxl-history-carousel,
  .pxl-carousel-inner {
    overflow: hidden !important;
    max-width: 100vw !important;
  }

  /* Slide wrapper bhi viewport se bahar na jaye */
  .pxl-swiper-slide.item-slide .single {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  /* Box container ko screen ke andar rakho */
  .ovarlay-box.style-1 {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  /* Content padding add karo taaki text edges se touch na kare */
  .ovarlay-box.style-1 .content {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px 15px !important;
  }

  /* Paragraph ko wrap karo aur width fix karo  */
  .ovarlay-box.style-1 .content .ovarlay-info p {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    padding: 0 !important;
  }

  /* Headline fix — line-height 60px tha, wrap hone par overlap ho raha tha */
  .ovarlay-box.style-1 .content .ovarlay-info .title {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    white-space: normal !important;
    word-break: break-word !important;
    display: block !important;
  }
}

/* ============================================
   Footer Columns Mobile Stacking Fix
   425px aur chhoti screens ke liye
   ============================================ */
@media screen and (max-width: 425px) {
  .footer-col-stack {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* Heading Spacing Fix for Mobile */
@media only screen and (max-width: 575px) {
  .section-head.style-3 .title {
    display: block !important;
  }

  .headline>div {
    display: inline-block !important;
    margin-right: 0.25em !important;
  }

  .headline>div:last-child {
    margin-right: 0 !important;
  }
}

/* Restoring missing Bootstrap Utilities (for Purged CSS) */
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}


.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 70px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 80px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* --- Pricing Page - Timeline Structure (Refined) --- */
.timeline-section-bg {
  background-color: #f8fafc !important;
  /* Very light gray-blue from image */
}

.timeline-container {
  position: relative;
  padding: 60px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed #cbd5e1;
  background: transparent;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-line::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #cbd5e1;
}

.timeline-item {
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #cbd5e1;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.timeline-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05),
    0 10px 10px -5px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 40px -10px rgba(0, 0, 0, 0.1) !important;
}

.mirror-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: 100%;
}

.mirror-text::before {
  content: '-';
  margin-right: 15px;
}

.mirror-text.text-end::before {
  content: none;
}

.mirror-text.text-end::after {
  content: '-';
  /* Numerical suffixes like in image */
  margin-left: 10px;
  font-size: 1.2rem;
  opacity: 0.5;
}

@media (max-width: 991px) {
  .timeline-line {
    left: 30px;
    transform: none;
  }

  .timeline-dot {
    left: 30px;
    transform: none;
  }

  .timeline-item .row {
    flex-direction: column !important;
  }

  .timeline-card {
    margin-left: 50px;
    padding: 25px;
  }

  .mirror-text {
    display: none;
  }
}

/* --- Timeline Dark Mode --- */
[data-theme-version="dark"] .timeline-section-bg {
  background-color: #111111 !important;
}

[data-theme-version="dark"] .timeline-card {
  background: #1c1c1c !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4) !important;
}

[data-theme-version="dark"] .timeline-card h4,
[data-theme-version="dark"] .timeline-card p {
  color: #fff !important;
}

[data-theme-version="dark"] .timeline-line {
  border-left-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme-version="dark"] .timeline-line::after {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme-version="dark"] .timeline-dot {
  background: #1c1c1c !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

[data-theme-version="dark"] .mirror-text {
  color: rgba(255, 255, 255, 0.2) !important;
}

.white-color-text-001 {
  color: #1e293b !important;
}

[data-theme-version="dark"] .white-color-text-001 {
  color: #ffffff !important;
}

.online-text-image-001 {
  height: 60px;
}

@media (max-width: 425px) {
  .online-text-image-001 {
    height: 35px;
  }
}

/* Hero Section Background Logic (Light/Dark) */
.hero-dark-banner {
  background-color: #ffffff !important;
}

[data-theme-version="dark"] .hero-dark-banner {
  background-color: #0a0a0a !important;
}

/* Reliable form positioning */
.hero-form-wrapper {
  transform: translateY(30px);
  z-index: 10;
}

.hero-form-input {
  color: #ffffff !important;
  font-size: 16px !important;
  /* Force 16px to prevent mobile auto-zoom */
}

/* Autofill Fix: Ensures text stays white and background remains dark when using browser selector/autofill */
.hero-form-input:-webkit-autofill,
.hero-form-input:-webkit-autofill:hover,
.hero-form-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.05) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

@media (max-width: 991px) {
  .hero-form-wrapper {
    transform: translateY(0);
    margin-top: 30px;
  }
}

/* Premium Stats Boxes Design */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03) !important;
  /* Dark Mode: Glass dark background */
  border-color: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}






@media (max-width: 425px) {
  .stat-item {
    background: #1e1e1e !important;
  }

  [data-theme-version="dark"] .stat-item {
    background: #ffffff1c !important;
    /* Dark Mode: Glass dark background */
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
}

.stat-item .stat-number {
  font-family: var(--font-family-title);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff !important;
  /* Light Mode: Dark text */
  display: block;
  line-height: 1.2;
}

@media (max-width: 425px) {
  .stat-item .stat-number {
    color: #1e293b !important;
  }

  [data-theme-version="dark"] .stat-item .stat-number {
    color: #ffffff !important;
    /* Dark Mode: White text */
  }
}




.stat-item .stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff !important;
  /* Light Mode: Gray text */
}


@media (max-width: 425px) {
  .stat-item .stat-number {
    color: #ffffff !important;
  }

  .stat-item .stat-label {
    color: #ffffff !important;
  }

  [data-theme-version="dark"] .stat-item .stat-label {
    color: rgba(255, 255, 255, 0.5) !important;
    /* Dark Mode: Faded white text */
  }


}


/* 
.stat-item:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: #B2FF41 !important;
  transform: translateY(-5px);
}

[data-theme-version="dark"] .stat-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
} */


@media (hover: hover) {
  .stat-item:hover {
    background: rgba(0, 0, 0, 0.06) !important;
    border-color: #B2FF41 !important;
    transform: translateY(-5px);
  }

  [data-theme-version="dark"] .stat-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
  }
}

/* Badge Refinement */
.hero-badge {
  background: rgba(178, 255, 65, 0.15) !important;
  border: 1px solid rgba(178, 255, 65, 0.3) !important;
  padding: 6px 15px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-badge .badge-text {
  color: #B2FF41 !important;
  /* Bold on Light Mode */
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}




@media (max-width: 425px) {
  .hero-badge .badge-text {
    color: #1a1a1a !important;
  }

  [data-theme-version="dark"] .hero-badge .badge-text {
    color: #B2FF41 !important;
  }
}

/* Hero Description Visibility */
.hero-description {
  color: #ffffff !important;
  /* Darker slate for readability in Light Mode */
  font-size: 18px;
  max-width: 550px;
  line-height: 1.6;
}


@media (max-width: 425px) {
  .hero-description {
    color: #475569 !important;
  }

  [data-theme-version="dark"] .hero-description {
    color: rgba(255, 255, 255, 0.7) !important;
  }
}



/* Dynamic Marketing Image Logic */
.marketing-image-dynamic {
  display: inline-block;
  vertical-align: middle;
  height: 60px;
  width: 260px;
  /* Responsive container width */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  background-image: url('../../images/marketing-light.webp');
  /* Always light version for Desktop */
  margin: 0 5px;
}

@media (max-width: 425px) {
  .marketing-image-dynamic {

    background-image: url('../../images/marketing.webp');
    /* Default Mobile: Light Mode Image */
  }

  [data-theme-version="dark"] .marketing-image-dynamic {
    background-image: url('../../images/marketing-light.webp') !important;
    /* Mobile Dark Mode Image */
  }

  .marketing-image-dynamic {
    width: 180px;

  }
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(178, 255, 65, 0.1);
  border-radius: 8px;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* --- Redesigned Offer Banner with Pulse Effect --- */
.hero-offer-banner {
  background: rgba(178, 255, 65, 0.05);
  border: 1.5px solid #B2FF41;
  border-radius: 14px;
  padding: 14px 20px;

  gap: 15px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(178, 255, 65, 0.1);
  animation: border-pulse 2.5s infinite linear;
}

@keyframes border-pulse {
  0% {
    border-color: rgba(178, 255, 65, 0.4);
    box-shadow: 0 0 10px rgba(178, 255, 65, 0.1);
  }

  50% {
    border-color: rgba(178, 255, 65, 1);
    box-shadow: 0 0 20px rgba(178, 255, 65, 0.3);
  }

  100% {
    border-color: rgba(178, 255, 65, 0.4);
    box-shadow: 0 0 10px rgba(178, 255, 65, 0.1);
  }
}


.offer-icon-box {
  width: 36px;
  height: 36px;
  background-color: #B2FF41;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(178, 255, 65, 0.5);
  animation: pulse-glow 2.5s infinite linear;
}

.offer-star {
  color: #000;
  font-size: 18px;
}

.offer-details {
  line-height: 1.4;
}

.offer-tagline {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.tag-bold {
  color: #B2FF41;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-main {
  font-size: 14px;
  color: #fff;
  margin-top: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tag-highlight {
  background: #B2FF41;
  color: #000;
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 800;

  text-transform: uppercase;
}

/* Glowing Pulse Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(178, 255, 65, 0.8), 0 0 0 0 rgba(178, 255, 65, 0.5);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(178, 255, 65, 0), 0 0 20px 5px rgba(178, 255, 65, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(178, 255, 65, 0), 0 0 0 0 rgba(178, 255, 65, 0.3);
  }
}


/* Hero Form Button Neon Effect */
.hero-form-btn {
  box-shadow: 0 10px 20px rgba(178, 255, 65, 0.15);
  transition: all 0.3s ease;
}

.hero-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(178, 255, 65, 0.25);
  background-color: #c2ff6b !important;
}