/* ===== FUJISHKA BRAND MASTER STYLESHEET ===== */
:root {
  --fj-green: #3EB649;
  --fj-green-dark: #2a9e38;
  --fj-green-glow: rgba(62, 182, 73, 0.35);
  --fj-dark: #111827;
  --fj-navy: #050f1f;
  --fj-light-green: #e8f7ea;
  --fj-gradient: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  --fj-gradient-2: linear-gradient(135deg, #3EB649 0%, #00b894 100%);
  /* alias */
  --fujishka-green: #3EB649;
  --fujishka-dark: #111827;
  --fujishka-light-green: #e8f7ea;
  --fujishka-gradient: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
}

/* ===================== TOP BAR ===================== */
.fj-topbar {
  background: #53b748;
  color: #fff;
  padding: 8px 0;
  font-size: 12.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(62, 182, 73, 0.2);
  position: relative;
  z-index: 1001;
}

.fj-topbar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.fj-topbar a:hover {
  color: #fff;
}

.fj-topbar .fj-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fj-topbar .contact-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.fj-topbar .contact-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 0;
}

.fj-topbar .contact-links a i {
  color: var(--fj-green);
  font-size: 11px;
}

.fj-topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fj-topbar .lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff !important;
  font-weight: 500;
  border-left: 1px solid rgba(62, 182, 73, 0.25);
  padding-left: 14px;
}

.fj-demo-btn {
  background: var(--fj-gradient);
  color: #fff !important;
  padding: 5px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 10px rgba(62, 182, 73, 0.25);
}

.fj-demo-btn:hover {
  box-shadow: 0 4px 18px rgba(62, 182, 73, 0.45);
  transform: translateY(-1px);
}

/* ===================== NAVBAR ===================== */
.fj-navbar {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(62, 182, 73, 0.12);
  transition: all 0.4s ease;
  padding: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.fj-navbar.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(62, 182, 73, 0.18);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
}

@media (max-width: 767px) {
  .fj-navbar {
    top: 0;
  }
}

.fj-navbar .header-area-1__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0px 0;
  /* Reset Stackly template pill/transparent inner so navbar stays white (not green bleed) */
  background: transparent;
  border-radius: 0;
  margin-top: 0;
}

/* Logo */
.fj-logo-wrap {
  flex-shrink: 0;
}

.fj-logo-wrap a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fj-logo-wrap img {
  height: 40px;
  width: auto;
}

.fj-logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fj-logo-symbol {
  font-size: 38px;
  font-weight: 900;
  background: var(--fj-gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.fj-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.fj-logo-text .brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

.fj-logo-text .brand-tagline {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--fj-green);
  letter-spacing: 0.5px;
  margin-top: 1px;
}

/* Main Menu */
.fj-navbar .main-menu>ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fj-navbar .main-menu>ul>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
}

.fj-navbar .main-menu>ul>li>a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--fj-green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.fj-navbar .main-menu>ul>li:hover>a,
.fj-navbar .main-menu>ul>li>a.active {
  color: var(--fj-green);
}

.fj-navbar .main-menu>ul>li:hover>a::after,
.fj-navbar .main-menu>ul>li>a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.fj-navbar .dp-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(62, 182, 73, 0.15);
  border-radius: 14px;
  padding: 10px;
  list-style: none;
  min-width: 210px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(62, 182, 73, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  transform: translateX(-50%) translateY(8px);
  z-index: 999;
}

.fj-navbar .menu-item-has-children {
  position: relative;
}

.fj-navbar .menu-item-has-children:hover .dp-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.fj-navbar .dp-menu li a {
  display: block;
  padding: 9px 14px;
  color: #444;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}

.fj-navbar .dp-menu li a:hover {
  background: rgba(62, 182, 73, 0.08);
  color: var(--fj-green);
  padding-left: 18px;
}

/* Nav CTA button */
.fj-navbar .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fj-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fj-gradient);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(62, 182, 73, 0.3);
  border: none;
}

.fj-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(62, 182, 73, 0.5);
}

.fj-nav-cta .btn-arrow {
  transition: transform 0.3s;
}

.fj-nav-cta:hover .btn-arrow {
  transform: translateX(3px);
}

.bar-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.bar-icon span {
  display: block;
  width: 26px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== HERO SECTION ===================== */
.fj-hero {
  position: relative;
  min-height: 646px;
  display: flex;
  align-items: center;
  padding: 75px 0 60px;
  overflow: hidden;
  background: #050f1f;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  pointer-events: none;
}

.fj-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/imgs/fujishka/hero-bg.png') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.fj-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 31, 0.411) 0%, rgba(5, 15, 31, 0.85) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(62, 182, 73, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.fj-hero .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background-image:
    linear-gradient(rgba(62, 182, 73, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 182, 73, 0.04) 1px, transparent 1px); */
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
  animation: grid-slide 20s linear infinite;
}

@keyframes grid-slide {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

.fj-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.fj-hero .orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(62, 182, 73, 0.07);
  top: -120px;
  right: -80px;
  animation: orb-drift-1 12s ease-in-out infinite alternate;
}

.fj-hero .orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 120, 60, 0.10);
  bottom: -80px;
  left: 5%;
  animation: orb-drift-2 15s ease-in-out infinite alternate;
}

.fj-hero .orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(62, 182, 73, 0.06);
  top: 30%;
  right: 25%;
  animation: orb-drift-3 10s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(50px, -40px) scale(1.15);
    opacity: 1;
  }

  100% {
    transform: translate(-30px, 50px) scale(0.9);
    opacity: 0.8;
  }
}

@keyframes orb-drift-2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-60px, 30px) scale(1.2);
    opacity: 0.9;
  }

  100% {
    transform: translate(40px, -50px) scale(0.95);
    opacity: 0.7;
  }
}

@keyframes orb-drift-3 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(30px, 40px) scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-20px, -30px) scale(0.9);
    opacity: 0.6;
  }
}

.fj-hero .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.fj-hero .hero-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.fj-hero .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.fj-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fj-gradient);
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 6px 24px rgba(62, 182, 73, 0.35);
  position: relative;
  overflow: hidden;
}

.fj-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(62, 182, 73, 0.5);
}

.hero-circle-container {
  position: relative;
  width: 480px;
  height: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle-mask {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(83, 183, 72, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 60px rgba(83, 183, 72, 0.1);
  z-index: 2;
}

.hero-circle-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-circle-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(83, 183, 72, 0.3);
  pointer-events: none;
  z-index: 1;
  animation: hero-ring-spin 18s linear infinite;
}

@keyframes hero-ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-circle-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 183, 72, 0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: hero-glow-pulse 4s ease-in-out infinite;
}

@keyframes hero-glow-pulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-ai-badge {
  position: absolute;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(83, 183, 72, 0.25);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: float-card 3.5s ease-in-out infinite;
}

.hero-ai-badge .badge-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(83, 183, 72, 0.2), rgba(83, 183, 72, 0.05));
  border: 1px solid rgba(83, 183, 72, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #53b748;
  flex-shrink: 0;
}

.hero-ai-badge .badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-ai-badge .badge-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.hero-ai-badge-2 {
  top: 55px;
  right: -25px;
  animation-delay: 1.8s;
}

.hero-grow-badge {
  position: absolute;
  bottom: 5px;
  left: -20px;
  background: linear-gradient(135deg, #53b748, #3d9635);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  padding: 24px;
  border-radius: 120px 120px 120px 0;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(83, 183, 72, 0.4);
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  animation: float-slow 4s ease-in-out infinite;
}

.hero-hand-arrow {
  position: absolute;
  top: 25%;
  left: -75px;
  width: 80px;
  height: auto;
  z-index: 3;
  transform: rotate(-15deg);
  pointer-events: none;
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Scroll hint */
.fj-hero .scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.fj-hero .scroll-hint .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(62, 182, 73, 0.6), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}

/* ===================== ZATCA COMPLIANCE BANNER ===================== */
.fj-zatca-banner {
  padding: 0;
  background: var(--fj-navy, #050f1f);
  overflow: hidden;
}

.fj-zatca-inner {
  position: relative;
  background: linear-gradient(110deg, #050f1f 0%, #0d1f0f 45%, #091a10 100%);
  overflow: hidden;
}

/* Background glow blobs */
.fj-zatca-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 55%;
  height: 220%;
  background: radial-gradient(ellipse, rgba(62, 182, 73, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.fj-zatca-inner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(62, 182, 73, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Main Row ---- */
.fj-zatca-main {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 72px 36px;
  position: relative;
  z-index: 1;
}

/* ---- Left Copy ---- */
.fj-zatca-copy {
  flex: 1;
  padding-right: 40px;
}

.fj-zatca-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(62, 182, 73, 0.15);
  border: 1px solid rgba(62, 182, 73, 0.30);
  border-radius: 50px;
  color: #5ddc6b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.fj-zatca-inner h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.1;
}

.fj-zatca-inner h2 span {
  color: var(--fj-green, #3EB649);
}

.fj-zatca-subtitle {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.5;
}

.fj-zatca-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

/* Feature icons row */
.fj-zatca-features {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.fj-zatca-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  min-width: 110px;
}

.fj-zatca-feat:first-child {
  padding-left: 0;
}

.fj-zatca-feat:last-child {
  border-right: none;
}

.fj-zatca-feat i {
  font-size: 22px;
  color: var(--fj-green, #3EB649);
  background: rgba(62, 182, 73, 0.12);
  border: 1px solid rgba(62, 182, 73, 0.22);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fj-zatca-feat span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
}

/* ---- Right: ZATCA Badge Panel ---- */
.fj-zatca-logo-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 20px 40px 20px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

.fj-zatca-brand-label {
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}

.fj-zatca-brand-label em {
  font-style: normal;
  color: var(--fj-green, #3EB649);
}

.fj-zatca-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 150px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(62, 182, 73, 0.30),
    0 8px 32px rgba(0, 0, 0, 0.40);
}

.fj-zatca-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.fj-zatca-approved-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--fj-green, #3EB649);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(62, 182, 73, 0.45);
}

/* ---- Bottom Strip ---- */
.fj-zatca-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--fj-green, #3EB649);
  position: relative;
  z-index: 1;
}

.fj-zatca-strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-right: 1px solid rgba(255, 255, 255, 0.20);
}

.fj-zatca-strip-item:last-child {
  border-right: none;
}

.fj-zatca-strip-item i {
  font-size: 15px;
  opacity: 0.85;
}

/* Legacy cleanup */
.fj-zatca-description {
  display: none;
}

.fj-zatca-brand-row {
  display: none;
}

.fj-zatca-visual {
  display: none;
}

.fj-zatca-glow {
  display: none;
}

.fj-zatca-phone {
  display: none;
}

.fj-zatca-authority {
  display: none;
}

/* ---- Responsive ---- */
/* Tablet: 992px and below */
@media (max-width: 991px) {
  .fj-zatca-banner {
    padding: 0;
  }

  .fj-zatca-inner {
    padding: 0;
  }

  .fj-zatca-inner::before {
    width: 65%;
    height: 250%;
  }

  .fj-zatca-main {
    padding: 36px 40px 32px;
    gap: 28px;
  }

  .fj-zatca-copy {
    padding-right: 28px;
  }

  .fj-zatca-inner h2 {
    font-size: clamp(24px, 2.8vw, 36px);
    margin-bottom: 12px;
  }

  .fj-zatca-kicker {
    font-size: 10.5px;
    padding: 5px 12px;
  }

  .fj-zatca-subtitle {
    font-size: 14.5px;
    margin-bottom: 24px;
  }

  .fj-zatca-logo-panel {
    padding: 18px 28px;
    gap: 12px;
  }

  .fj-zatca-logo-wrap {
    width: 140px;
    height: 120px;
  }

  .fj-zatca-feat {
    padding: 12px 16px;
    min-width: 100px;
    font-size: 10.5px;
  }

  .fj-zatca-feat i {
    font-size: 20px;
    width: 42px;
    height: 42px;
  }
}

/* Small Tablet: 768px to 991px */
@media (max-width: 768px) {
  .fj-zatca-main {
    flex-direction: column;
    align-items: center;
    padding: 32px 28px 24px;
    gap: 0;
  }

  .fj-zatca-copy {
    padding-right: 0;
    width: 100%;
    text-align: center;
  }

  .fj-zatca-inner h2 {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 10px;
  }

  .fj-zatca-subtitle {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .fj-zatca-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .fj-zatca-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
  }

  .fj-zatca-feat {
    min-width: 85px;
    padding: 11px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: none;
  }

  .fj-zatca-feat:nth-child(2)::after,
  .fj-zatca-feat:nth-child(4)::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    left: 0;
    bottom: -11px;
  }

  .fj-zatca-feat:nth-child(3),
  .fj-zatca-feat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 14px;
  }

  .fj-zatca-logo-panel {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 24px 0 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    gap: 14px;
    margin-top: 6px;
  }

  .fj-zatca-logo-wrap {
    width: 70%;
    height: 110px;
  }

  .fj-zatca-approved-tag {
    font-size: 11px;
    padding: 6px 14px;
  }

  .fj-zatca-strip {
    flex-direction: column;
    gap: 0;
  }

  .fj-zatca-strip-item {
    width: 100%;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    font-size: 13px;
  }

  .fj-zatca-strip-item:last-child {
    border-bottom: none;
  }

  .fj-zatca-strip-item i {
    font-size: 14px;
  }
}

/* Mobile: 576px to 767px */
@media (max-width: 576px) {
  .fj-zatca-banner {
    padding: 0;
  }

  .fj-zatca-inner {
    background: linear-gradient(120deg, #050f1f 0%, #0d1f0f 50%, #091a10 100%);
  }

  .fj-zatca-inner::before {
    width: 80%;
    height: 280%;
    top: -50%;
    left: -20%;
  }

  .fj-zatca-inner::after {
    width: 50%;
    background: radial-gradient(ellipse at right center, rgba(62, 182, 73, 0.04) 0%, transparent 70%);
  }

  .fj-zatca-main {
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 20px;
    gap: 0;
  }

  .fj-zatca-copy {
    padding-right: 0;
    width: 100%;
    text-align: center;
  }

  .fj-zatca-inner h2 {
    font-size: clamp(20px, 6vw, 28px);
    margin-bottom: 8px;
    line-height: 1.15;
  }

  .fj-zatca-inner h2 br {
    display: none;
  }

  .fj-zatca-kicker {
    margin-bottom: 10px;
    font-size: 9.5px;
    padding: 5px 11px;
    gap: 6px;
  }

  .fj-zatca-kicker i {
    font-size: 10px;
  }

  .fj-zatca-subtitle {
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .fj-zatca-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    margin-bottom: 0;
  }

  .fj-zatca-feat {
    padding: 10px 8px;
    min-width: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
  }

  .fj-zatca-feat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .fj-zatca-feat:nth-child(even) {
    border-right: none;
  }

  .fj-zatca-feat:nth-child(3),
  .fj-zatca-feat:nth-child(4) {
    border-bottom: none;
    border-top: none;
  }

  .fj-zatca-feat i {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }

  .fj-zatca-feat span {
    font-size: 10.5px;
    line-height: 1.3;
  }

  .fj-zatca-logo-panel {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    gap: 12px;
    margin-top: 8px;
  }

  .fj-zatca-brand-label {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .fj-zatca-logo-wrap {
    width: 100px;
    height: 100px;
  }

  .fj-zatca-approved-tag {
    font-size: 10.5px;
    padding: 5px 12px;
    gap: 5px;
  }

  .fj-zatca-approved-tag i {
    font-size: 10px;
  }

  .fj-zatca-strip {
    flex-direction: column;
    gap: 0;
  }

  .fj-zatca-strip-item {
    width: 100%;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    font-size: 12px;
    gap: 6px;
  }

  .fj-zatca-strip-item:last-child {
    border-bottom: none;
  }

  .fj-zatca-strip-item i {
    font-size: 13px;
  }
}

/* Extra Small Mobile: Below 480px */
@media (max-width: 480px) {
  .fj-zatca-banner {
    padding: 0;
  }

  .fj-zatca-inner::before {
    width: 90%;
    top: -60%;
    left: -30%;
  }

  .fj-zatca-main {
    padding: 24px 16px 16px;
  }

  .fj-zatca-inner h2 {
    font-size: clamp(18px, 5.5vw, 24px);
    margin-bottom: 6px;
  }

  .fj-zatca-kicker {
    margin-bottom: 8px;
    font-size: 9px;
    padding: 4px 10px;
  }

  .fj-zatca-subtitle {
    font-size: 12.5px;
    margin-bottom: 16px;
  }

  .fj-zatca-features {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-bottom: 0;
  }

  .fj-zatca-feat {
    padding: 9px 6px;
  }

  .fj-zatca-feat i {
    font-size: 16px;
    width: 38px;
    height: 38px;
  }

  .fj-zatca-feat span {
    font-size: 10px;
  }

  .fj-zatca-logo-panel {
    padding: 16px 0 0;
    gap: 10px;
  }

  .fj-zatca-brand-label {
    font-size: 11px;
  }

  .fj-zatca-logo-wrap {
    width: 90px;
    height: 90px;
  }

  .fj-zatca-approved-tag {
    font-size: 10px;
    padding: 4px 10px;
  }

  .fj-zatca-strip-item {
    padding: 9px 14px;
    font-size: 11.5px;
  }

  .fj-zatca-strip-item i {
    font-size: 12px;
  }
}



/* ===================== CLIENTS CAROUSEL TICKER ===================== */
.fj-clients-section {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f7fdf9 0%, #ffffff 100%);
  overflow: hidden;
}

.fj-clients-header {
  text-align: center;
  margin-bottom: 50px;
}

.fj-clients-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.fj-clients-header p {
  color: #666;
  font-size: 15.5px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.fj-clients-ticker-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fj-clients-ticker-wrap::before,
.fj-clients-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.fj-clients-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f7fdf9 0%, transparent 100%);
}

.fj-clients-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.fj-clients-ticker {
  display: flex;
  width: 100%;
  padding: 20px 0;
}

@keyframes ticker-scroll-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.fj-ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.ticker-ltr .fj-ticker-track {
  animation: ticker-scroll-ltr 30s linear infinite;
}

.fj-clients-ticker:hover .fj-ticker-track {
  animation-play-state: paused;
}

.fj-client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e6f3e8;
  border-radius: 16px;
  padding: 12px 20px;
  width: 170px;
  height: 70px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(62, 182, 73, 0.05), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}

.fj-client-logo-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 12px 32px rgba(62, 182, 73, 0.14), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.brand-logo-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.brand-logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #33334d;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 182, 73, 0.1);
  border: 1px solid rgba(62, 182, 73, 0.25);
  color: var(--fj-green);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ===================== PRODUCTS SECTION — HORIZONTAL SCROLL ===================== */
.fj-products {
  position: relative;
  background: linear-gradient(135deg, rgb(234 248 236 / 69%) 0%, rgba(232, 247, 234, 0.88) 50%, rgb(234 249 236) 100%) !important;
}

.fj-products .section-header {
  text-align: center;
  margin-bottom: 0;
  padding: 40px 0 0px;
}

/* 
.fj-products .section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(90deg, #e8f7ea, #f0fdf4);
  color: var(--fujishka-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(62, 182, 73, 0.25);
  margin-bottom: 14px;
} */

.fj-products .section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.2;
}

.fj-hscroll-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 991px) {
  .fj-hscroll-outer {
    width: 100%;
    overflow: visible;
  }
}

.fj-hscroll-sticky {
  position: relative;
  width: 100%;
  height: calc(100vh - 75px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

@media (max-width: 991px) {
  .fj-hscroll-sticky {
    height: auto !important;
    overflow: visible !important;
  }
}

.fj-hscroll-tabs-bar {
  flex-shrink: 0;
  z-index: 10;
}

.fj-hscroll-progress {
  height: 4px;
  background: rgba(62, 182, 73, 0.12);
  width: 100%;
}

.fj-hscroll-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--fujishka-gradient);
}

.fj-hscroll-name-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 32px;
  background: rgba(248, 251, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(62, 182, 73, 0.1);
  min-height: 44px;
}

.fj-hscroll-name-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--fujishka-green);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.fj-hscroll-name-counter {
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  font-family: 'Outfit', sans-serif;
}

/* Product Category Navigation Tabs (Hidden on Desktop by default, visible on Mobile/Tablet) */
.fj-product-tabs-wrapper {
  display: none !important;
  margin-top: 25px;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

.fj-product-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 12px;
  background: rgba(240, 250, 241, 0.85);
  border: 1.5px solid rgba(62, 182, 73, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: 0 6px 20px rgba(62, 182, 73, 0.08);
}

.fj-product-nav-tabs::-webkit-scrollbar {
  display: none;
}

.fj-product-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid transparent;
  background: transparent;
  color: #4a5568;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  flex-shrink: 0;
  outline: none;
}

.fj-product-tab-btn i {
  font-size: 14px;
  color: var(--fujishka-green);
  transition: all 0.3s ease;
}

.fj-product-tab-btn:hover {
  color: var(--fujishka-green);
  background: rgba(62, 182, 73, 0.1);
  transform: translateY(-1px);
}

.fj-product-tab-btn.is-active {
  background: var(--fj-gradient);
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(62, 182, 73, 0.35);
  border-color: transparent;
}

.fj-product-tab-btn.is-active i {
  color: #ffffff !important;
}

/* Bottom Swipe Controls & Dots (Hidden on Desktop by default, visible on Mobile/Tablet) */
.fj-hscroll-bottom-controls {
  display: none !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 0 5px;
}

.fj-hscroll-swipe-hint {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fujishka-green);
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(62, 182, 73, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(62, 182, 73, 0.15);
}

.fj-hscroll-swipe-hint i {
  animation: fjSwipeHand 1.8s infinite ease-in-out;
}

@keyframes fjSwipeHand {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

.fj-hscroll-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fj-hscroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(62, 182, 73, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.fj-hscroll-dot:hover {
  background: rgba(62, 182, 73, 0.5);
}

.fj-hscroll-dot.is-active {
  width: 28px;
  background: var(--fujishka-green);
  box-shadow: 0 2px 10px rgba(62, 182, 73, 0.4);
}

.fj-hscroll-track {
  flex: 1;
  display: flex;
  align-items: stretch;
  will-change: transform;
  width: max-content;
}

@media (max-width: 991px) {
  .fj-hscroll-track {
    width: 100% !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 15px 25px;
    gap: 16px;
    transform: none !important;
  }
}

.fj-hscroll-panel {
  flex: 0 0 100vw;
  width: 100vw;
  display: flex;
  align-items: stretch;
  justify-content: center;
  /* padding: 20px 40px; */
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .fj-hscroll-panel {
    flex: 0 0 90vw;
    width: 90vw;
    scroll-snap-align: center;
    padding: 0;
  }
}

@media (max-height: 800px) and (min-width: 992px) {
  .fj-product-showcase {
    /* padding: 28px 36px !important; */
  }

  /* .fj-product-showcase h3 {
    font-size: 24px !important;
    margin-bottom: 6px !important;
  } */

  .fj-product-showcase .showcase-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 14px !important;
  }

  .fj-showcase-grid {
    gap: 10px !important;
    margin-bottom: 14px !important;
  }

  .fj-showcase-item {
    padding: 10px 12px !important;
  }
}

.fj-product-showcase {
  background: linear-gradient(135deg, rgba(240, 250, 241, 0.95) 0%, rgba(232, 247, 234, 0.98) 100%);
  border-radius: 28px;
  padding: 44px 50px;
  /* border: 1px solid rgba(62, 182, 73, 0.2); */
  box-shadow: 0 20px 40px rgba(62, 182, 73, 0.08);
  position: relative;
  overflow: hidden;
  width: 100%;
  /* max-width: 1320px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fj-product-showcase .row {
  height: 100%;
  width: 100%;
}

.fj-product-showcase::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fj-product-showcase .showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(62, 182, 73, 0.12);
  border: 1px solid rgba(62, 182, 73, 0.25);
  color: var(--fujishka-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.fj-product-showcase h3 {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.25;
}

.fj-product-showcase .showcase-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--fujishka-green);
  margin-bottom: 10px;
}

.fj-product-showcase .showcase-desc {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.fj-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  align-items: stretch;
}

.fj-showcase-item {
  background: #ffffff;
  border: 1px solid rgba(62, 182, 73, 0.18);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.fj-showcase-item:hover {
  border-color: var(--fujishka-green);
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.15);
  transform: translateY(-3px);
}

.fj-showcase-item .si-icon {
  width: 42px;
  height: 42px;
  background: var(--fujishka-light-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--fujishka-green);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.fj-showcase-item:hover .si-icon {
  background: var(--fujishka-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(62, 182, 73, 0.3);
}

.fj-showcase-item strong {
  font-size: 13.5px;
  color: #1a1a2e;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}

.fj-showcase-item span {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  display: block;
}

.fj-showcase-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.fj-showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.fj-showcase-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1.5px solid rgba(62, 182, 73, 0.2);
  pointer-events: none;
}

.fj-hscroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.fj-hscroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(62, 182, 73, 0.2);
  transition: all 0.35s ease;
  cursor: pointer;
}

.fj-hscroll-dot.is-active {
  background: var(--fujishka-green);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(62, 182, 73, 0.4);
}

.fj-hscroll-hint {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(62, 182, 73, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: hscrollHintPulse 2s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.fj-hscroll-hint.is-hidden {
  opacity: 0;
}

.fj-hscroll-hint i {
  font-size: 18px;
  animation: hscrollHintBounce 2s ease-in-out infinite;
}

@keyframes hscrollHintPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes hscrollHintBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ===================== WHY CHOOSE US / ABOUT US SECTION ===================== */
.fj-why {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf5 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.fj-why::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fj-pillar-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 24px;
  height: 100%;
  border: 1px solid rgba(62, 182, 73, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.fj-pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--fujishka-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fj-pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 20px 40px rgba(62, 182, 73, 0.12);
}

.fj-pillar-card:hover::after {
  opacity: 1;
}

.fj-pillar-card .pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--fujishka-light-green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--fujishka-green);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.fj-pillar-card:hover .pillar-icon {
  background: var(--fujishka-gradient);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(62, 182, 73, 0.3);
}

.fj-pillar-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.fj-pillar-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 0;
}

.fj-why-about-img-wrap {
  position: relative;
}

.fj-why-about-img-wrap .img-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
  border: 4px solid #ffffff;
}

.fj-why-about-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 24px;
  transition: transform 0.6s ease;
}

.fj-why-about-img-wrap:hover img {
  transform: scale(1.03);
}

.fj-why-about-img-wrap .badge-experience {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, #091629 0%, #0d233a 100%);
  border: 1px solid rgba(62, 182, 73, 0.3);
  padding: 16px 20px;
  border-radius: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.fj-why-about-img-wrap .badge-experience .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--fujishka-green);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.fj-why-about-img-wrap .badge-experience .txt {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fj-why-about-img-wrap .badge-trust {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(62, 182, 73, 0.25);
  padding: 12px 20px;
  border-radius: 30px;
  color: #1a1a2e;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.fj-why-about-img-wrap .badge-trust i {
  color: var(--fujishka-green);
  font-size: 18px;
}

.fj-why-about-img-wrap .badge-compliance {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(9, 22, 41, 0.88);
  border: 1px solid rgba(62, 182, 73, 0.35);
  padding: 10px 18px;
  border-radius: 20px;
  color: #3EB649;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.fj-why-content .why-subheading {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  color: #1a1a2e;
  margin: 12px 0 16px;
  line-height: 1.25;
}

.fj-why-content .why-lead {
  font-size: 15.5px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 24px;
}

.fj-why-pillars-grid {
  margin-top: 20px;
}

.fj-pillar-mini {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  height: 100%;
  border: 1px solid rgba(62, 182, 73, 0.18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s ease;
}

.fj-pillar-mini:hover {
  transform: translateY(-4px);
  border-color: var(--fujishka-green);
  box-shadow: 0 12px 28px rgba(62, 182, 73, 0.12);
}

.fj-pillar-mini .p-icon {
  width: 42px;
  height: 42px;
  background: var(--fujishka-light-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--fujishka-green);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.fj-pillar-mini:hover .p-icon {
  background: var(--fujishka-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(62, 182, 73, 0.3);
}

.fj-pillar-mini h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
  line-height: 1.25;
}

.fj-pillar-mini p {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

.why-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #334155;
  line-height: 1.6;
}

.why-check-list .chk-icon {
  width: 24px;
  height: 24px;
  background: var(--fujishka-light-green);
  border: 1px solid rgba(62, 182, 73, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fujishka-green);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fj-why-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;

  /* border: 1px solid rgba(62, 182, 73, 0.18); */
  border-radius: 20px;
  /* padding: 20px; */
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03); */
}

.fj-why-metric-item {
  text-align: center;
  position: relative;
}

.fj-why-metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(62, 182, 73, 0.18);
}

.fj-why-metric-item .val {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--fujishka-green);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  margin-bottom: 4px;
}

.fj-why-metric-item .lbl {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fujishka-light-green);
  border: 1px solid rgba(62, 182, 73, 0.3);
  color: var(--fujishka-green);
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.btn-ghost-green:hover {
  background: var(--fujishka-green);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(62, 182, 73, 0.3);
}

/* ===================== CLIENT LOGOS SECTION ===================== */
.fj-clients-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eef6f0;
}

.fj-clients-ticker-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.fj-clients-ticker {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.fj-ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.ticker-ltr .fj-ticker-track {
  animation: fjTickerLTR 40s linear infinite;
}

.ticker-rtl .fj-ticker-track {
  animation: fjTickerRTL 40s linear infinite;
}

.fj-clients-ticker:hover .fj-ticker-track {
  animation-play-state: paused;
}

@keyframes fjTickerLTR {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes fjTickerRTL {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.fj-client-logo-card {
  background: #ffffff;
  border: 1px solid rgba(62, 182, 73, 0.15);
  border-radius: 16px;
  padding: 14px 24px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 160px;
}

.fj-client-logo-card:hover {
  border-color: var(--fujishka-green);
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.15);
  transform: translateY(-4px);
}

.fj-client-logo-card img {
  max-height: 62px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%) opacity(0.8); */
  transition: all 0.3s ease;
}

.fj-client-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* ===================== SERVICES SECTION ===================== */
.fj-services {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 100%);
  position: relative;
  overflow: hidden;
}

.fj-services .section-header {
  text-align: center;
  margin-bottom: 52px;
}

.fj-services .section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--fujishka-green);
  background: rgba(62, 182, 73, 0.1);
  border: 1px solid rgba(62, 182, 73, 0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.fj-services .section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.fj-services .section-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.fj-service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.4s;
  height: 100%;
}

.fj-service-card:hover {
  background: rgba(62, 182, 73, 0.08);
  border-color: rgba(62, 182, 73, 0.3);
  transform: translateY(-6px);
}

.fj-service-card .icon {
  font-size: 36px;
  color: var(--fujishka-green);
  margin-bottom: 20px;
  display: block;
}

.fj-service-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.fj-service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.fj-service-num {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
  margin-top: 20px;
  display: block;
  font-family: 'Outfit', sans-serif;
}

/* ===================== WHY CHOOSE US ===================== */
.fj-why {
  padding: 90px 0;
  background: linear-gradient(180deg, #f7fdf9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.fj-why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid #eef5ef;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.fj-why-card:hover {
  box-shadow: 0 24px 48px rgba(62, 182, 73, 0.1);
  transform: translateY(-6px);
  border-color: rgba(62, 182, 73, 0.35);
}

.fj-why-about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(62, 182, 73, 0.12);
}

.fj-why-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 30px;
}

.fj-why-metric-item {
  background: #ffffff;
  border: 1px solid #eef5ef;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.fj-why-metric-item:hover {
  border-color: var(--fujishka-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(62, 182, 73, 0.08);
}

.fj-why-metric-item .val {
  font-size: 28px;
  font-weight: 600;
  color: var(--fujishka-green);
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

.fj-why-metric-item .lbl {
  font-size: 12px;
  color: #777;
  font-weight: 500;
}

/* ===================== INTEGRATIONS ===================== */
.fj-integrations {
  padding: 0 0 100px 0;
  background: #ffffff;
  border-bottom: 1px solid #eef6f0;
}

/* ===================== AI FEATURES (FujiBot) ===================== */
.fj-ai-section {
  padding: 80px 0 !important;
}

.fujibot-meet-badge {
  font-size: 11px;
  font-weight: 700;
  color: #53b748;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(83, 183, 72, 0.08);
  border: 1px solid rgba(83, 183, 72, 0.2);
  border-radius: 30px;
  padding: 5px 14px;
}

.fujibot-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.fujibot-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: rgba(83, 183, 72, 0.9);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.fujibot-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.fujibot-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fujibot-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.fujibot-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(83, 183, 72, 0.1);
  border: 1px solid rgba(83, 183, 72, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #53b748;
  flex-shrink: 0;
}

.fujibot-avatar-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fujibot-avatar-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fujibot-avatar-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: float-bot 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(83, 183, 72, 0.25));
  position: relative;
  z-index: 2;
}

@keyframes float-bot {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

.fujibot-chat-mockup {
  background: rgba(10, 20, 40, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 420px;
  max-width: 400px;
  margin: 0 auto;
}

/* ===================== FAQ SECTION ===================== */
.fj-faq {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6fdf9 100%);
}

.fj-faq .accordion-item {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 16px;
  transition: all 0.35s ease;
}

.fj-faq .accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #1a1a2e;
  background: #ffffff;
  font-size: 16.5px;
  padding: 22px 28px;
  box-shadow: none !important;
}

.fj-faq .accordion-button:not(.collapsed) {
  color: var(--fujishka-green);
  background: #ffffff;
  border-left: 4px solid var(--fujishka-green);
}

/* ===================== PAGE HERO (INNER PAGES) ===================== */
.fj-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--fj-navy);
}

.fj-page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../imgs/fujishka/hero-bg.png') center/cover no-repeat;
  opacity: 0.4;
  z-index: 0;
}

.fj-page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 31, 0.5) 0%, rgba(5, 15, 31, 0.92) 100%);
  z-index: 1;
}

.fj-page-hero .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fj-page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}

.fj-page-hero h1 .hl {
  background: linear-gradient(135deg, #3EB649 0%, #00e676 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fj-page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16.5px;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ===================== INNER PAGE CARDS ===================== */
/* Who We Are & Vision */
.fj-who-we-are {
  padding: 100px 0 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.fj-who-we-are::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fj-who-visual-inner {
  background: linear-gradient(135deg, #050f1f 0%, #0d2040 100%);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid rgba(62, 182, 73, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fj-who-visual-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fj-who-visual-inner .big-icon {
  font-size: 72px;
  background: linear-gradient(135deg, #3EB649 0%, #00e676 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 0 24px rgba(62, 182, 73, 0.45));
}

.fj-who-visual-inner h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.fj-who-visual-inner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

.fj-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.fj-stat-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(62, 182, 73, 0.2);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fj-stat-box:hover {
  background: rgba(62, 182, 73, 0.12);
  border-color: rgba(62, 182, 73, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(62, 182, 73, 0.15);
}

.fj-stat-box .stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #3EB649;
  line-height: 1;
}

.fj-stat-box .stat-lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.fj-who-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.fj-who-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(62, 182, 73, 0.12);
  font-size: 15px;
  color: #444;
  line-height: 1.65;
}

.fj-who-list li:last-child {
  border-bottom: none;
}

.fj-who-list li .li-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #e8f7ea;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3EB649;
  font-size: 12px;
  margin-top: 2px;
}


/* Company Leadership Team */
.fj-leadership-sec {
  padding: 90px 0;
  background: #ffffff;
}

.fj-leader-card {
  height: 100%;
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
  border: 1px solid #e4f4e6;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fj-leader-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.12);
  transform: translateY(-6px);
}

.fj-leader-card .leader-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3EB649;
  font-size: 25px;
  background: #e8f7ea;
  border-radius: 18px;
  transition: all 0.35s ease;
}

.fj-leader-card:hover .leader-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.35);
  transform: scale(1.08);
}

.fj-leader-card h3 {
  margin-bottom: 10px;
  color: #1a1a2e;
  font-size: 19px;
  font-weight: 700;
}

.fj-leader-card p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

/* Core Values Section */
.fj-values-sec {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fffe 0%, #ffffff 100%);
  position: relative;
}

.fj-value-card {
  background: #ffffff;
  border: 1px solid #e4f4e6;
  border-radius: 20px;
  padding: 34px 28px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.fj-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.fj-value-card:hover {
  border-color: rgba(62, 182, 73, 0.35);
  box-shadow: 0 20px 48px rgba(62, 182, 73, 0.12);
  transform: translateY(-6px);
}

.fj-value-card:hover::before {
  transform: scaleX(1);
}

.fj-value-card .v-icon {
  width: 60px;
  height: 60px;
  background: #e8f7ea;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #3EB649;
  margin-bottom: 22px;
  transition: all 0.35s;
}

.fj-value-card:hover .v-icon {
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.35);
  transform: scale(1.08);
}

.fj-value-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.fj-value-card p {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* Timeline Section */
.fj-timeline-sec {
  padding: 90px 0;
  background: #ffffff;
}

.fj-timeline-wrap {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
}

.fj-timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, #3EB649 0%, rgba(62, 182, 73, 0.2) 100%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .fj-timeline-wrap::before {
    left: 20px;
  }
}

.fj-timeline-item {
  position: relative;
  margin-bottom: 40px;
  width: 50%;
  padding-right: 40px;
}

.fj-timeline-item:nth-child(even) {
  /* margin-left: 50%; */
  padding-right: 0;
  padding-left: 40px;
}

@media (max-width: 767px) {

  .fj-timeline-item,
  .fj-timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 50px;
    padding-right: 0;
  }
}

.fj-timeline-dot {
  position: absolute;
  top: 6px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #3EB649;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(62, 182, 73, 0.25);
  z-index: 2;
}

.fj-timeline-item:nth-child(even) .fj-timeline-dot {
  right: auto;
  left: -10px;
}

@media (max-width: 767px) {

  .fj-timeline-dot,
  .fj-timeline-item:nth-child(even) .fj-timeline-dot {
    left: 10px;
    right: auto;
  }
}

.fj-timeline-content {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.fj-timeline-content:hover {
  border-color: rgba(62, 182, 73, 0.35);
  box-shadow: 0 12px 30px rgba(62, 182, 73, 0.1);
  transform: translateY(-3px);
}

.fj-timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #3EB649;
  background: #e8f7ea;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.fj-timeline-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.fj-timeline-content p {
  color: #667085;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.fj-vg-card {
  background: linear-gradient(135deg, #050f1f 0%, #0d2040 100%);
  border-radius: 28px;
  padding: 50px 44px;
  border: 1px solid rgba(62, 182, 73, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}

.fj-vg-card:hover {
  border-color: rgba(62, 182, 73, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.fj-vg-card .vg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 182, 73, 0.12);
  border: 1px solid rgba(62, 182, 73, 0.25);
  color: #3EB649;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.fj-vg-card .vg-icon {
  font-size: 52px;
  margin-bottom: 24px;
  display: block;
  line-height: 1;
  background: linear-gradient(135deg, #3EB649 0%, #00b894 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(62, 182, 73, 0.35));
}

.fj-vg-card h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.fj-vg-card .vg-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fj-vg-card .vg-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fj-vg-card .vg-points li:last-child {
  border-bottom: none;
}

.fj-vg-card .vg-points li .pt-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: #3EB649;
  border-radius: 50%;
  margin-top: 8px;
  box-shadow: 0 0 8px rgba(62, 182, 73, 0.5);
}

/* Page Hero Component for Inner Pages */
.fj-page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #050f1f 0%, #0d2137 100%);
}

.fj-page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../imgs/fujishka/hero-bg.png') center/cover no-repeat;
  opacity: 0.35;
}

.fj-page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 31, 0.4) 0%, rgba(5, 15, 31, 0.9) 100%);
}

.fj-page-hero .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fj-page-hero .page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 182, 73, 0.12);
  border: 1px solid rgba(62, 182, 73, 0.3);
  color: #3EB649;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.fj-page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.fj-page-hero h1 .hl {
  background: linear-gradient(135deg, #3EB649 0%, #00e676 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fj-page-hero .page-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.fj-page-hero .breadcrumb-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}

.fj-page-hero .breadcrumb-row a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.fj-page-hero .breadcrumb-row a:hover {
  color: #3EB649;
}

.fj-page-hero .breadcrumb-row .current {
  color: #3EB649;
  font-weight: 600;
}

/* Feature Cards (B-Quick ERP, Van Sales, KSA ERP, Partner) */
.fj-prod-hero {
  padding: 150px 0 90px;
  background: linear-gradient(135deg, #050f1f 0%, #0d2137 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.fj-prod-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.fj-features-sec,
.partner-sec,
.ksa-sec {
  padding: 90px 0;
  background: #ffffff;
}

.feat-card,
.partner-card,
.ksa-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.feat-card:hover,
.partner-card:hover,
.ksa-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.12);
  transform: translateY(-6px);
}

.feat-card .f-icon,
.partner-card .p-icon,
.ksa-card .k-icon {
  width: 58px;
  height: 58px;
  background: #e8f7ea;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #3EB649;
  margin-bottom: 22px;
  transition: all 0.35s;
}

.feat-card:hover .f-icon,
.partner-card:hover .p-icon,
.ksa-card:hover .k-icon {
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.35);
  transform: scale(1.08);
}

.feat-card h3,
.partner-card h3,
.ksa-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.feat-card p,
.partner-card p,
.ksa-card p {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* Blog Cards */
.blog-sec {
  padding: 90px 0;
  background: #ffffff;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.12);
  transform: translateY(-6px);
}

.blog-card .blog-img-wrap {
  height: 210px;
  overflow: hidden;
}

.blog-card .blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.blog-card .blog-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card .blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: #3EB649;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-card .read-more {
  margin-top: auto;
  color: #3EB649;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card .read-more:hover {
  color: #27a33a;
  gap: 10px;
}

/* Contact Cards */
.contact-sec {
  padding: 90px 0;
  background: #ffffff;
}

.c-info-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.c-form-box {
  background: linear-gradient(135deg, #f0faf1 0%, #e8f7ea 100%);
  border: 1px solid rgba(62, 182, 73, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(62, 182, 73, 0.08);
}

.form-control-fj {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(62, 182, 73, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

.form-control-fj:focus {
  border-color: #3EB649;
  box-shadow: 0 0 0 3px rgba(62, 182, 73, 0.15);
}

/* CTA Band Action Buttons */
.fj-btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #3EB649 !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.fj-btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.fj-btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.fj-btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ===================== FOOTER ===================== */
.fj-footer {
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 100%);
  padding: 80px 0 0;
  position: relative;
}

.fj-footer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.8;
}

.fj-footer h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}

.fj-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fj-footer ul li {
  margin-bottom: 10px;
}

.fj-footer ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fj-footer ul li a:hover {
  color: var(--fj-green);
  padding-left: 4px;
}

.fj-footer .social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fj-footer .social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.fj-footer .social-links a:hover {
  background: var(--fujishka-green);
  border-color: var(--fujishka-green);
  color: #fff;
  transform: translateY(-2px);
}

.fj-footer .footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img {
  max-height: 40px !important;
}

/* ===================== SERVICES PAGE COMPONENT STYLES ===================== */
.fj-services-page {
  padding: 90px 0 100px;
  background: #ffffff;
}

.service-big-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 24px;
  padding: 40px 34px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.service-big-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-big-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 20px 50px rgba(62, 182, 73, 0.12);
  transform: translateY(-8px);
}

.service-big-card:hover::before {
  opacity: 1;
}

.service-big-card .svc-icon-box {
  width: 68px;
  height: 68px;
  background: #e8f7ea;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #3EB649;
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.service-big-card:hover .svc-icon-box {
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(62, 182, 73, 0.35);
  transform: scale(1.08);
}

.service-big-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.service-big-card p {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.service-big-card .svc-features {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-big-card .svc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #444;
  font-weight: 500;
}

.service-big-card .svc-features li i {
  color: #3EB649;
  font-size: 13px;
}

/* Services CTA Band */
.fj-cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 50%, #00b894 100%);
  color: #ffffff;
  /* text-align: center; */
  position: relative;
  overflow: hidden;
}

.fj-cta-band h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

.fj-cta-band p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.fj-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #3EB649 !important;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.fj-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

/* ===================== CONTACT PAGE COMPONENT STYLES ===================== */
.contact-sec {
  padding: 90px 0 100px;
  background: #ffffff;
}

.c-form-box {
  background: linear-gradient(135deg, #f0faf1 0%, #e8f7ea 100%);
  border: 1px solid rgba(62, 182, 73, 0.25);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 12px 36px rgba(62, 182, 73, 0.08);
}

.c-form-box h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.c-form-box p {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.form-control-fj {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(62, 182, 73, 0.25);
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 14.5px;
  color: #333333;
  outline: none;
  margin-bottom: 18px;
  transition: all 0.25s ease;
}

.form-control-fj::placeholder {
  color: #999999;
}

.form-control-fj:focus {
  border-color: #3EB649;
  box-shadow: 0 0 0 3.5px rgba(62, 182, 73, 0.15);
  background: #ffffff;
}

select.form-control-fj {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233EB649' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.c-info-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.c-info-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.12);
  transform: translateY(-5px);
}

.c-info-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-info-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #555555;
  line-height: 1.6;
}

.c-info-card ul li i {
  color: #3EB649;
  font-size: 14px;
  margin-top: 3px;
  min-width: 16px;
}

/* ===================== FEATURE & PARTNER CARDS ===================== */
.feat-card,
.partner-card,
.ksa-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.feat-card:hover,
.partner-card:hover,
.ksa-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.12);
  transform: translateY(-6px);
}

.feat-card .f-icon,
.partner-card .p-icon,
.ksa-card .k-icon {
  width: 60px;
  height: 60px;
  background: #e8f7ea;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #3EB649;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.feat-card:hover .f-icon,
.partner-card:hover .p-icon,
.ksa-card:hover .k-icon {
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.35);
  transform: scale(1.08);
}

.feat-card h3,
.partner-card h3,
.ksa-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.feat-card p,
.partner-card p,
.ksa-card p {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* ===================== ABOUT US WHAT WE DO CARDS ===================== */
.fj-what-we-do {
  padding: 90px 0;
  background: #ffffff;
}

.fj-service-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.fj-service-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.12);
  transform: translateY(-6px);
}

.fj-service-card .svc-icon {
  width: 60px;
  height: 60px;
  background: #e8f7ea;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #3EB649;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.fj-service-card:hover .svc-icon {
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.35);
  transform: scale(1.08);
}

.fj-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.fj-service-card p {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* ===================== GLOBAL LOCATIONS CARDS ===================== */
.fj-locations {
  padding: 100px 0;
  background: linear-gradient(135deg, #050f1f 0%, #0d2137 100%);
  position: relative;
  overflow: hidden;
}

.fj-locations::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fj-loc-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 32px 24px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.fj-loc-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  transform: translateY(-6px);
}

.fj-loc-card .loc-flag {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.fj-loc-card .loc-country {
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.fj-loc-card .loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #3EB649;
  background: rgba(62, 182, 73, 0.15);
  border: 1px solid rgba(62, 182, 73, 0.3);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 20px;
  width: fit-content;
}

.fj-loc-card .loc-info {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fj-loc-card .loc-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.fj-loc-card .loc-info li i {
  color: #3EB649;
  font-size: 14px;
  margin-top: 3px;
  min-width: 16px;
}

.fj-loc-card .loc-info li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.fj-loc-card .loc-info li a:hover {
  color: #3EB649;
}

/* ===================== CAPABILITIES SECTION STYLES ===================== */
.fj-capabilities {
  padding: 90px 0 100px;
  background: linear-gradient(180deg, #f7fdf9 0%, #ffffff 60%, #f0faf2 100%);
  position: relative;
  border-bottom: 1px solid #e4f0e6;
  overflow: hidden;
}

.fj-capabilities::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fj-capabilities::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fj-capabilities-header {
  text-align: center;
  margin-bottom: 56px;
}

.fj-capabilities-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(90deg, #e8f7ea, #f0fdf4);
  color: var(--fujishka-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(62, 182, 73, 0.25);
  margin-bottom: 14px;
}

.fj-capabilities-header h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.15;
}

.fj-capabilities-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* â”€â”€ New premium card layout â”€â”€ */
.fj-capability-card {
  background: #ffffff;
  border: 1px solid #e8f0ea;
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
}

.fj-capability-card:hover {
  border-color: rgba(62, 182, 73, 0.5);
  box-shadow: 0 24px 60px rgba(62, 182, 73, 0.14), 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-8px);
}

.fj-capability-card.highlight-card {
  border-color: var(--fujishka-green);
  box-shadow: 0 20px 50px rgba(62, 182, 73, 0.18), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.cap-img-banner {
  position: relative;
  height: 210px;
  width: 100%;
  overflow: hidden;
  background: #050f1f;
}

.cap-img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fj-capability-card:hover .cap-img-banner img {
  transform: scale(1.08);
}

.cap-img-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cap-chip-overlay {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: rgba(5, 15, 31, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(62, 182, 73, 0.3);
  color: #6ee77f;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.cap-card-body {
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cap-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cap-card-body p {
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.cap-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cap-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #444444;
  font-weight: 500;
}

.cap-feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 5 Free';
  font-weight: 900;
  color: #3EB649;
  font-size: 11px;
  width: 20px;
  height: 20px;
  background: #e8f7ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cap-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px dashed rgba(62, 182, 73, 0.2);
}

.cap-footer-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: #3EB649;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.cap-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #3EB649;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cap-explore-btn:hover {
  color: #27a33a;
  transform: translateX(3px);
}

/* Custom Swiper Controls */
.swiper-controls-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
  position: relative;
  z-index: 5;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2f0e4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3EB649;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: #3EB649;
  border-color: #3EB649;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.35);
  transform: scale(1.08);
}

.swiper-pagination-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto !important;
}

.swiper-pagination-custom .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(62, 182, 73, 0.25);
  border-radius: 50%;
  transition: all 0.35s ease;
  cursor: pointer;
  opacity: 1;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
  background: #3EB649;
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(62, 182, 73, 0.4);
}

/* ===================== LANDING PAGE SERVICES SECTION ===================== */
.fj-services {
  padding: 100px 0;
  background: #ffffff;
}

.fj-services .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.fj-services .section-header .section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.25;
  margin: 12px 0 14px;
}

.fj-services .section-header .section-desc {
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.fj-services .fj-service-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
}

.fj-services .fj-service-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 18px 45px rgba(62, 182, 73, 0.12);
  transform: translateY(-6px);
}

.fj-services .fj-service-card .icon {
  width: 60px;
  height: 60px;
  background: #e8f7ea;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #3EB649;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.fj-services .fj-service-card:hover .icon {
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.35);
  transform: scale(1.08);
}

.fj-services .fj-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.fj-services .fj-service-card p {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.fj-services .fj-service-num {
  margin-top: auto;
  font-size: 11.5px;
  font-weight: 700;
  color: #3EB649;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  padding-top: 14px;
  border-top: 1px dashed rgba(62, 182, 73, 0.2);
  display: block;
}

/* ===================== WHY CHOOSE US & METRICS ===================== */
.fj-why {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}

.fj-why-about-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2f0e4;
}

.fj-why-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
}

.fj-why-metric-item {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.fj-why-metric-item .val {
  font-size: 24px;
  font-weight: 700;
  color: #3EB649;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 4px;
}

.fj-why-metric-item .lbl {
  font-size: 12.5px;
  color: #667085;
  font-weight: 500;
  line-height: 1.4;
}

/* ===================== INTEGRATIONS SECTION ===================== */
.integration-card {
  transition: all 0.35s ease !important;
}

.integration-card:hover {
  border-color: rgba(62, 182, 73, 0.4) !important;
  box-shadow: 0 16px 36px rgba(62, 182, 73, 0.12) !important;
  transform: translateY(-4px) !important;
}

/* ===================== CLIENTS TICKER ===================== */
.fj-clients-section {
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.fj-clients-ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.fj-clients-ticker-wrap::before,
.fj-clients-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.fj-clients-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.fj-clients-ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}

.fj-clients-ticker {
  display: flex;
  width: max-content;
}

.ticker-ltr .fj-ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: tickerMove 35s linear infinite;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.fj-client-logo-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 16px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.fj-client-logo-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.12);
  transform: translateY(-2px);
}

.fj-client-logo-card .brand-logo-svg {
  width: 26px;
  height: 26px;
}

.fj-client-logo-card .brand-logo-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a2e;
}

/* ===================== FUJIBOT AI SECTION STYLES ===================== */
.fj-ai-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #050f1f 0%, #071626 50%, #0b1a2f 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(62, 182, 73, 0.15);
}

.fujibot-meet-badge {
  display: inline-block;
  background: rgba(62, 182, 73, 0.15);
  color: #6ee77f;
  border: 1px solid rgba(62, 182, 73, 0.3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.fujibot-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.fujibot-subtitle {
  color: #3EB649;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.fujibot-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.fujibot-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fujibot-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.fujibot-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(62, 182, 73, 0.12);
  border: 1px solid rgba(62, 182, 73, 0.25);
  color: #3EB649;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.fujibot-feature-item:hover .fujibot-feature-icon {
  background: #3EB649;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(62, 182, 73, 0.4);
  transform: scale(1.08);
}

.fujibot-feature-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.fujibot-feature-content p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* Avatar Robot Image Column */
.fujibot-avatar-col {
  text-align: center;
}

.fujibot-avatar-wrap {
  position: relative;
  display: inline-block;
  animation: fujibotFloat 4s ease-in-out infinite;
}

@keyframes fujibotFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.fujibot-avatar-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fujibot-avatar-img {
  max-width: 100%;
  height: auto;
  max-height: 380px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* Chat Mockup Card */
.fujibot-chat-mockup {
  background: rgba(10, 20, 40, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  height: 420px;
  max-width: 400px;
  margin: 0 auto;
}

.fujibot-chat-header {
  background: linear-gradient(135deg, #0d2240 0%, #112d52 100%);
  border-bottom: 1px solid rgba(83, 183, 72, 0.12);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.fujibot-chat-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(83, 183, 72, 0.2), rgba(83, 183, 72, 0.05));
  border: 1.5px solid rgba(83, 183, 72, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #53b748;
  box-shadow: 0 0 12px rgba(83, 183, 72, 0.2);
}

.fujibot-chat-header-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1px;
}

.fujibot-chat-header-info span {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 5px;
}

.fujibot-chat-header-info span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #53b748;
  box-shadow: 0 0 6px #53b748;
  flex-shrink: 0;
}

.fujibot-chat-body {
  flex: 1;
  padding: 16px 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(83, 183, 72, 0.2) transparent;
}

.fujibot-msg-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  max-width: 88%;
}

.fujibot-msg-row.msg-sent {
  align-self: flex-end;
  flex-direction: row-reverse;
  max-width: 88%;
}

.fujibot-msg-avatar {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #53b748;
  flex-shrink: 0;
}

.fujibot-msg-bubble {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px 14px 14px 14px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #d8e4f0;
}

.fujibot-msg-row.msg-sent .fujibot-msg-bubble {
  background: linear-gradient(135deg, #0e2d4f, #153c66);
  border-color: rgba(83, 183, 72, 0.2);
  border-radius: 14px 4px 14px 14px;
  color: #ffffff;
}

.fujibot-chat-footer {
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
  flex-shrink: 0;
}

.fujibot-chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 4px 5px 4px 14px;
  transition: border-color 0.3s;
}

.fujibot-chat-input-wrap:focus-within {
  border-color: rgba(83, 183, 72, 0.3);
}

.fujibot-chat-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 12.5px;
  padding: 7px 0;
}

.fujibot-chat-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.fujibot-chat-input-wrap button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #53b748, #3d9635);
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(83, 183, 72, 0.35);
  flex-shrink: 0;
}

.fujibot-chat-input-wrap button:hover {
  background: linear-gradient(135deg, #46a13b, #2d7a27);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(83, 183, 72, 0.5);
}

/* Logo styling (alias) */
.fj-logo-wrap img {
  height: 100%;
  width: auto;
  max-width: 175px;
}

.fj-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.fj-logo-text .brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--fujishka-dark);
  letter-spacing: -0.5px;
}

.fj-logo-text .brand-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--fujishka-green);
}

.fj-logo-symbol {
  font-size: 36px;
  font-weight: 900;
  color: var(--fujishka-green);
  font-family: 'Outfit', sans-serif;
  margin-right: 4px;
  line-height: 1;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===================== TESTIMONIALS SECTION STYLES ===================== */
.fj-testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #050f1f 0%, #0c2340 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.fj-testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fj-testi-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.fj-testi-card:hover {
  border-color: rgba(62, 182, 73, 0.5);
  box-shadow: 0 20px 48px rgba(62, 182, 73, 0.15), 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px);
}

.fj-testi-card .stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.fj-testi-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.fj-testi-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.fj-testi-card .avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(62, 182, 73, 0.35);
  flex-shrink: 0;
}

.fj-testi-card .info h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.fj-testi-card .info span {
  color: #6ee77f;
  font-size: 12.5px;
}

/* Video Testimonial Card */
.fj-testi-card.video-card {
  padding: 0;
  overflow: hidden;
  min-height: 340px;
}

.video-thumbnail-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(5, 15, 31, 0.3) 0%, rgba(5, 15, 31, 0.9) 100%);
  z-index: 2;
}

.video-play-btn {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 4;
  box-shadow: 0 0 0 10px rgba(62, 182, 73, 0.3);
  transition: all 0.35s ease;
  text-decoration: none;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 16px rgba(62, 182, 73, 0.4);
}

.video-content-wrap {
  position: relative;
  z-index: 3;
  padding: 160px 28px 28px;
  margin-top: auto;
}

/* ===================== GLOBAL PRESENCE / LOCATIONS ===================== */
.fj-presence {
  padding: 100px 0;
  background: #ffffff;
}

.fj-presence-header {
  text-align: center;
  margin-bottom: 56px;
}

.fj-presence-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.25;
  margin: 12px 0 14px;
}

.fj-presence-header p {
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.fj-location-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 22px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.fj-location-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.12);
  transform: translateY(-6px);
}

.loc-flag-icon {
  font-size: 38px;
  margin-bottom: 10px;
  line-height: 1;
  display: block;
}

.fj-location-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #3EB649;
  background: #e8f7ea;
  border: 1px solid rgba(62, 182, 73, 0.25);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 20px;
  width: fit-content;
}

.loc-status-dot {
  width: 6px;
  height: 6px;
  background: #3EB649;
  border-radius: 50%;
  display: inline-block;
}

.loc-details {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.loc-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #555555;
  line-height: 1.6;
}

.loc-details li i {
  color: #3EB649;
  font-size: 14px;
  margin-top: 3px;
  min-width: 16px;
}

.loc-details li a {
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.loc-details li a:hover {
  color: #3EB649;
}

.loc-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #3EB649;
  text-decoration: none;
  transition: all 0.25s ease;
  padding-top: 14px;
  border-top: 1px dashed rgba(62, 182, 73, 0.2);
}

.loc-map-btn:hover {
  color: #27a33a;
  transform: translateX(3px);
}

/* ===================== ABOUT US PAGE STYLING ===================== */

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-title .hl {
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 0;
}

/* --- Page Hero --- */
.fj-page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #091629 0%, #0d233a 50%, #081220 100%);
  overflow: hidden;
  color: #ffffff;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.fj-page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(62, 182, 73, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 168, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.fj-page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 47%);
}

.fj-page-hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.7;
}

.fj-page-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.fj-page-hero .orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(62, 182, 73, 0.25);
  top: -50px;
  left: 10%;
}

.fj-page-hero .orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(0, 150, 255, 0.18);
  bottom: -80px;
  right: 15%;
}

.fj-page-hero .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.fj-page-hero .page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 182, 73, 0.15);
  border: 1px solid rgba(62, 182, 73, 0.3);
  color: #3EB649;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.fj-page-hero .pulse-dot {
  width: 8px;
  height: 8px;
  background: #3EB649;
  border-radius: 50%;
  box-shadow: 0 0 10px #3EB649;
  animation: fjPulse 2s infinite;
}

@keyframes fjPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(62, 182, 73, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(62, 182, 73, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(62, 182, 73, 0);
  }
}

.fj-page-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.fj-page-hero h1 .hl {
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fj-page-hero .page-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}

.fj-page-hero .breadcrumb-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.fj-page-hero .breadcrumb-row a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fj-page-hero .breadcrumb-row a:hover {
  color: #3EB649;
}

.fj-page-hero .breadcrumb-row .current {
  color: #3EB649;
  font-weight: 600;
}

/* --- Who We Are Section --- */
.fj-who-we-are {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.fj-who-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fj-who-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}

.fj-who-list .li-icon {
  width: 24px;
  height: 24px;
  background: rgba(62, 182, 73, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3EB649;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fj-who-visual-inner {
  background: linear-gradient(135deg, #091629 0%, #0d233a 100%);
  border-radius: 28px;
  padding: 44px 36px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(9, 22, 41, 0.15);
  border: 1px solid rgba(62, 182, 73, 0.2);
}

.fj-who-visual-inner .big-icon {
  font-size: 48px;
  color: #3EB649;
  margin-bottom: 20px;
  display: block;
}

.fj-who-visual-inner h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.fj-who-visual-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.fj-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fj-stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.fj-stat-box:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 182, 73, 0.4);
}

.fj-stat-box .stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #3EB649;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

.fj-stat-box .stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Core Values --- */
.fj-values-sec {
  padding: 90px 0;
  background: #f8fafc;
  position: relative;
}

.fj-value-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
}

.fj-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 16px 36px rgba(62, 182, 73, 0.12);
}

.fj-value-card .v-icon {
  width: 52px;
  height: 52px;
  background: rgba(62, 182, 73, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #3EB649;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.fj-value-card:hover .v-icon {
  background: linear-gradient(135deg, #3EB649, #27a33a);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(62, 182, 73, 0.3);
}

.fj-value-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.fj-value-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* --- What We Do --- */
.fj-what-we-do {
  padding: 100px 0;
  background: #ffffff;
}

.fj-service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 28px;
  height: 100%;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.fj-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3EB649, #27a33a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fj-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 182, 73, 0.3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.fj-service-card:hover::before {
  opacity: 1;
}

.fj-service-card .svc-icon {
  width: 56px;
  height: 56px;
  background: #f0faf1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #3EB649;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.fj-service-card:hover .svc-icon {
  background: #3EB649;
  color: #ffffff;
  transform: scale(1.05);
}

.fj-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.fj-service-card p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* --- Timeline & Journey (Enhanced High-End Design) --- */
.fj-timeline-sec {
  padding: 120px 0;
  background: linear-gradient(135deg, #071224 0%, #0c2038 50%, #050d1a 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.fj-timeline-sec .timeline-glow-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fj-timeline-sec .timeline-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fj-timeline-wrap {
  position: relative;
  max-width: 980px;
  margin: 60px auto 0;
}

.fj-timeline-line {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #3EB649 0%, rgba(62, 182, 73, 0.5) 50%, #3EB649 100%);
  transform: translateX(-50%);
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(62, 182, 73, 0.5);
}

@media (max-width: 991px) {
  .fj-timeline-line {
    left: 28px;
  }
}

.fj-timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
  box-sizing: border-box;
}

.fj-timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 50px;
}

.fj-timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 50px;
}

@media (max-width: 991px) {
  .fj-timeline-item {
    width: 100% !important;
    left: 0 !important;
    padding-left: 70px !important;
    padding-right: 0 !important;
  }
}

.fj-timeline-dot {
  position: absolute;
  top: 26px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #3EB649 0%, #208e31 100%);
  border: 4px solid #0c2038;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(62, 182, 73, 0.7);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.35s ease;
}

.fj-timeline-item:nth-child(odd) .fj-timeline-dot {
  right: -23px;
}

.fj-timeline-item:nth-child(even) .fj-timeline-dot {
  left: -23px;
}

@media (max-width: 991px) {
  .fj-timeline-dot {
    left: 5px !important;
    right: auto !important;
  }
}

.fj-timeline-item:hover .fj-timeline-dot {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 30px rgba(62, 182, 73, 0.9);
}

.fj-timeline-content {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(62, 182, 73, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.fj-timeline-content:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(62, 182, 73, 0.5);
  box-shadow: 0 20px 45px rgba(62, 182, 73, 0.2);
}

.fj-timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.fj-timeline-year {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(62, 182, 73, 0.2) 0%, rgba(62, 182, 73, 0.08) 100%);
  border: 1px solid rgba(62, 182, 73, 0.35);
  color: #3EB649;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  padding: 5px 14px;
  border-radius: 20px;
}

.fj-timeline-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fj-timeline-tag.highlight-tag {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border-color: rgba(255, 193, 7, 0.3);
}

.fj-timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.fj-timeline-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.fj-timeline-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.fj-timeline-footer i {
  color: #3EB649;
  margin-right: 4px;
}

/* --- Vision & Goals --- */
.fj-vision-goals {
  padding: 100px 0;
  background: #ffffff;
}

.fj-vg-card {
  background: linear-gradient(135deg, #091629 0%, #0d233a 100%);
  border-radius: 24px;
  padding: 40px;
  color: #ffffff;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(62, 182, 73, 0.2);
  box-shadow: 0 16px 40px rgba(9, 22, 41, 0.12);
}

.fj-vg-card .vg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(62, 182, 73, 0.15);
  border: 1px solid rgba(62, 182, 73, 0.3);
  color: #3EB649;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fj-vg-card .vg-icon {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 80px;
  color: rgba(62, 182, 73, 0.08);
  pointer-events: none;
}

.fj-vg-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.35;
}

.vg-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vg-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.vg-points .pt-dot {
  width: 8px;
  height: 8px;
  background: #3EB649;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 8px rgba(62, 182, 73, 0.6);
}

/* --- Global Locations Section --- */
.fj-locations {
  padding: 100px 0;
  background: #091629;
  position: relative;
  overflow: hidden;
}

.fj-loc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 22px;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.fj-loc-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(62, 182, 73, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.fj-loc-card .loc-flag {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.fj-loc-card .loc-country {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.fj-loc-card .loc-badge {
  display: inline-block;
  background: rgba(62, 182, 73, 0.15);
  color: #3EB649;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.fj-loc-card .loc-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fj-loc-card .loc-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.fj-loc-card .loc-info li i {
  color: #3EB649;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.fj-loc-card .loc-info li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.fj-loc-card .loc-info li a:hover {
  color: #3EB649;
}

/* --- CTA Band --- */
.fj-cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d233a 0%, #3EB649 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.fj-cta-band h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.fj-cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.fj-btn-cta-white {
  background: #ffffff;
  color: #091629;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.fj-btn-cta-white:hover {
  background: #f0faf1;
  color: #27a33a;
  transform: translateY(-2px);
}

.fj-btn-cta-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.fj-btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===================== FLOATING STICKY ACTION BUTTON (PLUS / SPEED DIAL) ===================== */
.fj-fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.fj-fab-main-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3EB649 0%, #208e31 100%);
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 25px rgba(62, 182, 73, 0.45);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.fj-fab-main-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(62, 182, 73, 0.4);
  z-index: -1;
  animation: fjFabPulse 2.2s infinite ease-in-out;
}

@keyframes fjFabPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.22);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.fj-fab-main-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(62, 182, 73, 0.55);
}

.fj-fab-plus-icon {
  transition: transform 0.35s ease;
}

.fj-fab-container.is-open .fj-fab-plus-icon {
  transform: rotate(135deg);
}

.fj-fab-container.is-open .fj-fab-main-btn {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.5);
}

/* Speed Dial Options Container */
.fj-fab-options {
  position: absolute;
  bottom: 72px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fj-fab-container.is-open .fj-fab-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fj-fab-option {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.fj-fab-option:hover {
  transform: translateX(-4px);
}

.fj-fab-label {
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', 'Inter', sans-serif;
  padding: 7px 15px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.fj-fab-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* WhatsApp Option */
.fj-fab-whatsapp .fj-fab-icon {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.fj-fab-whatsapp:hover .fj-fab-icon {
  background: #20ba5a;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65);
  transform: scale(1.08);
}

/* Download Brochure Option */
.fj-fab-brochure .fj-fab-icon {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(62, 182, 73, 0.4);
  color: #3EB649;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.4);
}

.fj-fab-brochure:hover .fj-fab-icon {
  background: linear-gradient(135deg, #3EB649 0%, #208e31 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(62, 182, 73, 0.55);
  transform: scale(1.08);
}

/* ===================== VISION & GOALS SECTION ===================== */
.fj-vision-goals {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf5 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.fj-vg-card {
  background: linear-gradient(135deg, #091629 0%, #0d233a 100%);
  border-radius: 28px;
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(62, 182, 73, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.fj-vg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3EB649, #00b894);
}

.fj-vg-card:hover {
  transform: translateY(-8px);
  border-color: rgba(62, 182, 73, 0.5);
  box-shadow: 0 24px 50px rgba(62, 182, 73, 0.18);
}

.vg-watermark {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 160px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  transition: all 0.5s ease;
}

.fj-vg-card:hover .vg-watermark {
  color: rgba(62, 182, 73, 0.07);
  transform: scale(1.1) rotate(-5deg);
}

.vg-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.vg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 182, 73, 0.15);
  border: 1px solid rgba(62, 182, 73, 0.35);
  color: #3EB649;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.goals-badge {
  background: rgba(0, 184, 148, 0.15);
  border-color: rgba(0, 184, 148, 0.35);
  color: #00b894;
}

.vg-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #3EB649;
  transition: all 0.3s ease;
}

.goals-icon-box {
  color: #00b894;
}

.fj-vg-card:hover .vg-icon-box {
  background: #3EB649;
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(62, 182, 73, 0.35);
}

.fj-vg-card:hover .goals-icon-box {
  background: #00b894;
  box-shadow: 0 6px 20px rgba(0, 184, 148, 0.35);
}

.fj-vg-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  line-height: 1.35;
}

.vg-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vg-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.vg-pt-icon {
  width: 24px;
  height: 24px;
  background: rgba(62, 182, 73, 0.18);
  border: 1px solid rgba(62, 182, 73, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3EB649;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.goals-card .vg-pt-icon {
  background: rgba(0, 184, 148, 0.18);
  border-color: rgba(0, 184, 148, 0.3);
  color: #00b894;
}

.vg-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vg-tag {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vg-tag i {
  color: #3EB649;
  font-size: 10px;
}

/* ===================== FUJIBOT CHAT & ANIMATIONS ===================== */
.fujibot-avatar-wrap {
  position: relative;
  text-align: center;
  cursor: pointer;
}

.fujibot-avatar-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.35) 0%, rgba(62, 182, 73, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0.5;
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.fujibot-avatar-wrap:hover::before {
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 0.9;
}

.fujibot-avatar-img {
  max-width: 190px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 40px rgba(62, 182, 73, 0.35));
  animation: floatBot 4s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fujibot-avatar-wrap:hover .fujibot-avatar-img {
  animation-play-state: paused;
  transform: translateY(-16px) scale(1.1) rotate(4deg);
  filter: drop-shadow(0 30px 60px rgba(62, 182, 73, 0.65)) brightness(1.1);
}

@keyframes floatBot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.fujibot-chat-mockup {
  background: rgba(9, 22, 41, 0.95);
  border: 1px solid rgba(62, 182, 73, 0.3);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fujibot-chat-mockup:hover {
  border-color: rgba(62, 182, 73, 0.6);
  box-shadow: 0 25px 60px rgba(62, 182, 73, 0.25);
  transform: translateY(-6px);
}

.fujibot-chat-header {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.fujibot-chat-header-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  background: rgba(62, 182, 73, 0.15);
  border: 1px solid rgba(62, 182, 73, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fujibot-chat-header-avatar img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #3EB649;
  border-radius: 50%;
  box-shadow: 0 0 10px #3EB649;
  animation: pulseLive 2s infinite;
}

@keyframes pulseLive {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}

.fujibot-chat-header-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.fujibot-chat-header-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.fujibot-chat-body {
  height: 300px;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Custom scrollbar inside chat body */
.fujibot-chat-body::-webkit-scrollbar {
  width: 5px;
}

.fujibot-chat-body::-webkit-scrollbar-thumb {
  background: rgba(62, 182, 73, 0.3);
  border-radius: 4px;
}

.fujibot-msg-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  animation: msgPopIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.fujibot-msg-row.msg-sent {
  flex-direction: row-reverse;
}

@keyframes msgPopIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fujibot-msg-avatar {
  width: 32px;
  height: 32px;
  background: var(--fujishka-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  flex-shrink: 0;
}

.fujibot-msg-bubble {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 18px;
  border-top-left-radius: 4px;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 84%;
}

.msg-sent .fujibot-msg-bubble {
  background: var(--fujishka-gradient);
  border: none;
  border-radius: 18px;
  border-top-right-radius: 4px;
}

/* Typing Indicator Dots */
.fujibot-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
}

.fujibot-typing-dots span {
  width: 6px;
  height: 6px;
  background: #3EB649;
  border-radius: 50%;
  animation: dotBounce 1.4s infinite ease-in-out both;
}

.fujibot-typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.fujibot-typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes dotBounce {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.3;
  }

  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* ===================== TESTIMONIALS SECTION ===================== */
.fj-testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #071224 0%, #0c2038 100%);
  position: relative;
  overflow: hidden;
}

.fj-testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(62, 182, 73, 0.22);
  border-radius: 24px;
  padding: 32px 28px;
  height: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fj-testi-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(62, 182, 73, 0.5);
  box-shadow: 0 20px 45px rgba(62, 182, 73, 0.2);
}

.fj-testi-card .stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
  font-size: 15px;
}

.fj-testi-card .stars i {
  color: #ffc107;
  filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.6));
  transition: transform 0.2s ease;
}

.fj-testi-card:hover .stars i {
  transform: scale(1.2);
}

.fj-testi-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.fj-testi-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.fj-testi-card .avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #3EB649 0%, #208e31 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(62, 182, 73, 0.35);
  flex-shrink: 0;
}

.fj-testi-card .info h5 {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.fj-testi-card .info span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================== REQUEST FREE DEMO MODAL ===================== */
.fj-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 18, 36, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fj-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.fj-modal-dialog {
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 28px;
}

.fj-modal-backdrop.is-active .fj-modal-dialog {
  transform: translateY(0) scale(1);
}

.fj-modal-dialog::-webkit-scrollbar {
  width: 6px;
}

.fj-modal-dialog::-webkit-scrollbar-thumb {
  background: rgba(62, 182, 73, 0.4);
  border-radius: 4px;
}

.fj-modal-content {
  background: linear-gradient(135deg, #091629 0%, #0d233a 100%);
  border: 1px solid rgba(62, 182, 73, 0.35);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.fj-modal-header {
  padding: 32px 32px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fj-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(62, 182, 73, 0.15);
  border: 1px solid rgba(62, 182, 73, 0.35);
  color: #3EB649;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.fj-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.fj-modal-subtitle {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.fj-modal-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.fj-modal-close:hover {
  background: #3EB649;
  color: #ffffff;
  border-color: transparent;
  transform: rotate(90deg);
}

.fj-modal-body {
  padding: 28px 32px 36px;
}

.fj-form-group {
  margin-bottom: 4px;
}

.fj-form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
  display: block;
}

.fj-form-label .req {
  color: #3EB649;
  font-weight: 700;
}

.fj-input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.fj-input-icon-wrap .input-icon {
  position: absolute;
  left: 16px;
  color: #3EB649;
  font-size: 14px;
  pointer-events: none;
}

.fj-input-icon-wrap .textarea-icon {
  top: 16px;
}

.fj-form-input,
.fj-form-select,
.fj-form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 16px 12px 44px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}

/* Native select: clear caret, room for left icon, readable OS dropdown */
.fj-form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233EB649' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  line-height: 1.4;
  height: 48px;
}

.fj-form-select option,
.fj-form-select optgroup {
  background-color: #0d233a;
  color: #ffffff;
}

.fj-form-input:focus,
.fj-form-select:focus,
.fj-form-textarea:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #3EB649;
  box-shadow: 0 0 15px rgba(62, 182, 73, 0.25);
}

.fj-form-select:focus {
  /* Keep caret visible when focus overrides background */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233EB649' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

/* If nice-select still wraps a modal select, force dark readable theme */
.fj-bs-demo-modal .fj-input-icon-wrap {
  width: 100%;
}

.fj-bs-demo-modal .nice-select.fj-form-select {
  float: none;
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding-left: 44px;
  padding-right: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: #ffffff;
}

.fj-bs-demo-modal .nice-select.fj-form-select:after {
  border-color: #3EB649;
  right: 18px;
}

.fj-bs-demo-modal .nice-select .list {
  background: #0d233a;
  border: 1px solid rgba(62, 182, 73, 0.35);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
  z-index: 20;
}

.fj-bs-demo-modal .nice-select .option {
  color: #ffffff;
  padding-left: 16px;
}

.fj-bs-demo-modal .nice-select .option:hover,
.fj-bs-demo-modal .nice-select .option.focus,
.fj-bs-demo-modal .nice-select .option.selected.focus {
  background: rgba(62, 182, 73, 0.2);
  color: #ffffff;
}

.fj-bs-demo-modal .nice-select .option.selected {
  color: #6ee77f;
}

.fj-bs-demo-modal .nice-select .option.disabled {
  color: rgba(255, 255, 255, 0.45);
}

.fj-form-input::placeholder,
.fj-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.fj-demo-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #3EB649 0%, #208e31 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(62, 182, 73, 0.35);
  transition: all 0.3s ease;
}

.fj-demo-submit-btn:hover {
  background: linear-gradient(135deg, #45cb52 0%, #27a33a 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(62, 182, 73, 0.5);
}

.fj-demo-success-alert {
  text-align: center;
  padding: 30px 20px;
}

.fj-demo-success-alert .success-icon {
  font-size: 56px;
  color: #3EB649;
  margin-bottom: 16px;
}

.fj-demo-success-alert h4 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.fj-demo-success-alert p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto;
}

/* Validation messages under demo / contact fields */
.fj-field-error {
  color: #f87171;
  font-size: 12px;
  line-height: 1.4;
  min-height: 0;
  margin-top: 6px;
}

.fj-field-error .parsley-errors-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fj-field-error .parsley-errors-list li {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

.fj-form-input.is-invalid,
.fj-form-select.is-invalid,
.fj-form-textarea.is-invalid,
.form-control-fj.is-invalid {
  border-color: #f87171 !important;
}

.fj-form-input.is-valid,
.fj-form-select.is-valid,
.fj-form-textarea.is-valid {
  border-color: rgba(62, 182, 73, 0.65) !important;
}

/* Keep the shared demo modal above header, FAB, and GSAP stacking contexts */
.modal-backdrop {
  z-index: 1000000;
}
.fj-bs-demo-modal {
  z-index: 1000010;
}

/* ===================== BOOTSTRAP DEMO MODAL STYLING ===================== */
.fj-bs-demo-modal .modal-content {
  background: linear-gradient(135deg, #091629 0%, #0d233a 100%);
  border: 1px solid rgba(62, 182, 73, 0.35);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  overflow: hidden;
}

.fj-bs-demo-modal .modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: flex-start;
}

.fj-bs-demo-modal .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.fj-bs-demo-modal .modal-subtitle {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.fj-bs-demo-modal .modal-body {
  padding: 28px 32px 36px;
}

.fj-bs-demo-modal .btn-close-white {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 10px;
  opacity: 0.8;
  transition: all 0.25s ease;
}

.fj-bs-demo-modal .btn-close-white:hover {
  background-color: #3EB649;
  opacity: 1;
  transform: rotate(90deg);
}

.modal-backdrop.show {
  opacity: 0.82;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ===================== CONTACT PAGE ENHANCEMENTS (LIGHT THEME) ===================== */
.contact-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  color: #1e293b;
}

.c-form-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.c-form-box .fj-field-error {
  color: #dc2626;
  margin: -8px 0 12px;
}

.c-form-box .form-control-fj.is-valid {
  border-color: #3EB649 !important;
}

.c-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3EB649, #00b894);
}

.c-form-box h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.c-form-box p {
  color: #64748b;
  font-size: 14.5px;
  margin-bottom: 30px;
}

.form-control-fj {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.form-control-fj option {
  background: #ffffff;
  color: #0f172a;
}

.form-control-fj:focus {
  background: #ffffff;
  border-color: #3EB649;
  box-shadow: 0 0 0 3.5px rgba(62, 182, 73, 0.15);
}

.form-control-fj::placeholder {
  color: #94a3b8;
}

.c-info-card {
  background: #ffffff;
  border: 1px solid rgba(62, 182, 73, 0.22);
  border-radius: 24px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.c-info-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: #3EB649;
  box-shadow: 0 20px 45px rgba(62, 182, 73, 0.15);
}

.c-info-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-info-card ul li {
  font-size: 13.5px;
  color: #334155;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.c-info-card ul li i {
  color: #3EB649;
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.c-info-card ul li a {
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease;
}

.c-info-card ul li a:hover {
  color: #3EB649;
}

/* Quick Contact Channel Chips (Light Theme) */
.contact-channels-sec {
  padding: 60px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.channel-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.channel-card:hover {
  background: #ffffff;
  border-color: #3EB649;
  transform: translateY(-4px);
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(62, 182, 73, 0.15);
}

.channel-icon {
  width: 52px;
  height: 52px;
  background: rgba(62, 182, 73, 0.1);
  border: 1px solid rgba(62, 182, 73, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #3EB649;
  flex-shrink: 0;
}

.channel-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.channel-info p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* Interactive Map Section (Light Theme) */
.contact-maps-sec {
  padding: 90px 0;
  background: #f8fafc;
}

.contact-maps-sec h2 {
  color: #fff !important;
}

.map-tab-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.map-tab-btn.active,
.map-tab-btn:hover {
  background: #3EB649;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(62, 182, 73, 0.35);
}

.map-iframe-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  height: 420px;
  background: #ffffff;
}

/* ===================== LOCATION CARDS (GLOBAL PRESENCE - LIGHT THEME) ===================== */
.fj-presence {
  padding: 105px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.fj-presence-header {
  text-align: center;
  margin-bottom: 54px;
}

.fj-presence-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.fj-presence-header p {
  color: #64748b;
  max-width: 580px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

.fj-location-card {
  background: #ffffff;
  border: 1px solid rgba(62, 182, 73, 0.22);
  border-radius: 26px;
  padding: 32px 26px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fj-location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #3EB649, #00b894);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.fj-location-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  border-color: #3EB649;
  box-shadow: 0 20px 45px rgba(62, 182, 73, 0.16);
}

.fj-location-card:hover::before {
  opacity: 1;
}

.loc-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.loc-flag {
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hq-tag {
  background: rgba(62, 182, 73, 0.12);
  border: 1px solid rgba(62, 182, 73, 0.35);
  color: #208e31;
}

.ksa-tag {
  background: rgba(0, 184, 148, 0.12);
  border: 1px solid rgba(0, 184, 148, 0.35);
  color: #00896f;
}

.uae-tag {
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.35);
  color: #d97706;
}

.china-tag {
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.35);
  color: #e11d48;
}

.loc-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.loc-details {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.loc-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #334155;
  line-height: 1.55;
}

.loc-details li i {
  color: #3EB649;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.loc-details li a {
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease;
}

.loc-details li a:hover {
  color: #3EB649;
}

.loc-map-btn {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.loc-map-btn:hover {
  background: #3EB649;
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(62, 182, 73, 0.35);
  transform: translateY(-2px);
}

/* ===================== OUR SERVICES ENHANCEMENTS ===================== */
.fj-services {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.fj-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 36px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fj-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3EB649, #00b894);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fj-service-card:hover {
  transform: translateY(-8px);
  border-color: #3EB649;
  box-shadow: 0 20px 45px rgba(62, 182, 73, 0.16);
}

.fj-service-card:hover::before {
  opacity: 1;
}

.fj-service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.fj-service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(62, 182, 73, 0.1);
  border: 1px solid rgba(62, 182, 73, 0.25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #3EB649;
  transition: all 0.3s ease;
}

.fj-service-card:hover .fj-service-icon-wrap {
  background: #3EB649;
  color: #ffffff;
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 8px 20px rgba(62, 182, 73, 0.35);
}

.fj-service-num {
  font-size: 11.5px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #f8fafc;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.fj-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.35;
}

.fj-service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fj-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fj-service-list li {
  font-size: 13px;
  color: #334155;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.fj-service-list li i {
  color: #3EB649;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.fj-service-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
  margin-top: auto;
}

.fj-service-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #3EB649;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.fj-service-link i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.fj-service-link:hover {
  color: #208e31;
}

.fj-service-link:hover i {
  transform: translateX(4px);
}

/* ===================== FLOATING SPEED DIAL (FAB BUTTON) ===================== */
.fj-fab-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999999;
}

.fj-fab-main-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3EB649 0%, #00b894 100%);
  border: none;
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(62, 182, 73, 0.45);
  cursor: pointer;
  outline: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fj-fab-main-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 35px rgba(62, 182, 73, 0.6);
}

.fj-fab-plus-icon {
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fj-fab-container.is-open .fj-fab-plus-icon {
  transform: rotate(135deg) !important;
}

.fj-fab-options {
  position: absolute;
  bottom: 74px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fj-fab-container.is-open .fj-fab-options {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

.fj-fab-option {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.fj-fab-option:hover {
  transform: translateX(-5px);
  color: #ffffff;
}

.fj-fab-label {
  background: rgba(9, 22, 41, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  padding: 7px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.fj-fab-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.fj-fab-whatsapp .fj-fab-icon {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.fj-fab-brochure .fj-fab-icon {
  background: #091629;
  border: 1.5px solid #3EB649;
  color: #3EB649;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.fj-fab-option:hover .fj-fab-icon {
  transform: scale(1.1);
}

/* ===================== DISABLE PAGE LOADERS PERMANENTLY ===================== */
.loader-wrap,
.loader-wrap-heading,
#preloader,
.preloader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ==========================================================================
   FUJISHKA MASTER MOBILE & TABLET RESPONSIVE ENGINE (ENHANCED DESIGN & LAYOUT)
   ========================================================================== */

/* --- Touch & Viewport Anti-Overflow Safety --- */
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

/* --- 1. LARGE TABLETS & SMALL LAPTOPS (max-width: 1199px) --- */
@media (max-width: 1199px) {
  .fj-navbar .header-area-1__inner {
    /* padding: 8px 0; */
  }

  .fj-hero {
    padding: 90px 0 50px;
    min-height: auto;
  }

  .fj-hero .hero-inner {
    padding-top: 10px;
  }

  .hero-circle-container {
    width: 400px;
    height: 400px;
  }

  .hero-circle-mask {
    width: 350px;
    height: 350px;
  }

  .fj-presence,
  .fj-services,
  .fj-capabilities {
    padding: 70px 0;
  }
}

/* --- 2. TABLETS (max-width: 991px) --- */
@media (max-width: 991px) {

  /* Topbar — Hidden on Mobile & Tablet */
  .fj-topbar {
    display: none !important;
  }

  /* Navbar */
  .fj-navbar {
    top: 0 !important;
    /* padding: 6px 0; */
  }

  .fj-navbar .header-area-1__inner {
    gap: 12px;
  }

  /* .fj-logo-wrap img {
    height: auto;
  } */

  .fj-nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Hero Section */
  .fj-hero {
    padding: 105px 0 60px;
    text-align: center;
  }

  .fj-hero .hero-desc {
    margin: 0 auto 28px;
  }

  .fj-hero .hero-cta {
    justify-content: center;
    margin-bottom: 35px;
  }

  .hero-circle-container {
    width: 100% !important;
    max-width: 360px !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    margin: 30px auto 0 !important;
  }

  .hero-circle-mask {
    width: 88% !important;
    height: 88% !important;
    max-width: 310px !important;
    aspect-ratio: 1 / 1 !important;
  }

  .hero-hand-arrow {
    display: none !important;
  }

  .hero-ai-badge-2 {
    right: 0px !important;
    top: 10px !important;
    transform: scale(0.88);
  }

  .hero-grow-badge {
    left: 0px !important;
    bottom: -10px !important;
    width: 130px !important;
    height: 130px !important;
    padding: 16px !important;
    font-size: 14px !important;
  }

  /* Products Horizontal Scroll Panel Mobile & Tablet Mode */
  .fj-products .section-header {
    padding: 40px 0 15px;
  }

  .fj-product-tabs-wrapper {
    display: block !important;
    margin-top: 15px;
    margin-bottom: 22px;
  }

  .fj-hscroll-bottom-controls {
    display: flex !important;
  }

  .fj-product-nav-tabs {
    justify-content: flex-start;
    border-radius: 24px;
    padding: 6px 8px;
    gap: 8px;
  }

  .fj-product-tab-btn {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 20px;
  }

  .fj-hscroll-outer {
    height: auto !important;
  }

  .fj-hscroll-sticky {
    height: auto !important;
  }

  .fj-hscroll-track {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 10px 15px 20px !important;
    gap: 16px !important;
  }

  .fj-hscroll-panel {
    flex: 0 0 88% !important;
    width: 88% !important;
    min-width: 88% !important;
    scroll-snap-align: center !important;
    background: linear-gradient(135deg, rgba(245, 252, 246, 0.98) 0%, rgba(235, 248, 237, 0.98) 100%) !important;
    border-radius: 24px !important;
    border: 1.5px solid rgba(62, 182, 73, 0.2) !important;
    box-shadow: 0 10px 30px rgba(62, 182, 73, 0.08) !important;
    padding: 24px 20px !important;
    margin-right: 0 !important;
  }

  .fj-product-showcase {
    padding: 20px !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }

  .fj-product-showcase h3 {
    font-size: clamp(20px, 4.5vw, 26px) !important;
    margin-bottom: 8px !important;
  }

  .fj-product-showcase .showcase-desc {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
    color: #475569 !important;
  }

  .fj-showcase-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .fj-showcase-item {
    background: #ffffff !important;
    border: 1px solid rgba(62, 182, 73, 0.18) !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    font-size: 13px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
    min-width: 0 !important;
  }

  .fj-showcase-item .si-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
    background: var(--fujishka-light-green) !important;
    color: var(--fujishka-green) !important;
  }

  .fj-showcase-item strong {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    margin-bottom: 0 !important;
  }

  .fj-showcase-img-wrap {
    margin-top: 15px !important;
    border-radius: 16px !important;
    min-height: unset !important;
    height: 240px !important;
    width: 100% !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
  }

  .fj-showcase-img-wrap img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }

  /* Grid Layouts for Services, Location Cards & Capabilities */
  .fj-services,
  .fj-presence,
  .fj-capabilities {
    padding: 60px 0;
  }

  .fj-service-card,
  .fj-location-card,
  .fj-capability-card {
    padding: 24px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  /* Offcanvas Mobile Drawer Styling */
  .side-info {
    width: 320px;
    background: #091629;
    color: #ffffff;
    padding: 25px 20px;
    z-index: 99999;
  }

  .side-info-close {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
  }

  .side-info .mobile-menu {
    margin-top: 20px;
    margin-bottom: 25px;
  }

  .mean-container .mean-nav {
    background: transparent;
  }

  .mean-container .mean-nav ul li a {
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 10px;
  }

  .mean-container .mean-nav ul li a.mean-expand {
    background: rgba(62, 182, 73, 0.15);
    border: none;
    color: #3EB649;
    height: 30px;
    line-height: 30px;
    border-radius: 6px;
    top: 6px;
  }

  .mean-container .mean-nav ul li a:hover,
  .mean-container .mean-nav ul li a.active {
    color: #3EB649;
  }
}

/* --- 3. MOBILE DEVICES (max-width: 767px) --- */
@media (max-width: 767px) {

  /* Topbar */
  .fj-topbar .contact-links {
    flex-direction: column;
    gap: 4px;
  }

  .fj-topbar .contact-links a {
    font-size: 11.5px;
  }

  /* Headings & Fluid Typography */
  h1,
  .h1 {
    font-size: clamp(26px, 7.5vw, 36px) !important;
    line-height: 1.2 !important;
  }

  h2,
  .h2 {
    font-size: clamp(22px, 6vw, 28px) !important;
    line-height: 1.25 !important;
  }

  h3,
  .h3 {
    font-size: clamp(18px, 5vw, 22px) !important;
    line-height: 1.3 !important;
  }

  .section-label {
    font-size: 10.5px;
    padding: 4px 12px;
  }

  /* Hero Section Mobile */
  .fj-hero {
    padding: 95px 0 50px;
  }

  .hero-subtitle-badge {
    font-size: 11px !important;
  }

  .hero-desc {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 10px !important;
  }

  .hero-cta a,
  .fj-btn-explore,
  .fj-btn-contact {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 20px !important;
    font-size: 13.5px !important;
  }

  .hero-circle-container {
    max-width: 290px !important;
  }

  .hero-circle-mask {
    max-width: 250px !important;
  }

  .hero-ai-badge {
    padding: 7px 10px;
    gap: 7px;
  }

  .hero-ai-badge .badge-icon-wrap {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .hero-ai-badge .badge-text strong {
    font-size: 11.5px;
  }

  .hero-ai-badge .badge-text span {
    font-size: 9.5px;
  }

  .hero-grow-badge {
    width: 100px !important;
    height: 100px !important;
    font-size: 11.5px !important;
    padding: 10px !important;
  }

  /* Products horizontal scroll single slide full width */
  .fj-product-tabs-wrapper {
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .fj-product-tab-btn {
    padding: 7px 14px !important;
    font-size: 12px !important;
  }

  .fj-hscroll-panel {
    flex: 0 0 94% !important;
    width: 94% !important;
    min-width: 94% !important;
    padding: 18px 15px !important;
    border-radius: 20px !important;
  }

  .fj-product-showcase h3 {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  .fj-product-showcase .showcase-desc {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
  }

  .fj-showcase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
  }

  .fj-showcase-item {
    font-size: 12px !important;
    padding: 9px 10px !important;
    gap: 8px !important;
    border-radius: 10px !important;
  }

  .fj-showcase-item .si-icon {
    font-size: 13px !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 8px !important;
  }

  .fj-showcase-item strong {
    font-size: 11.5px !important;
    line-height: 1.25 !important;
  }

  .fj-product-showcase .fj-nav-cta {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 11px 18px !important;
    font-size: 13px !important;
  }

  .fj-showcase-img-wrap {
    height: 190px !important;
    margin-top: 14px !important;
  }

  @media (max-width: 480px) {
    .fj-showcase-grid {
      grid-template-columns: 1fr !important;
      gap: 8px !important;
    }

    .fj-hscroll-panel {
      flex: 0 0 96% !important;
      width: 96% !important;
      min-width: 96% !important;
      padding: 16px 12px !important;
    }
  }

  /* Ticker Logos */
  .fj-clients-section {
    padding: 40px 0 30px;
  }

  .fj-client-logo-card {
    width: 140px;
    height: 56px;
    padding: 8px 14px;
  }

  .brand-logo-name {
    font-size: 13.5px;
  }

  /* Location cards & Services cards stack */
  .fj-location-card,
  .fj-service-card {
    padding: 20px 16px;
  }

  .loc-details li {
    font-size: 12.5px;
  }

  .loc-map-btn {
    font-size: 12px;
    padding: 8px 14px;
  }

  /* Modal Form Mobile Enhancements */
  .fj-bs-demo-modal .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }

  .fj-bs-demo-modal .modal-header {
    padding: 18px 18px 12px;
  }

  .fj-bs-demo-modal .modal-body {
    padding: 18px;
  }

  .fj-form-input,
  .fj-form-select,
  .fj-form-textarea {
    font-size: 16px !important;
    /* Prevents auto-zoom on iOS */
    padding: 10px 14px 10px 42px !important;
  }

  .fj-form-select {
    padding-right: 40px !important;
    height: 48px;
  }

  .fj-demo-submit-btn {
    height: 48px;
    font-size: 15px;
  }

  /* Floating Speed Dial (FAB) Mobile */
  .fj-fab-container {
    bottom: 20px;
    right: 18px;
  }

  .fj-fab-main-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .fj-fab-options {
    bottom: 64px;
  }

  .fj-fab-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .fj-fab-label {
    font-size: 11.5px;
    padding: 5px 12px;
  }
}

/* --- 4. SMALL MOBILE DEVICES (max-width: 480px) --- */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .fj-showcase-grid {
    grid-template-columns: 1fr !important;
  }

  .fj-hscroll-panel {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
  }

  .fj-nav-cta {
    font-size: 12px;
    padding: 7px 12px;
  }

  .hero-grow-badge {
    display: none !important;
  }
}

/* --- 5. INNER PAGES MOBILE & TABLET ENHANCEMENTS --- */
@media (max-width: 991px) {
  .fj-why-about-img-wrap {
    margin-bottom: 30px;
  }

  .fj-why-about-img-wrap .badge-experience {
    padding: 10px 14px;
    border-radius: 14px;
  }

  .fj-why-about-img-wrap .badge-experience .num {
    font-size: 22px;
  }

  .fj-why-about-img-wrap .badge-experience .txt {
    font-size: 10px;
  }

  .fj-why-about-img-wrap .badge-trust {
    padding: 8px 14px;
    font-size: 11.5px;
    bottom: 12px;
    left: 12px;
  }

  .fj-why-about-img-wrap .badge-compliance {
    padding: 6px 12px;
    font-size: 10.5px;
    top: 12px;
    left: 12px;
  }
}

@media (max-width: 767px) {
  .fj-why-pillars-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .fj-pillar-mini {
    padding: 14px;
  }
}

/* ==========================================================================
   PREMIUM LAYOUT & DESIGN AESTHETIC ENHANCEMENTS
   ========================================================================== */

/* --- High-End Page Heroes --- */
.fj-page-hero {
  position: relative;
  background: linear-gradient(135deg, #050f1f 0%, #0c1b33 50%, #071529 100%) !important;
  padding: 160px 0 110px;
  color: #ffffff;
  overflow: hidden;
}

.fj-page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.fj-page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4.5vw, 54px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin-bottom: 18px !important;
}

.fj-page-hero .hl {
  background: linear-gradient(135deg, #3EB649 0%, #00b894 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fj-page-hero p {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
}

/* --- Premium Cards Elevation & Micro-Interactions --- */
.ksa-card,
.feat-card,
.fj-service-card,
.fj-location-card,
.fj-capability-card {
  background: #ffffff;
  border: 1px solid rgba(62, 182, 73, 0.18) !important;
  border-radius: 22px !important;
  padding: 30px 24px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.ksa-card::before,
.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #3EB649, #00b894);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ksa-card:hover,
.feat-card:hover,
.fj-service-card:hover,
.fj-location-card:hover,
.fj-capability-card:hover {
  transform: translateY(-8px) !important;
  border-color: #3EB649 !important;
  box-shadow: 0 20px 45px rgba(62, 182, 73, 0.16) !important;
}

.ksa-card:hover::before,
.feat-card:hover::before {
  opacity: 1;
}

.k-icon,
.f-icon {
  width: 52px;
  height: 52px;
  background: rgba(62, 182, 73, 0.1);
  border: 1px solid rgba(62, 182, 73, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #3EB649;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.ksa-card:hover .k-icon,
.feat-card:hover .f-icon {
  background: linear-gradient(135deg, #3EB649 0%, #00b894 100%);
  color: #ffffff;
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 8px 20px rgba(62, 182, 73, 0.35);
}

/* --- High-End Product Showcase Cards --- */
.fj-product-showcase {
  background: linear-gradient(135deg, #ffffff 0%, #f6fbf7 100%) !important;
  border: 1px solid rgba(62, 182, 73, 0.22) !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(62, 182, 73, 0.08) !important;
  border-radius: 0px !important;
}

.fj-showcase-item {
  border-radius: 16px !important;
  border: 1px solid rgba(62, 182, 73, 0.2) !important;
  background: #ffffff !important;
  transition: all 0.3s ease !important;
}

.fj-showcase-item:hover {
  border-color: #3EB649 !important;
  box-shadow: 0 8px 20px rgba(62, 182, 73, 0.16) !important;
  transform: translateY(-3px) !important;
}

.fj-showcase-img-wrap {
  border-radius: 22px !important;
  border: 1.5px solid rgba(62, 182, 73, 0.22) !important;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08) !important;
}

.fj-showcase-img-wrap img {
  transition: transform 0.5s ease;
}

.fj-showcase-img-wrap:hover img {
  transform: scale(1.03);
}

/* --- Glossy Buttons & Arrow Shifts --- */
.fj-nav-cta,
.fj-btn-explore,
.fj-btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.fj-nav-cta:hover,
.fj-btn-explore:hover,
.fj-btn-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 10px 28px rgba(62, 182, 73, 0.45) !important;
}

.fj-nav-cta i.btn-arrow,
.fj-btn-explore i,
.fj-btn-primary i {
  transition: transform 0.3s ease;
}

.fj-nav-cta:hover i.btn-arrow,
.fj-btn-explore:hover i,
.fj-btn-primary:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   BLOG DETAILS PAGE STYLES
   ========================================================================== */

/* Hero Banner */
.fj-blog-detail-hero {
  position: relative;
  background: linear-gradient(135deg, #0b1528 0%, #15294a 50%, #0f172a 100%);
  /* Clear fixed topbar (~38px) + navbar so navy hero is not covered by green topbar */
  padding: 140px 0 60px;
  color: #ffffff;
  overflow: hidden;
}

.fj-blog-detail-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.25) 0%, rgba(62, 182, 73, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
}

.fj-blog-detail-hero .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fj-blog-detail-hero .breadcrumb-nav a {
  color: #6ee77f;
  text-decoration: none;
  transition: opacity 0.2s;
}

.fj-blog-detail-hero .breadcrumb-nav a:hover {
  text-decoration: underline;
}

.fj-blog-detail-hero .breadcrumb-nav .sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.blog-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 182, 73, 0.18);
  color: #6ee77f;
  border: 1px solid rgba(62, 182, 73, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.fj-blog-detail-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
}

.fj-blog-detail-hero .hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 900px;
  margin-bottom: 32px;
}

/* Metadata Bar */
.blog-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.author-meta-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-meta-info img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #3EB649;
  box-shadow: 0 4px 12px rgba(62, 182, 73, 0.3);
}

.author-meta-info .author-name {
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  display: block;
}

.author-meta-info .author-role {
  font-size: 12px;
  color: #94a3b8;
}

.article-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13.5px;
  color: #cbd5e1;
}

.article-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-share-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-pill-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.share-pill-btn:hover {
  background: #3EB649;
  color: #ffffff;
  border-color: #3EB649;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(62, 182, 73, 0.4);
}

/* Featured Media Section */
.blog-featured-media-sec {
  margin-top: -40px;
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}

.featured-media-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  border: 3px solid #ffffff;
  position: relative;
  background: #0f172a;
}

.featured-media-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.media-tag-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.media-tag-overlay span {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Blog Content Body */
.blog-details-sec {
  background: #ffffff;
  padding-top: 10px;
  padding-bottom: 90px;
}

.blog-detail-content {
  color: #334155;
  font-size: 16.5px;
  line-height: 1.8;
}

.blog-detail-content p {
  margin-bottom: 24px;
}

.blog-detail-content .lead-text {
  font-size: 19px;
  line-height: 1.75;
  color: #1e293b;
  font-weight: 500;
  border-left: 4px solid #3EB649;
  padding-left: 20px;
  margin-bottom: 32px;
}

.blog-detail-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 40px;
  margin-bottom: 18px;
  scroll-margin-top: 100px;
}

.blog-detail-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 32px;
  margin-bottom: 14px;
  scroll-margin-top: 100px;
}

/* Sticky Table of Contents */
.toc-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #3EB649;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.toc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc-title i {
  color: #3EB649;
}

.toc-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.toc-list li {
  margin-bottom: 10px;
}

.toc-list li:last-child {
  margin-bottom: 0;
}

.toc-list a {
  color: #475569;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.toc-list a:hover {
  color: #3EB649;
  transform: translateX(4px);
}

.toc-list a i {
  font-size: 11px;
  color: #3EB649;
  opacity: 0;
  transition: opacity 0.2s;
}

.toc-list a:hover i {
  opacity: 1;
}

/* Key Takeaway Callout Box */
.key-takeaway-box {
  background: linear-gradient(135deg, rgba(62, 182, 73, 0.07) 0%, rgba(62, 182, 73, 0.02) 100%);
  border: 1px solid rgba(62, 182, 73, 0.3);
  border-radius: 20px;
  padding: 28px;
  margin: 36px 0;
  position: relative;
}

.key-takeaway-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.key-takeaway-header .icon-wrap {
  width: 42px;
  height: 42px;
  background: #3EB649;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.key-takeaway-header h4 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.key-takeaway-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.key-takeaway-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #334155;
  font-size: 15.5px;
}

.key-takeaway-list li:last-child {
  margin-bottom: 0;
}

.key-takeaway-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #3EB649;
  font-size: 14px;
}

/* Pullquote Blockquote */
.blog-quote {
  background: #0f172a;
  color: #ffffff;
  border-radius: 20px;
  padding: 36px 40px;
  margin: 40px 0;
  position: relative;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.blog-quote i.quote-icon {
  font-size: 38px;
  color: #3EB649;
  margin-bottom: 16px;
  display: block;
}

.blog-quote p {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  line-height: 1.5;
  font-style: italic;
  color: #f1f5f9;
  margin-bottom: 16px;
}

.blog-quote .quote-author {
  font-size: 14px;
  color: #6ee77f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 36px 0;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #ffffff;
}

.comparison-table th {
  background: #0f172a;
  color: #ffffff;
  padding: 16px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.comparison-table th:first-child {
  border-top-left-radius: 16px;
}

.comparison-table th:last-child {
  border-top-right-radius: 16px;
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14.5px;
  color: #334155;
  vertical-align: middle;
}

.comparison-table tr:hover td {
  background: #f8fafc;
}

.badge-phase1 {
  background: #e2e8f0;
  color: #475569;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.badge-phase2 {
  background: rgba(62, 182, 73, 0.15);
  color: #3EB649;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(62, 182, 73, 0.3);
}

/* Code Snippet Box */
.code-snippet-box {
  background: #090d16;
  border-radius: 16px;
  overflow: hidden;
  margin: 36px 0;
  border: 1px solid #1e293b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.code-header {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1e293b;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dots .red {
  background: #ef4444;
}

.window-dots .yellow {
  background: #f59e0b;
}

.window-dots .green {
  background: #10b981;
}

.code-header .lang-title {
  font-size: 12px;
  color: #94a3b8;
  font-family: monospace;
  text-transform: uppercase;
}

.copy-code-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.copy-code-btn:hover {
  background: #3EB649;
  color: #ffffff;
}

.code-snippet-box pre {
  margin: 0;
  padding: 20px;
  color: #e2e8f0;
  font-family: 'Consolas', 'Fira Code', Monaco, monospace;
  font-size: 13.5px;
  line-height: 1.6;
  overflow-x: auto;
}

.code-snippet-box .xml-tag {
  color: #38bdf8;
}

.code-snippet-box .xml-attr {
  color: #f472b6;
}

.code-snippet-box .xml-val {
  color: #a3e635;
}

/* 4-Step Roadmap Pipeline */
.step-roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 36px 0;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.step-card:hover {
  border-color: #3EB649;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(62, 182, 73, 0.12);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(62, 182, 73, 0.15);
  color: #3EB649;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-card h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 0;
}

/* Accordion FAQ */
.blog-faq-accordion {
  margin: 36px 0;
}

.blog-faq-accordion .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.blog-faq-accordion .accordion-button {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  padding: 18px 24px;
  box-shadow: none !important;
}

.blog-faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(62, 182, 73, 0.05);
  color: #3EB649;
}

.blog-faq-accordion .accordion-body {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  padding: 20px 24px;
  background: #ffffff;
}

/* Article Footer Bar (Tags & Social Share) */
.article-tags-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin: 40px 0;
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-badge {
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tag-badge:hover {
  background: #3EB649;
  color: #ffffff;
}

.bottom-share-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

/* Author Bio Box */
.author-bio-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.author-bio-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #3EB649;
}

.author-bio-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.author-bio-content .role {
  font-size: 13px;
  color: #3EB649;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.author-bio-content p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 14px;
}

.author-socials {
  display: flex;
  gap: 12px;
}

.author-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.author-socials a:hover {
  background: #3EB649;
  color: #ffffff;
  border-color: #3EB649;
}

/* Post Navigation (Prev/Next) */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.post-nav-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-nav-item:hover {
  border-color: #3EB649;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.12);
  transform: translateY(-3px);
}

.post-nav-item.next {
  text-align: right;
}

.nav-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #3EB649;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-nav-item.next .nav-label {
  justify-content: flex-end;
}

.post-nav-item h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.widget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #3EB649;
  border-radius: 3px;
}

/* Search Widget */
.search-widget-form {
  position: relative;
}

.search-widget-form input {
  width: 100%;
  padding: 12px 45px 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.search-widget-form input:focus {
  border-color: #3EB649;
}

.search-widget-form button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #3EB649;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.search-widget-form button:hover {
  background: #27a33a;
}

/* Category Widget */
.widget-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-categories li {
  margin-bottom: 12px;
}

.widget-categories li:last-child {
  margin-bottom: 0;
}

.widget-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #334155;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.widget-categories a:hover,
.widget-categories li.active a {
  background: #3EB649;
  color: #ffffff;
}

.widget-categories span.count {
  background: #ffffff;
  color: #3EB649;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
}

.widget-categories a:hover span.count,
.widget-categories li.active a span.count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Trending Posts Widget */
.trending-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trending-post-item {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
}

.trending-post-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.trending-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.trending-post-item:hover .trending-post-img img {
  transform: scale(1.1);
}

.trending-post-info h6 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.35;
  transition: color 0.2s;
}

.trending-post-item:hover .trending-post-info h6 {
  color: #3EB649;
}

.trending-post-info .date {
  font-size: 12px;
  color: #94a3b8;
}

/* Download Checklist CTA Widget */
.download-cta-widget {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 30px 24px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-cta-widget::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(62, 182, 73, 0.25);
  border-radius: 50%;
  filter: blur(20px);
}

.download-cta-widget .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #3EB649;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(62, 182, 73, 0.4);
}

.download-cta-widget h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.download-cta-widget p {
  font-size: 13.5px;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.download-cta-widget .btn-download {
  background: #3EB649;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: none;
  width: 100%;
  justify-content: center;
}

.download-cta-widget .btn-download:hover {
  background: #27a33a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(62, 182, 73, 0.4);
}

/* Sticky Contact Demo Widget */
.sticky-demo-widget {
  background: linear-gradient(135deg, rgba(62, 182, 73, 0.12) 0%, rgba(62, 182, 73, 0.04) 100%);
  border: 2px solid #3EB649;
  border-radius: 20px;
  padding: 28px;
}

.sticky-demo-widget h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.sticky-demo-widget p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 18px;
}

/* Toast Message */
.fj-toast-copied {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0f172a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #3EB649;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.fj-toast-copied.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .fj-blog-detail-hero {
    padding: 110px 0 50px;
  }

  .fj-blog-detail-hero h1 {
    font-size: 30px;
  }

  .blog-quote p {
    font-size: 18px;
  }

  .author-bio-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-nav-item.next {
    text-align: left;
  }

  .post-nav-item.next .nav-label {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   CONTACT PAGE MAP SECTION STYLES
   ========================================================================== */
.contact-maps-sec {
  background: linear-gradient(135deg, #0b1528 0%, #15294a 50%, #0f172a 100%);
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

.contact-maps-sec::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.15) 0%, rgba(62, 182, 73, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
}

.map-tab-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e2e8f0;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.map-tab-btn:hover {
  background: rgba(62, 182, 73, 0.25);
  border-color: rgba(62, 182, 73, 0.5);
  color: #6ee77f;
  transform: translateY(-2px);
}

.map-tab-btn.active {
  background: #3EB649;
  border-color: #3EB649;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(62, 182, 73, 0.4);
}

.map-iframe-wrap {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.15);
  background: #0f172a;
}

.map-iframe-wrap iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 500px;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .contact-maps-sec {
    padding: 60px 0;
  }

  .map-iframe-wrap {
    height: 360px;
  }

  .map-iframe-wrap iframe {
    min-height: 360px;
  }
}

/* ==========================================================================
   OFFICE LOCATION CARDS ENHANCED STYLES (COMPACT & ZERO UNWANTED SPACES)
   ========================================================================== */
.c-info-card {
  background: #ffffff;
  border: 1px solid #e8f4eb;
  border-radius: 16px;
  padding: 18px 20px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.c-info-card:hover {
  border-color: rgba(62, 182, 73, 0.4);
  box-shadow: 0 12px 30px rgba(62, 182, 73, 0.12);
  transform: translateY(-3px);
}

.c-info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.flag-icon-badge {
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.c-info-card-header h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1.2;
}

.country-sub {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 500;
  display: block;
  margin-top: 1px;
}

.hq-badge {
  background: rgba(62, 182, 73, 0.15);
  color: #3EB649;
  border: 1px solid rgba(62, 182, 73, 0.3);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1px 7px;
  border-radius: 8px;
}

.hq-badge.ksa {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.3);
}

.hq-badge.uae {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border-color: rgba(59, 130, 246, 0.25);
}

.hq-badge.china {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  border-color: rgba(245, 158, 11, 0.25);
}

/* Tight & Compact List Items */
.c-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.c-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.c-info-list .icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(62, 182, 73, 0.1);
  color: #3EB649;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.c-info-list .info-text {
  flex: 1;
  min-width: 0;
}

.c-info-list .info-text .label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #94a3b8;
  margin-bottom: 0px;
  line-height: 1.2;
}

.c-info-list .info-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #334155;
  font-weight: 500;
}

.c-info-list .info-text p a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.c-info-list .info-text p a:hover {
  color: #3EB649;
  text-decoration: underline;
}

/* ==========================================================================
   TESTIMONIALS SLIDER CAROUSEL STYLES
   ========================================================================== */
.fj-testimonials {
  padding: 90px 0;
  background: linear-gradient(135deg, #0b1528 0%, #15294a 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.fj-testimonials::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.15) 0%, rgba(62, 182, 73, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
}

.fj-testi-arrows {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.fj-testi-prev-btn,
.fj-testi-next-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.fj-testi-prev-btn:hover,
.fj-testi-next-btn:hover {
  background: #3EB649;
  border-color: #3EB649;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(62, 182, 73, 0.4);
  transform: translateY(-2px);
}

.fj-testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.fj-testi-card:hover {
  border-color: rgba(62, 182, 73, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.fj-testi-card .stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.fj-testi-card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

.fj-testi-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fj-testi-card .author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3EB649;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(62, 182, 73, 0.3);
}

.fj-testi-card .author .info h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px 0;
}

.fj-testi-card .author .info span {
  font-size: 12.5px;
  color: #94a3b8;
  display: block;
}

.fj-testi-card.video-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 0;
}

.fj-testi-card.video-card .video-thumbnail-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fj-testi-card.video-card .video-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fj-testi-card.video-card .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 2;
}

.fj-testi-card.video-card .video-play-btn {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #3EB649;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 4;
  box-shadow: 0 0 0 8px rgba(62, 182, 73, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.fj-testi-card.video-card .video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 14px rgba(62, 182, 73, 0.2);
}

.fj-testi-card.video-card .video-content-wrap {
  position: relative;
  z-index: 3;
  padding: 24px;
  margin-top: auto;
}

.fj-testi-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.fj-testi-pagination .swiper-pagination-bullet-active {
  background: #3EB649;
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(62, 182, 73, 0.5);
}

/* ===================== FAQ PAGE STYLES ===================== */
.fj-faq-hero {
  background: #050f1f;
  position: relative;
  padding: 120px 0 80px;
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}

.fj-faq-hero h1 {
  color: #ffffff !important;
}

.fj-faq-hero .faq-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(62, 182, 73, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.fj-faq-search-box {
  max-width: 640px;
  margin: 30px auto 0;
  position: relative;
}

.fj-faq-search-box input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border-radius: 50px;
  border: 1.5px solid rgba(62, 182, 73, 0.3);
  background: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  color: #1a1a2e;
  outline: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.fj-faq-search-box input:focus {
  border-color: #3EB649;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(62, 182, 73, 0.3);
}

.fj-faq-search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #3EB649;
  font-size: 18px;
}

.fj-faq-cat-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fj-faq-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(62, 182, 73, 0.2);
  color: #4a5568;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.fj-faq-cat-pill:hover,
.fj-faq-cat-pill.active {
  background: #3EB649;
  color: #ffffff;
  border-color: #3EB649;
  box-shadow: 0 6px 20px rgba(62, 182, 73, 0.3);
}

.fj-faq-cat-pill i {
  font-size: 14px;
}

.fj-faq-page-accordion .accordion-item {
  border: 1px solid rgba(62, 182, 73, 0.15) !important;
  border-radius: 16px !important;
  margin-bottom: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.fj-faq-page-accordion .accordion-item:hover {
  border-color: rgba(62, 182, 73, 0.4) !important;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.08);
}

.fj-faq-page-accordion .accordion-button {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  padding: 20px 24px;
  background: #ffffff;
}

.fj-faq-page-accordion .accordion-button:not(.collapsed) {
  color: #3EB649;
  background: rgba(62, 182, 73, 0.05);
  box-shadow: none;
}

.fj-faq-page-accordion .accordion-body {
  font-size: 14.5px;
  line-height: 1.75;
  color: #475569;
  padding: 20px 24px 24px;
  background: #ffffff;
}

.fj-faq-badge-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(62, 182, 73, 0.12);
  color: #3EB649;
  margin-right: 10px;
}

/* ==========================================================================
   ENHANCED PRODUCT SECTION — PREMIUM SCROLLING EXPERIENCE
   ========================================================================== */

/* --- Section Background & Atmosphere --- */
.fj-products {
  /* background: #fff !important; */
  position: relative !important;
  overflow: hidden !important;
}

.fj-products::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62, 182, 73, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: products-orb-1 15s ease-in-out infinite alternate;
}

.fj-products::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: products-orb-2 18s ease-in-out infinite alternate;
}

@keyframes products-orb-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, 30px) scale(1.15);
  }

  100% {
    transform: translate(20px, -20px) scale(0.95);
  }
}

@keyframes products-orb-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.1);
  }

  100% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Subtle dot grid pattern overlay */
.fj-products-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(62, 182, 73, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 80%);
}

/* --- Section Header Dark Mode --- */
.fj-products .section-header {
  position: relative !important;
  z-index: 2 !important;
}

/* .fj-products .section-label {
  background: rgba(62, 182, 73, 0.1) !important;
  border: 1px solid rgba(62, 182, 73, 0.3) !important;
  color: #4ade80 !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
} */

.fj-products .section-title {
  color: var(--fj-dark) !important;
  text-shadow: 0 2px 20px rgba(62, 182, 73, 0.1);
}

/* --- Desktop Tab Navigation — HIDDEN on desktop, visible on mobile/tablet only --- */
@media (min-width: 992px) {
  .fj-product-tabs-wrapper {
    display: none !important;
  }
}

/* --- Horizontal Scroll Viewport (Dark Mode) --- */
.fj-hscroll-sticky {
  background: transparent !important;
}

.fj-hscroll-name-bar {
  background: rgba(6, 14, 26, 0.8) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(62, 182, 73, 0.1) !important;
}

.fj-hscroll-name-label {
  color: #4ade80 !important;
}

.fj-hscroll-name-counter {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* --- Progress Bar Enhancement --- */
.fj-products-progress-bar {
  position: relative;
  z-index: 12;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 auto;
  max-width: 600px;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 10px;
}

.fj-products-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3EB649, #00b894, #3EB649);
  background-size: 200% 100%;
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 0 10px rgba(62, 182, 73, 0.4);
  animation: progress-shimmer 3s linear infinite;
}

@keyframes progress-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* --- Panel Counter Badge --- */
.fj-products-counter {
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fj-products-counter .counter-current {
  color: #4ade80;
  font-size: 16px;
  font-weight: 700;
}

.fj-products-counter .counter-separator {
  color: rgba(255, 255, 255, 0.15);
  font-size: 14px;
}

/* --- Navigation Arrows (Desktop) --- */
.fj-products-nav-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 20;
  pointer-events: none;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.fj-products-nav-arrow {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(62, 182, 73, 0.25);
  background: rgba(6, 14, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  outline: none;
}

.fj-products-nav-arrow:hover {
  background: rgba(62, 182, 73, 0.15);
  border-color: rgba(62, 182, 73, 0.5);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(62, 182, 73, 0.2);
}

.fj-products-nav-arrow:active {
  transform: scale(0.95);
}

.fj-products-nav-arrow.is-disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 991px) {
  .fj-products-nav-arrows {
    display: none !important;
  }

  .fj-products-progress-bar {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* --- Enhanced Showcase Card (Dark/Glassmorphism) --- */
.fj-product-showcase {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(62, 182, 73, 0.12) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  border-radius: 0px !important;
  position: relative !important;
  overflow: hidden !important;
}

.fj-product-showcase::before {
  background: radial-gradient(circle, rgba(62, 182, 73, 0.06) 0%, transparent 70%) !important;
}

/* Animated gradient border glow on active panel */
.fj-hscroll-panel.is-active .fj-product-showcase {
  border-color: rgba(62, 182, 73, 0.25) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 40px rgba(62, 182, 73, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* Text colors for dark background */
.fj-product-showcase .showcase-label {
  background: rgba(62, 182, 73, 0.1) !important;
  border: 1px solid rgba(62, 182, 73, 0.3) !important;
  color: #4ade80 !important;
}

.fj-product-showcase h3 {
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.fj-product-showcase .showcase-desc {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* --- Feature Items (Dark Glass) --- */
.fj-showcase-item {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(.4, 0, .2, 1) !important;
}

.fj-showcase-item:hover {
  background: rgba(62, 182, 73, 0.08) !important;
  border-color: rgba(62, 182, 73, 0.3) !important;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.1) !important;
  transform: translateY(-3px) !important;
}

.fj-showcase-item .si-icon {
  background: rgba(62, 182, 73, 0.12) !important;
  border: 1px solid rgba(62, 182, 73, 0.2);
  color: #4ade80 !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}

.fj-showcase-item:hover .si-icon {
  background: linear-gradient(135deg, #3EB649, #2d9e3a) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(62, 182, 73, 0.35) !important;
  border-color: transparent !important;
}

.fj-showcase-item strong {
  color: rgba(255, 255, 255, 0.9) !important;
}

.fj-showcase-item span {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* --- Image Wrap Enhancement --- */
.fj-showcase-img-wrap {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 22px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
  position: relative;
  overflow: hidden !important;
}

.fj-showcase-img-wrap::after {
  border: 1.5px solid rgba(62, 182, 73, 0.15) !important;
  border-radius: 22px !important;
}

.fj-showcase-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 14, 26, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 22px;
}

.fj-showcase-img-wrap img {
  transition: transform 0.6s cubic-bezier(.4, 0, .2, 1) !important;
}

.fj-showcase-img-wrap:hover img {
  transform: scale(1.05) !important;
}

/* --- CTA Button in Dark Mode --- */
.fj-product-showcase .fj-nav-cta {
  background: linear-gradient(135deg, #3EB649 0%, #2d9e3a 100%) !important;
  box-shadow: 0 4px 20px rgba(62, 182, 73, 0.3) !important;
  border: none !important;
  transition: all 0.35s ease !important;
}

.fj-product-showcase .fj-nav-cta:hover {
  box-shadow: 0 8px 32px rgba(62, 182, 73, 0.5) !important;
  transform: translateY(-2px) scale(1.02) !important;
}

/* --- Panel entrance animation --- */
.fj-hscroll-panel .fj-product-showcase .showcase-label,
.fj-hscroll-panel .fj-product-showcase h3,
.fj-hscroll-panel .fj-product-showcase .showcase-desc,
.fj-hscroll-panel .fj-product-showcase .fj-showcase-grid,
.fj-hscroll-panel .fj-product-showcase .fj-nav-cta,
.fj-hscroll-panel .fj-showcase-img-wrap {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fj-hscroll-panel.is-active .fj-product-showcase .showcase-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.fj-hscroll-panel.is-active .fj-product-showcase h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.fj-hscroll-panel.is-active .fj-product-showcase .showcase-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.fj-hscroll-panel.is-active .fj-product-showcase .fj-showcase-grid {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.fj-hscroll-panel.is-active .fj-product-showcase .fj-nav-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.fj-hscroll-panel.is-active .fj-showcase-img-wrap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* --- Bottom Controls Dark Mode --- */
.fj-hscroll-bottom-controls {
  position: relative;
  z-index: 12;
}

.fj-hscroll-swipe-hint {
  background: rgba(62, 182, 73, 0.08) !important;
  border: 1px solid rgba(62, 182, 73, 0.2) !important;
  color: #4ade80 !important;
}

.fj-hscroll-dot {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.35s cubic-bezier(.4, 0, .2, 1) !important;
}

.fj-hscroll-dot:hover {
  background: rgba(62, 182, 73, 0.3) !important;
}

.fj-hscroll-dot.is-active {
  background: linear-gradient(90deg, #3EB649, #00b894) !important;
  border-color: transparent !important;
  box-shadow: 0 2px 12px rgba(62, 182, 73, 0.4) !important;
}

/* --- Mobile panels dark mode --- */
@media (max-width: 991px) {
  .fj-hscroll-panel {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(62, 182, 73, 0.12) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25) !important;
  }

  .fj-product-showcase {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .fj-product-tabs-wrapper {
    position: relative;
    z-index: 12;
  }

  .fj-product-nav-tabs {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(62, 182, 73, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }

  .fj-product-tab-btn {
    color: var(--fj-green-dark) !important;
  }

  .fj-product-tab-btn i {
    color: rgba(62, 182, 73, 0.6) !important;
  }

  .fj-product-tab-btn.is-active {
    background: linear-gradient(135deg, #3EB649, #2d9e3a) !important;
    color: #fff !important;
  }

  .fj-product-tab-btn.is-active i {
    color: #fff !important;
  }

  /* Show all panel content on mobile (no entrance anim) */
  .fj-hscroll-panel .fj-product-showcase .showcase-label,
  .fj-hscroll-panel .fj-product-showcase h3,
  .fj-hscroll-panel .fj-product-showcase .showcase-desc,
  .fj-hscroll-panel .fj-product-showcase .fj-showcase-grid,
  .fj-hscroll-panel .fj-product-showcase .fj-nav-cta,
  .fj-hscroll-panel .fj-showcase-img-wrap {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   PER-PANEL UNIQUE BACKGROUND COLORS — Fujishka Brand Theme Alignment
   Alternating Pattern: First LIGHT, then DARK (Repeated: Light → Dark → Light → Dark → Light → Dark)
   ========================================================================== */

/* ── Panel 1: Cloud ERP — GLASSY LIGHT Mint-White Gradient ── */
.fj-hscroll-panel:nth-child(1) .fj-product-showcase {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 247, 234, 0.88) 50%, rgba(240, 253, 244, 0.95) 100%) !important;
  border: none !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 20px 50px rgba(62, 182, 73, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.fj-hscroll-panel:nth-child(1) .fj-product-showcase::before {
  background: radial-gradient(circle, rgba(62, 182, 73, 0.08) 0%, transparent 70%) !important;
}

.fj-hscroll-panel:nth-child(1) .fj-product-showcase h3 {
  color: #111827 !important;
  text-shadow: none !important;
}

.fj-hscroll-panel:nth-child(1) .fj-product-showcase .showcase-desc {
  color: #4b5563 !important;
}

.fj-hscroll-panel:nth-child(1) .fj-product-showcase .showcase-label {
  background: rgba(62, 182, 73, 0.1) !important;
  border-color: rgba(62, 182, 73, 0.25) !important;
  color: #27a33a !important;
}

.fj-hscroll-panel:nth-child(1) .fj-showcase-item {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(62, 182, 73, 0.18) !important;
}

.fj-hscroll-panel:nth-child(1) .fj-showcase-item:hover {
  background: #ffffff !important;
  border-color: #3EB649 !important;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.15) !important;
}

.fj-hscroll-panel:nth-child(1) .fj-showcase-item strong {
  color: #111827 !important;
}

.fj-hscroll-panel:nth-child(1) .fj-showcase-item .si-icon {
  background: rgba(62, 182, 73, 0.1) !important;
  border-color: rgba(62, 182, 73, 0.2) !important;
  color: #3EB649 !important;
}

.fj-hscroll-panel:nth-child(1) .fj-showcase-item:hover .si-icon {
  background: linear-gradient(135deg, #3EB649, #27a33a) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.fj-hscroll-panel:nth-child(1) .fj-showcase-img-wrap {
  background: #ffffff !important;
  border-color: rgba(62, 182, 73, 0.18) !important;
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.1) !important;
}

.fj-hscroll-panel:nth-child(1) .fj-showcase-img-wrap::before {
  background: linear-gradient(180deg, transparent 70%, rgba(232, 247, 234, 0.4) 100%) !important;
}

.fj-hscroll-panel:nth-child(1) .fj-showcase-img-wrap::after {
  border-color: rgba(62, 182, 73, 0.18) !important;
}

.fj-hscroll-panel:nth-child(1) .fj-product-showcase .fj-nav-cta {
  background: linear-gradient(135deg, #3EB649, #27a33a) !important;
  box-shadow: 0 4px 20px rgba(62, 182, 73, 0.3) !important;
}

/* ── Panel 2: Multi-Branch — DARK Brand Forest & Emerald ── */
.fj-hscroll-panel:nth-child(2) .fj-product-showcase {
  background: rgba(232, 247, 234, 0.88) !important;
  border-color: rgba(62, 182, 73, 0.25) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(62, 182, 73, 0.08) !important;
}

.fj-hscroll-panel:nth-child(2) .fj-product-showcase::before {
  background: radial-gradient(circle, rgba(62, 182, 73, 0.12) 0%, transparent 70%) !important;
}

.fj-hscroll-panel:nth-child(2) .fj-product-showcase h3 {
  color: #111827 !important;
}

.fj-hscroll-panel:nth-child(2) .fj-product-showcase .showcase-desc {
  color: #4b5563 !important;
}

.fj-hscroll-panel:nth-child(2) .fj-product-showcase .showcase-label {
  background: rgba(62, 182, 73, 0.12) !important;
  border-color: rgba(62, 182, 73, 0.3) !important;
  color: #53b748 !important;
}

.fj-hscroll-panel:nth-child(2) .fj-showcase-item {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(62, 182, 73, 0.2) !important;
}

.fj-hscroll-panel:nth-child(2) .fj-showcase-item strong {
  color: #111827 !important;
}

.fj-hscroll-panel:nth-child(2) .fj-showcase-item .si-icon {
  background: rgba(62, 182, 73, 0.12) !important;
  border-color: rgba(62, 182, 73, 0.2) !important;
  color: #53b748 !important;
}

.fj-hscroll-panel:nth-child(2) .fj-showcase-item:hover .si-icon {
  background: linear-gradient(135deg, #3EB649, #27a33a) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.fj-hscroll-panel:nth-child(2) .fj-product-showcase .fj-nav-cta {
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%) !important;
  box-shadow: 0 4px 20px rgba(62, 182, 73, 0.35) !important;
}

/* ── Panel 3: Van Sales — GLASSY LIGHT Emerald-Green Gradient ── */
.fj-hscroll-panel:nth-child(3) .fj-product-showcase {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(226, 248, 230, 0.88) 50%, rgba(238, 252, 240, 0.96) 100%) !important;
  border-color: rgba(62, 182, 73, 0.25) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 20px 50px rgba(62, 182, 73, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.fj-hscroll-panel:nth-child(3) .fj-product-showcase::before {
  background: radial-gradient(circle, rgba(62, 182, 73, 0.08) 0%, transparent 70%) !important;
}

.fj-hscroll-panel:nth-child(3) .fj-product-showcase h3 {
  color: #111827 !important;
  text-shadow: none !important;
}

.fj-hscroll-panel:nth-child(3) .fj-product-showcase .showcase-desc {
  color: #4b5563 !important;
}

.fj-hscroll-panel:nth-child(3) .fj-product-showcase .showcase-label {
  background: rgba(62, 182, 73, 0.1) !important;
  border-color: rgba(62, 182, 73, 0.25) !important;
  color: #27a33a !important;
}

.fj-hscroll-panel:nth-child(3) .fj-showcase-item {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(62, 182, 73, 0.18) !important;
}

.fj-hscroll-panel:nth-child(3) .fj-showcase-item:hover {
  background: #ffffff !important;
  border-color: #3EB649 !important;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.15) !important;
}

.fj-hscroll-panel:nth-child(3) .fj-showcase-item strong {
  color: #111827 !important;
}

.fj-hscroll-panel:nth-child(3) .fj-showcase-item .si-icon {
  background: rgba(62, 182, 73, 0.1) !important;
  border-color: rgba(62, 182, 73, 0.2) !important;
  color: #3EB649 !important;
}

.fj-hscroll-panel:nth-child(3) .fj-showcase-item:hover .si-icon {
  background: linear-gradient(135deg, #3EB649, #27a33a) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.fj-hscroll-panel:nth-child(3) .fj-showcase-img-wrap {
  background: #ffffff !important;
  border-color: rgba(62, 182, 73, 0.18) !important;
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.1) !important;
}

.fj-hscroll-panel:nth-child(3) .fj-showcase-img-wrap::before {
  background: linear-gradient(180deg, transparent 70%, rgba(226, 248, 230, 0.4) 100%) !important;
}

.fj-hscroll-panel:nth-child(3) .fj-showcase-img-wrap::after {
  border-color: rgba(62, 182, 73, 0.18) !important;
}

.fj-hscroll-panel:nth-child(3) .fj-product-showcase .fj-nav-cta {
  background: linear-gradient(135deg, #3EB649, #27a33a) !important;
  box-shadow: 0 4px 20px rgba(62, 182, 73, 0.3) !important;
}

/* ── Panel 4: Hybrid POS — DARK Brand Teal & Navy ── */
.fj-hscroll-panel:nth-child(4) .fj-product-showcase {
  background: rgba(232, 247, 234, 0.88) !important;
  border-color: rgba(0, 184, 148, 0.25) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 184, 148, 0.08) !important;
}

.fj-hscroll-panel:nth-child(4) .fj-product-showcase::before {
  background: radial-gradient(circle, rgba(0, 184, 148, 0.1) 0%, transparent 70%) !important;
}

.fj-hscroll-panel:nth-child(4) .fj-product-showcase h3 {
  color: #111827 !important;
}

.fj-hscroll-panel:nth-child(4) .fj-product-showcase .showcase-desc {
  color: #4b5563 !important;
}

.fj-hscroll-panel:nth-child(4) .fj-product-showcase .showcase-label {
  background: rgba(0, 184, 148, 0.12) !important;
  border-color: rgba(0, 184, 148, 0.3) !important;
  color: #00b894 !important;
}

.fj-hscroll-panel:nth-child(4) .fj-showcase-item {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(0, 184, 148, 0.2) !important;
}

.fj-hscroll-panel:nth-child(4) .fj-showcase-item strong {
  color: #111827 !important;
}

.fj-hscroll-panel:nth-child(4) .fj-showcase-item .si-icon {
  background: rgba(0, 184, 148, 0.12) !important;
  border-color: rgba(0, 184, 148, 0.2) !important;
  color: #00b894 !important;
}

.fj-hscroll-panel:nth-child(4) .fj-showcase-item:hover .si-icon {
  background: linear-gradient(135deg, #00b894, #00997b) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.fj-hscroll-panel:nth-child(4) .fj-product-showcase .fj-nav-cta {
  background: linear-gradient(135deg, #00b894, #008f73) !important;
  box-shadow: 0 4px 20px rgba(0, 184, 148, 0.35) !important;
}

/* ── Panel 5: Restaurant POS — GLASSY LIGHT Soft Sage & Pearl Glass ── */
.fj-hscroll-panel:nth-child(5) .fj-product-showcase {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(232, 246, 236, 0.88) 50%, rgba(241, 252, 243, 0.96) 100%) !important;
  border-color: rgba(62, 182, 73, 0.22) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 20px 50px rgba(62, 182, 73, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.fj-hscroll-panel:nth-child(5) .fj-product-showcase::before {
  background: radial-gradient(circle, rgba(62, 182, 73, 0.08) 0%, transparent 70%) !important;
}

.fj-hscroll-panel:nth-child(5) .fj-product-showcase h3 {
  color: #111827 !important;
  text-shadow: none !important;
}

.fj-hscroll-panel:nth-child(5) .fj-product-showcase .showcase-desc {
  color: #4b5563 !important;
}

.fj-hscroll-panel:nth-child(5) .fj-product-showcase .showcase-label {
  background: rgba(62, 182, 73, 0.1) !important;
  border-color: rgba(62, 182, 73, 0.25) !important;
  color: #27a33a !important;
}

.fj-hscroll-panel:nth-child(5) .fj-showcase-item {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(62, 182, 73, 0.18) !important;
}

.fj-hscroll-panel:nth-child(5) .fj-showcase-item:hover {
  background: #ffffff !important;
  border-color: #3EB649 !important;
  box-shadow: 0 8px 24px rgba(62, 182, 73, 0.15) !important;
}

.fj-hscroll-panel:nth-child(5) .fj-showcase-item strong {
  color: #111827 !important;
}

.fj-hscroll-panel:nth-child(5) .fj-showcase-item .si-icon {
  background: rgba(62, 182, 73, 0.1) !important;
  border-color: rgba(62, 182, 73, 0.2) !important;
  color: #3EB649 !important;
}

.fj-hscroll-panel:nth-child(5) .fj-showcase-item:hover .si-icon {
  background: linear-gradient(135deg, #3EB649, #27a33a) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.fj-hscroll-panel:nth-child(5) .fj-showcase-img-wrap {
  background: #ffffff !important;
  border-color: rgba(62, 182, 73, 0.18) !important;
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.1) !important;
}

.fj-hscroll-panel:nth-child(5) .fj-showcase-img-wrap::before {
  background: linear-gradient(180deg, transparent 70%, rgba(232, 246, 236, 0.4) 100%) !important;
}

.fj-hscroll-panel:nth-child(5) .fj-showcase-img-wrap::after {
  border-color: rgba(62, 182, 73, 0.18) !important;
}

.fj-hscroll-panel:nth-child(5) .fj-product-showcase .fj-nav-cta {
  background: linear-gradient(135deg, #3EB649, #27a33a) !important;
  box-shadow: 0 4px 20px rgba(62, 182, 73, 0.3) !important;
}

/* ── Panel 6: Production — DARK Brand Emerald & Deep Navy ── */
.fj-hscroll-panel:nth-child(6) .fj-product-showcase {
  background: rgba(232, 247, 234, 0.88) !important;
  border-color: rgba(62, 182, 73, 0.25) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(62, 182, 73, 0.08) !important;
}

.fj-hscroll-panel:nth-child(6) .fj-product-showcase::before {
  background: radial-gradient(circle, rgba(62, 182, 73, 0.1) 0%, transparent 70%) !important;
}

.fj-hscroll-panel:nth-child(6) .fj-product-showcase h3 {
  color: #111827 !important;
}

.fj-hscroll-panel:nth-child(6) .fj-product-showcase .showcase-desc {
  color: #4b5563 !important;
}

.fj-hscroll-panel:nth-child(6) .fj-product-showcase .showcase-label {
  background: rgba(62, 182, 73, 0.12) !important;
  border-color: rgba(62, 182, 73, 0.3) !important;
  color: #4ade80 !important;
}

.fj-hscroll-panel:nth-child(6) .fj-showcase-item {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(62, 182, 73, 0.2) !important;
}

.fj-hscroll-panel:nth-child(6) .fj-showcase-item strong {
  color: #111827 !important;
}

.fj-hscroll-panel:nth-child(6) .fj-showcase-item .si-icon {
  background: rgba(62, 182, 73, 0.12) !important;
  border-color: rgba(62, 182, 73, 0.2) !important;
  color: #4ade80 !important;
}

.fj-hscroll-panel:nth-child(6) .fj-showcase-item:hover .si-icon {
  background: linear-gradient(135deg, #3EB649, #27a33a) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.fj-hscroll-panel:nth-child(6) .fj-product-showcase .fj-nav-cta {
  background: linear-gradient(135deg, #3EB649, #27a33a) !important;
  box-shadow: 0 4px 20px rgba(62, 182, 73, 0.35) !important;
}

/* --- Mobile panel unique backgrounds (Fujishka Brand Theme - Light First) --- */
@media (max-width: 991px) {

  /* Glassy Light Panels */
  .fj-hscroll-panel:nth-child(1) {
    border-color: rgba(62, 182, 73, 0.22) !important;
    background: rgba(240, 253, 244, 0.94) !important;
  }

  .fj-hscroll-panel:nth-child(3) {
    border-color: rgba(62, 182, 73, 0.22) !important;
    background: rgba(235, 250, 238, 0.94) !important;
  }

  .fj-hscroll-panel:nth-child(5) {
    border-color: rgba(62, 182, 73, 0.22) !important;
    background: rgba(238, 252, 240, 0.94) !important;
  }

  /* Dark Brand Panels */
  .fj-hscroll-panel:nth-child(2) {
    border-color: rgba(62, 182, 73, 0.2) !important;
    background: rgba(232, 247, 234, 0.88) !important;
  }

  .fj-hscroll-panel:nth-child(4) {
    border-color: rgba(0, 184, 148, 0.2) !important;
    background: rgba(232, 247, 234, 0.88) !important;
  }

  .fj-hscroll-panel:nth-child(6) {
    border-color: rgba(62, 182, 73, 0.2) !important;
    background: rgba(232, 247, 234, 0.88) !important;
  }
}

/* --- One Sheet Type Override --- */
#products .fj-hscroll-panel .fj-showcase-img-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#products .fj-hscroll-panel .fj-showcase-img-wrap::before,
#products .fj-hscroll-panel .fj-showcase-img-wrap::after {
  display: none !important;
}


/* --- Overrides for Seamless "One Sheet" Look --- */
.fj-products {
  background: rgba(232, 247, 234, 0.88) !important;
}

.fj-hscroll-panel,
.fj-hscroll-panel:nth-child(1),
.fj-hscroll-panel:nth-child(2),
.fj-hscroll-panel:nth-child(3),
.fj-hscroll-panel:nth-child(4),
.fj-hscroll-panel:nth-child(5),
.fj-hscroll-panel:nth-child(6) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.fj-hscroll-panel .fj-product-showcase,
.fj-hscroll-panel:nth-child(1) .fj-product-showcase,
.fj-hscroll-panel:nth-child(2) .fj-product-showcase,
.fj-hscroll-panel:nth-child(3) .fj-product-showcase,
.fj-hscroll-panel:nth-child(4) .fj-product-showcase,
.fj-hscroll-panel:nth-child(5) .fj-product-showcase,
.fj-hscroll-panel:nth-child(6) .fj-product-showcase {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.fj-hscroll-panel .fj-product-showcase::before {
  display: none !important;
}

/* ===================== ENHANCED SAUDI HERO SECTION ===================== */
.fj-saudi-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 120px;
  background: #050f1f;
}

.fj-saudi-hero .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.fj-saudi-hero .orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(62, 182, 73, 0.22);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.fj-saudi-hero .orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(0, 184, 148, 0.16);
  bottom: -80px;
  right: 8%;
}

.hero-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(62, 182, 73, 0.25);
  border-radius: 20px;
  padding: 22px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.hero-feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(62, 182, 73, 0.6);
  box-shadow: 0 16px 40px rgba(62, 182, 73, 0.25);
}

.hero-feature-card .icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(62, 182, 73, 0.25) 0%, rgba(62, 182, 73, 0.08) 100%);
  border: 1px solid rgba(62, 182, 73, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ee77f;
  font-size: 20px;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

.hero-feature-card:hover .icon-box {
  background: linear-gradient(135deg, #3EB649 0%, #27a33a 100%);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(62, 182, 73, 0.4);
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #3EB649;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(62, 182, 73, 0.7);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(62, 182, 73, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(62, 182, 73, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(62, 182, 73, 0);
  }
}
