/* ===== HOME PAGE STYLES (index.html / indexEn.html) ===== */

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Hero icons - burst out from center then fade away */
@keyframes burstTopLeft {
  0% {
    opacity: 0;
    transform: translate(120%, 120%) scale(0.3);
  }
  15% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate(-20px, -20px) scale(1.05);
  }
  100% {
    opacity: 0;
    transform: translate(-50px, -50px) scale(0.6);
  }
}

@keyframes burstTopRight {
  0% {
    opacity: 0;
    transform: translate(-200%, 120%) scale(0.3);
  }
  15% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate(20px, -20px) scale(1.05);
  }
  100% {
    opacity: 0;
    transform: translate(50px, -50px) scale(0.6);
  }
}

@keyframes burstBottomLeft {
  0% {
    opacity: 0;
    transform: translate(0, -200%) scale(0.3);
  }
  15% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate(0, 20px) scale(1.05);
  }
  100% {
    opacity: 0;
    transform: translate(0, 50px) scale(0.6);
  }
}

@keyframes burstBottomRight {
  0% {
    opacity: 0;
    transform: translate(0, -200%) scale(0.3);
  }
  15% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate(0, 20px) scale(1.05);
  }
  100% {
    opacity: 0;
    transform: translate(0, 50px) scale(0.6);
  }
}

@keyframes slideUpFromBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Animation utility classes - initially hidden */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation-fill-mode: forwards;
}

.animate-on-scroll.animated.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.animated.fade-in-down {
  animation: fadeInDown 0.8s ease-out forwards;
}

.animate-on-scroll.animated.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.animated.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-on-scroll.animated.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-on-scroll.animated.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

/* Animation delays */
.delay-1 {
  animation-delay: 0.1s !important;
}

.delay-2 {
  animation-delay: 0.2s !important;
}

.delay-3 {
  animation-delay: 0.3s !important;
}

.delay-4 {
  animation-delay: 0.4s !important;
}

.delay-5 {
  animation-delay: 0.5s !important;
}

.delay-6 {
  animation-delay: 0.6s !important;
}

/* ===== HERO SECTION ===== */
.circle-hero{
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%, rgba(191, 231, 208, 0.479) 0%, rgba(191, 231, 208, 0.384) 30%, rgba(191, 231, 208, 0.05) 60%, transparent 80%);
  transform: translate(20%, -20%);
  pointer-events: none;
}
.bg-hero{
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  left: 15%;
}
.hero-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  min-height: var(--section-min-height);
}

.hero-section>* {
  position: relative;
  z-index: 1;
}

.hero-content {
  min-height: 90vh;
  z-index: 10;
}

.hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding-top: 3rem;
}

.image-hero {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: slideUpFromBottom 1s ease-out 0.5s forwards;
}

.image-hero::after {
  height: 100%;
  width: 100%;
  backdrop-filter: blur(400px);
}
@keyframes heroShadowSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.hero-shadow-img{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 3840 / 2786;
  z-index: -1;
  background: radial-gradient(ellipse 150% 50% at 50% 50%, rgba(163, 214, 182, 0.877) 0%, rgba(163, 214, 182, 0.849) 25%, rgba(163, 214, 182, 0.363) 45%, transparent 100%);
  pointer-events: none;
  overflow: hidden;
}
.hero-shadow-img::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  animation: heroShadowSweep 6s ease-in-out infinite;
}
.icons-hero {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 20%;
}

.hero-1 {
  top: 0;
  left: 0;
  opacity: 0;
  animation: burstTopLeft 4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-2 {
  top: 0;
  right: 0;
  opacity: 0;
  animation: burstTopRight 4s cubic-bezier(0.22, 1, 0.36, 1) 1s infinite;
}

.hero-3 {
  bottom: 0;
  left: 15%;
  opacity: 0;
  animation: burstBottomLeft 4s cubic-bezier(0.22, 1, 0.36, 1) 2s infinite;
}

.hero-4 {
  bottom: 0;
  right: 15%;
  opacity: 0;
  animation: burstBottomRight 4s cubic-bezier(0.22, 1, 0.36, 1) 3s infinite;
}

@media (min-width: 1200px) {
  .hero-3 {
    left: 6rem;
  }

  .hero-4 {
    right: 6rem;
  }
}

@media (max-width: 768px) {

  .hero-1,
  .hero-2,
  .hero-3,
  .hero-4 {
    animation-duration: 3s;
  }

  .hero-1 {
    left: unset;
    right: 100% !important;
  }

  .hero-2 {
    left: 100%;
  }


  .hero-3 {
    left: 0% !important;
  }

  .hero-4 {
    right: 0% !important;
  }

  .hero-shadow-img {
    aspect-ratio: auto;
    height: 80%;
  }
}

@media (max-width: 480px) {
  .hero-3 {
    left: 5%;
  }

  .hero-4 {
    right: 5%;
  }

  .hero-1 {
    animation: burstTopLeft 3.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }
  .hero-2 {
    animation: burstTopRight 3.5s cubic-bezier(0.22, 1, 0.36, 1) 0.8s infinite;
  }
  .hero-3 {
    animation: burstBottomLeft 3.5s cubic-bezier(0.22, 1, 0.36, 1) 1.6s infinite;
  }
  .hero-4 {
    animation: burstBottomRight 3.5s cubic-bezier(0.22, 1, 0.36, 1) 2.4s infinite;
  }
}

.hero-section-img-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-section-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin-bottom: -1.5rem;
}

.hero-title {
  font-family: "MadaniArabic-SemiBold";
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  color: var(--text-dark);
  margin: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.typewriter {
  display: inline;
}

.typewriter .cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background-color: var(--bs-primary);
  margin-inline-start: 4px;
  vertical-align: text-bottom;
  animation: blinkCursor 0.6s step-end infinite;
}

.typewriter .cursor.hidden {
  display: none;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


.hero-title .brand-letters {
  color: var(--bs-primary);
  font-family: "MadaniArabic-SemiBold";
  font-size: clamp(28px, 6vw, 70px);
  font-weight: 400;
  letter-spacing: -0.7px;
  display: block;
  white-space: nowrap;
}

/* Letter animation (shared) */
.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) scale(0.5) rotateX(90deg);
  filter: blur(8px);
  animation: letterReveal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.letter:nth-child(1) { animation-delay: 0.8s; }
.letter:nth-child(2) { animation-delay: 0.9s; }
.letter:nth-child(3) { animation-delay: 1.0s; }
.letter:nth-child(4) { animation-delay: 1.1s; }
.letter:nth-child(5) { animation-delay: 1.2s; }
.letter:nth-child(6) { animation-delay: 1.3s; }

@keyframes letterReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.5) rotateX(90deg);
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    filter: blur(2px);
  }
  75% {
    transform: translateY(-8px) scale(1.1) rotateX(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
  }
}

.letter.revealed {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
  filter: blur(0);
  animation: letterWave 4s ease-in-out infinite;
}

.letter.revealed:nth-child(1) { animation-delay: 0s; }
.letter.revealed:nth-child(2) { animation-delay: 0.15s; }
.letter.revealed:nth-child(3) { animation-delay: 0.3s; }
.letter.revealed:nth-child(4) { animation-delay: 0.45s; }
.letter.revealed:nth-child(5) { animation-delay: 0.6s; }
.letter.revealed:nth-child(6) { animation-delay: 0.75s; }

@keyframes letterWave {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    text-shadow: 0 0 0 transparent;
  }
  15% {
    transform: translateY(-12px) scale(1.12) rotate(-2deg);
    text-shadow: 0 8px 20px rgba(36, 162, 89, 0.3);
  }
  30% {
    transform: translateY(0) scale(1) rotate(0deg);
    text-shadow: 0 0 0 transparent;
  }
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
    text-shadow: 0 0 0 transparent;
  }
}

.hero-subtitle {
  font-family: "MadaniArabic-Regular";
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  color: var(--text-gray);
  max-width: 90%;
  padding: 0 1rem;
  opacity: 0;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-section .btn-primary {
  padding: 8px 16px;
  opacity: 0;
  animation: btnReveal 0.8s ease-out 1.5s forwards;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes btnReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  80% {
    transform: translateY(-4px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Shine sweep on idle */
.hero-section .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: btnShine 4s ease-in-out 3s infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

.hero-section .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(36, 162, 89, 0.35);
}

.hero-section .btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(36, 162, 89, 0.2);
}

/* ===== SECTION PROFITS ===== */
.section-profits {
  min-height: var(--section-min-height);
  padding: 4rem 0;
  background: url('../images/section-2-bg.webp') no-repeat center center;
  background-size: contain;
  display: flex;
  align-items: center;
}

.section-profits-title {
  font-family: MadaniArabic-SemiBold;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 170%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #414141;
  margin-bottom: 4rem;
  font-weight: 400;
  font-style: Regular;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-profits.animated .section-profits-title {
  opacity: 1;
  transform: translateY(0);
}

.brand-letters-inline {
  color: var(--bs-primary);
  white-space: nowrap;
}

.section-profits-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 55%;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.section-profits.animated .section-profits-content {
  opacity: 1;
  transform: translateX(0);
}

.section-profits-text {
  font-family: "MadaniArabic-Regular";
  font-size: clamp(24px, 3vw, 35px);
  line-height: 2;
  color: var(--text-dark);
  margin-bottom: 0;
}

.section-profits-text span {
  color: var(--bs-primary);
  font-family: "MadaniArabic-SemiBold";
}

.section-profits-subtitle {
  font-family: "MadaniArabic-Regular";
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 25px);
  line-height: 60px;
  color: var(--text-gray);
  text-align: right !important;
  margin-bottom: 0;
  align-self: start;
}

.section-profits-flow {
  font-family: "MadaniArabic-Medium";
  font-size: clamp(18px, 2vw, 20px);
  line-height: 60px;
  color: var(--text-gray);
  text-align: right;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.section-profits-flow .green {
  color: var(--bs-primary);
}

.section-profits-flow>.fun-item {
  font-family: "MadaniArabic-Medium";
  font-size: clamp(18px, 2vw, 23px);
  line-height: 50px;
  color: var(--text-gray);
  text-align: right;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  border-radius: 14px;
  background: var(--primary-colors-10, rgba(233, 246, 238, 1));
}

.fun-item:last-child {
  background: var(--Colors-Primary-600---P);
  color: #fff;
}

/* Flow animation - hidden by default */
.section-profits-flow > span,
.section-profits-flow > .fun-item {
  opacity: 0;
  transform: translateX(30px);
}

.section-profits-flow > span > img {
  opacity: 0;
  transform: scaleX(0);
}

/* Staggered entrance — repeating loop
   Total cycle: 7s
   - 0%-25%: staggered slide in (items appear one by one)
   - 25%-75%: all visible (green item pulses)
   - 75%-85%: all fade out together
   - 85%-100%: pause before restart
*/
.section-profits.animated .section-profits-flow > :nth-child(1) {
  animation: flowItem1 7s ease infinite;
}

.section-profits.animated .section-profits-flow > :nth-child(2) {
  animation: flowItem2 7s ease infinite;
}

.section-profits.animated .section-profits-flow > :nth-child(2) img {
  animation: flowArrow1 7s ease infinite;
}

.section-profits.animated .section-profits-flow > :nth-child(3) {
  animation: flowItem3 7s ease infinite;
}

.section-profits.animated .section-profits-flow > :nth-child(4) {
  animation: flowItem4 7s ease infinite;
}

.section-profits.animated .section-profits-flow > :nth-child(4) img {
  animation: flowArrow2 7s ease infinite;
}

.section-profits.animated .section-profits-flow > :nth-child(5) {
  animation: flowItem5 7s ease infinite;
}

/* Item 1: appears at 0% */
@keyframes flowItem1 {
  0% { opacity: 0; transform: translateX(30px); }
  5% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  82%, 100% { opacity: 0; transform: translateX(0); }
}

/* Arrow 1: appears at 7% */
@keyframes flowArrow1 {
  0%, 7% { opacity: 0; transform: scaleX(0); }
  13% { opacity: 1; transform: scaleX(1); }
  75% { opacity: 1; transform: scaleX(1); }
  82%, 100% { opacity: 0; transform: scaleX(0); }
}

/* Item 2: wrapper appears at 7% */
@keyframes flowItem2 {
  0%, 7% { opacity: 0; transform: translateX(30px); }
  13% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  82%, 100% { opacity: 0; transform: translateX(0); }
}

/* Item 3: appears at 14% */
@keyframes flowItem3 {
  0%, 14% { opacity: 0; transform: translateX(30px); }
  20% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  82%, 100% { opacity: 0; transform: translateX(0); }
}

/* Arrow 2: appears at 14% */
@keyframes flowArrow2 {
  0%, 14% { opacity: 0; transform: scaleX(0); }
  20% { opacity: 1; transform: scaleX(1); }
  75% { opacity: 1; transform: scaleX(1); }
  82%, 100% { opacity: 0; transform: scaleX(0); }
}

/* Item 4: wrapper appears at 14% */
@keyframes flowItem4 {
  0%, 14% { opacity: 0; transform: translateX(30px); }
  20% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  82%, 100% { opacity: 0; transform: translateX(0); }
}

/* Item 5 (green): appears at 21%, pulses while visible */
@keyframes flowItem5 {
  0%, 21% { opacity: 0; transform: translateX(30px) scale(1); box-shadow: 0 0 0 0 rgba(36, 162, 89, 0); }
  27% { opacity: 1; transform: translateX(0) scale(1); }
  40% { transform: translateX(0) scale(1.05); box-shadow: 0 0 0 8px rgba(36, 162, 89, 0); }
  50% { transform: translateX(0) scale(1); box-shadow: 0 0 0 0 rgba(36, 162, 89, 0.3); }
  60% { transform: translateX(0) scale(1.05); box-shadow: 0 0 0 8px rgba(36, 162, 89, 0); }
  70% { opacity: 1; transform: translateX(0) scale(1); box-shadow: 0 0 0 0 rgba(36, 162, 89, 0); }
  82%, 100% { opacity: 0; transform: translateX(0) scale(1); }
}

.section-profits-img {
  text-align: end;
  opacity: 0;
  width: 45%;
  transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

.section-profits.animated .section-profits-img {
  opacity: 1;
  transform: translateX(0);
}

@keyframes profitsImgFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
.section-profits-img img {
  max-width: 100%;
  height: auto;
}
.section-profits.animated .section-profits-img img {
  animation: profitsImgFloat 4s ease-in-out infinite;
}

/* ===== STICKY SCROLL SECTION ===== */
.sticky-scroll-section {
  height: 400vh;
  position: relative;
  background: var(--primary-colors-10, rgba(233, 246, 238, 1));
  padding-top: 4rem;
  padding-bottom: 4rem;

}

.sticky-scroll-container {
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sticky-scroll-row {
  min-height: 70vh;
}

.sticky-scroll-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  min-height: calc(100vh - 60px);
}

.sticky-scroll-brand {
  font-family: "MadaniArabic-SemiBold";
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--bs-primary);
  margin-bottom: 0.25rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sticky-scroll-section.animated .sticky-scroll-brand {
  opacity: 1;
  transform: translateY(0);
}

.sticky-scroll-subtitle {
  font-family: "MadaniArabic-SemiBold";
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(1rem);
  margin-bottom: 2rem;
  transition: opacity 0.6s ease-out 0.1s, transform 0.6s ease-out 0.1s;
}

.sticky-scroll-section.animated .sticky-scroll-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.sticky-scroll-description {
  font-family: "MadaniArabic-Regular";
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-gray-60);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 80%;
}

.sticky-scroll-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sticky-scroll-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #c0c0c0;
  transition: color 0.4s ease;
}

.sticky-scroll-feature.active,
.sticky-scroll-feature.active>* {
  color: var(--bs-primary) !important;
}

.sticky-scroll-feature-text {
  transition: color 0.4s ease, font-weight 0.4s ease;
  font-family: MadaniArabic-Light;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(1rem, 1.3vw, 1.5rem);
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: -1%;
  color: var(--gray-80, rgba(103, 103, 103, 1));



}

.sticky-scroll-feature.active .sticky-scroll-feature-text {
  color: var(--text-dark);
  font-weight: 600;
}

.sticky-scroll-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sticky-scroll-check svg circle,
.sticky-scroll-check svg path {
  transition: fill 0.4s ease, stroke 0.4s ease;
}

.sticky-scroll-feature.active .sticky-scroll-check svg circle {
  fill: var(--bs-primary);
  stroke: var(--bs-primary);
}

.sticky-scroll-feature.active .sticky-scroll-check svg path {
  stroke: #fff;
}

.sticky-scroll-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-scroll-image-wrapper {
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: inherit;
}

.sticky-scroll-image-viewport {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
  border-radius: 1.5rem;
}

.sticky-scroll-long-image {
  width: 100%;
  display: block;
  transition: transform 0.15s ease-out;
}

/* ===== BUSINESS TYPES SECTION ===== */
.business-types-section {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
  min-height: var(--section-min-height);
  display: flex;
  align-items: center;
}


.contan-svg {
  position: absolute;
  width: 116%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  bottom: -14.3rem;
  left: -8%;
  padding: 0px 7%;
  rotate: -7deg;
}

@keyframes contanDashFlow {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -300; }
}
.contan-svg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contan-svg svg path {
  stroke-dasharray: 120 180;
  opacity: 0.55;
  animation: contanDashFlow 4s linear infinite;
}

.swirl-decoration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.swirl-left {
  left: -2rem;
}

.swirl-right {
  right: -2rem;
}

.business-types-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.business-types-title {
  font-family: MadaniArabic-SemiBold;
  font-weight: 400;
  font-style: Regular;
  font-size: 50px;
  leading-trim: NONE;
  line-height: 170%;
  letter-spacing: -1%;
  color: var(--gray-100, rgba(65, 65, 65, 1));
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.business-types-section.animated .business-types-title {
  opacity: 1;
  transform: translateY(0);
}

.business-types-title span {
  color: var(--bs-primary);
}

.business-types-subtitle {
  font-family: MadaniArabic-Regular;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  line-height: 50px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--gray-60, rgba(141, 141, 141, 1));
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 2rem;
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.business-types-section.animated .business-types-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.business-types-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: 100%;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.blob-card {
  text-align: center;
  flex: 1 1 500px;
  width: 500px;
  min-width: 400px;
  max-width: 500px;
  min-height: 361px;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 50px 40px;
  border-radius: 120px;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.6s ease-out, padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.business-types-section.animated .blob-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  padding-top: 5rem;
}

.business-types-section.animated .blob-card:nth-child(1) {
  transition-delay: 0s;
}

.business-types-section.animated .blob-card:nth-child(2) {
  transition-delay: 0s;
}

.business-types-section.animated .blob-card:nth-child(3) {
  transition-delay: 0s;
}

.blob-card:hover {
  transform: translateY(-5px);
  padding-top: 40px;
}

.blob-card-green:hover {
  border-color: rgba(120, 190, 150, 1);
  border-radius: 60% 40% 45% 55% / 50% 60% 40% 50%;
}

.blob-card-yellow:hover {
  border-color: rgba(200, 195, 100, 1);
  border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
}

.blob-card-blue:hover {
  border-color: rgba(120, 175, 220, 1);
  border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
}

/* On hover: icon moves to center, scales up, goes behind text */
.blob-card:hover .blob-card-icon {
  top: 50%;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(2.2) !important;
  opacity: 0.06;
  background-color: transparent;
  border: none;
  box-shadow: none;
  z-index: 0;
}

.blob-card:hover .blob-card-icon img {
  width: 80px;
}

.blob-card-green {
  background: rgba(211, 236, 222, 1);
}

.blob-card-yellow {
  background: rgba(243, 246, 221, 1);
}

.blob-card-blue {
  background: rgba(205, 227, 245, 1);
}

.blob-card-icon {
  position: absolute !important;
  top: -50px;
  left: 50%!important;
  transform: translateX(-50%)!important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background-color: white;
  box-shadow: -20px 0px 70px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(236, 236, 236, 1);
  border-radius: 200px;
  opacity: 1;
  z-index: 2;
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease,
              background-color 0.5s ease,
              border 0.5s ease,
              box-shadow 0.5s ease;
}

.blob-card-icon img {
  width: 50px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-card-title {
  font-family: MadaniArabic-Medium;
  font-weight: 400;
  font-style: Regular;
  font-size: 28px;
  leading-trim: NONE;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: right;
  text-transform: capitalize;
  color: rgba(34, 48, 62, 1);
  margin: 0;
  position: relative;
  z-index: 1;
}

.blob-card-desc {
  font-family: MadaniArabic-Regular;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 0;
  color: var(--Colors-Secondary-Alpha-50, rgba(34, 48, 62, 0.5));
  position: relative;
  z-index: 1;
}

/* ===== DELIVERY TYPES SECTION ===== */
.delivery-types-section {
  background: var(--primary-colors-5, rgba(244, 250, 247, 1));
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.delivery-types-wrapper {
  width: 70%;
  text-align: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.delivery-types-section.animated .delivery-types-wrapper {
  opacity: 1;
  transform: scale(1);
}

.delivery-types-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* ===== DELIVERY NETWORK LAYOUT ===== */
.delivery-network {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 600px;
  margin: 0 auto;
  overflow: visible;
}

/* Center Content Box */
.delivery-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  text-align: center;
  width: 830px;
  max-width: 90%;
  padding: 40px;
  border-radius: 20px;
  background: rgba(244, 250, 247, 1);
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

/* Gradient border using pseudo-element */
.delivery-center::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(90deg, rgba(167, 218, 189, 1) 8%, #F4FAF7 9.57%, #F4FAF7 52.88%, #F4FAF7 88.98%, rgba(167, 218, 189, 1) 95.48%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.delivery-types-section.animated .delivery-center {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.delivery-title {
  font-family: MadaniArabic-SemiBold;
  font-weight: 400;
  font-style: Regular;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 170%;
  letter-spacing: -1%;
  text-align: center;
  color: var(--gray-100, rgba(65, 65, 65, 1));
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

.delivery-types-section.animated .delivery-title {
  opacity: 1;
  transform: translateY(0);
}

.delivery-subtitle {
  font-family: MadaniArabic-Regular;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 50px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--gray-60, rgba(141, 141, 141, 1));
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
}

.delivery-types-section.animated .delivery-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* Delivery Logo Animation Keyframes */
@keyframes flyFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px) scale(0.6);
  }
  70% {
    opacity: 1;
    transform: translateX(8px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes flyFromRight {
  0% {
    opacity: 0;
    transform: translateX(80px) scale(0.6);
  }
  70% {
    opacity: 1;
    transform: translateX(-8px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes logoPulse {
  0%, 100% {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  }
  50% {
    box-shadow: 0 4px 20px rgba(36, 162, 89, 0.25), 0 0 0 6px rgba(36, 162, 89, 0.08);
  }
}

@keyframes logoBob {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.04);
  }
}

@keyframes lineFlow {
  0% {
    stroke-dashoffset: 400;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes lineFlowShort {
  0% {
    stroke-dashoffset: 200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Logo Circles */
.delivery-logo {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: scale(0);
}

.delivery-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Mobile lines - hidden on desktop */
.mobile-line {
  display: none;
}

/* Hover effects for logos */
/* Hover rotation - Left side (clockwise) */
.delivery-types-section.animated .logo-top-left:hover,
.delivery-types-section.animated .logo-bottom-left:hover {
  transform: scale(1.3) rotate(10deg);
  box-shadow: 0 8px 30px rgba(36, 162, 89, 0.25);
  cursor: pointer;
}

/* Hover rotation - Right side (counter-clockwise) */
.delivery-types-section.animated .logo-top-right:hover,
.delivery-types-section.animated .logo-bottom-right:hover {
  transform: scale(1.3) rotate(-10deg);
  box-shadow: 0 8px 30px rgba(36, 162, 89, 0.25);
  cursor: pointer;
}

.delivery-types-section.animated .delivery-logo:hover img {
  transform: scale(1.1);
}

/* Continuous animations on logos after entrance */
.delivery-types-section.animated .logo-top-left {
  animation: flyFromLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards,
             logoBob 3.5s ease-in-out 2s infinite,
             logoPulse 4s ease-in-out 2.5s infinite;
}
.delivery-types-section.animated .logo-mid-left {
  animation: flyFromLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards,
             logoBob 4s ease-in-out 2.3s infinite,
             logoPulse 5s ease-in-out 3s infinite;
}
.delivery-types-section.animated .logo-bottom-left {
  animation: flyFromLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards,
             logoBob 3.8s ease-in-out 2.6s infinite,
             logoPulse 4.5s ease-in-out 2.8s infinite;
}
.delivery-types-section.animated .logo-top-right {
  animation: flyFromRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards,
             logoBob 4.2s ease-in-out 2.1s infinite,
             logoPulse 3.8s ease-in-out 2.4s infinite;
}
.delivery-types-section.animated .logo-mid-right {
  animation: flyFromRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards,
             logoBob 3.6s ease-in-out 2.4s infinite,
             logoPulse 4.8s ease-in-out 3.2s infinite;
}
.delivery-types-section.animated .logo-bottom-right {
  animation: flyFromRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards,
             logoBob 4.5s ease-in-out 2.8s infinite,
             logoPulse 4.2s ease-in-out 2.6s infinite;
}

/* Hover effect for center box */
.delivery-center:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.delivery-center:hover::before {
  background: linear-gradient(90deg, #24A45A 0%, #F4FAF7 20%, #F4FAF7 80%, #24A45A 100%);
  transition: background 0.4s ease;
}

.delivery-types-section.animated .delivery-logo {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Fly-in animations now combined with logoBob/logoPulse above */

/* Logo Positions - Left Side */
.logo-top-left {
  top: 0%;
  left: 8%;
  transition-delay: 0.1s;
}

.logo-mid-left {
  top: 50%;
  left: 2%;
  transform: translateY(-50%) !important;
  transition-delay: 0.2s;
}

.delivery-types-section.animated .logo-mid-left {
  transform: translateY(-50%) scale(1);
}

.delivery-types-section.animated .logo-mid-left:hover {
  transform: translateY(-50%) scale(1.3) rotate(10deg);
}

.logo-bottom-left {
  bottom: 0%;
  left: 8%;
  transition-delay: 0.3s;
}

/* Logo Positions - Right Side */
.logo-top-right {
  top: 0%;
  right: 8%;
  transition-delay: 0.1s;
}

.logo-mid-right {
  top: 50%;
  right: 2%;
  transform: translateY(-50%) !important;
  transition-delay: 0.2s;
}

.delivery-types-section.animated .logo-mid-right {
  transform: translateY(-50%) scale(1);
}

.delivery-types-section.animated .logo-mid-right:hover {
  transform: translateY(-50%) scale(1.3) rotate(-10deg);
}

.logo-bottom-right {
  bottom: 0%;
  right: 8%;
  transition-delay: 0.3s;
}

/* SVG Connecting Lines - Individual positioned divs */
.delivery-line {
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 1;
}

.delivery-line svg {
  display: block;
}

/* Static base line */
.delivery-line svg path.line-base {
  stroke: #A7DABD;
  stroke-width: 2;
}

/* Traveling dots - base style */
.delivery-line svg path.line-dot {
  stroke: var(--bs-primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 8 392;
  stroke-dashoffset: 400;
  opacity: 0.7;
}

/* Second dot - smaller, faster */
.delivery-line svg path.line-dot-2 {
  stroke: var(--bs-primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 5 395;
  stroke-dashoffset: 400;
  opacity: 0.4;
}

/* Third dot - even smaller */
.delivery-line svg path.line-dot-3 {
  stroke: var(--bs-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 394;
  stroke-dashoffset: 400;
  opacity: 0.25;
}

.delivery-types-section.animated .delivery-line svg path.line-dot {
  animation: lineFlow 3s ease-in-out infinite;
}

.delivery-types-section.animated .delivery-line svg path.line-dot-2 {
  animation: lineFlow 2.2s linear infinite;
}

.delivery-types-section.animated .delivery-line svg path.line-dot-3 {
  animation: lineFlow 4s ease-in infinite;
}

/* Shorter lines (line-2, line-5) */
.delivery-line.line-2 svg path.line-dot,
.delivery-line.line-5 svg path.line-dot {
  stroke-dasharray: 8 192;
  stroke-dashoffset: 200;
}
.delivery-line.line-2 svg path.line-dot-2,
.delivery-line.line-5 svg path.line-dot-2 {
  stroke-dasharray: 5 195;
  stroke-dashoffset: 200;
}
.delivery-line.line-2 svg path.line-dot-3,
.delivery-line.line-5 svg path.line-dot-3 {
  stroke-dasharray: 6 194;
  stroke-dashoffset: 200;
}

.delivery-types-section.animated .delivery-line.line-2 svg path.line-dot,
.delivery-types-section.animated .delivery-line.line-5 svg path.line-dot {
  animation: lineFlowShort 2s ease-in-out infinite reverse;
}
.delivery-types-section.animated .delivery-line.line-2 svg path.line-dot-2,
.delivery-types-section.animated .delivery-line.line-5 svg path.line-dot-2 {
  animation: lineFlowShort 1.5s linear infinite reverse;
}
.delivery-types-section.animated .delivery-line.line-2 svg path.line-dot-3,
.delivery-types-section.animated .delivery-line.line-5 svg path.line-dot-3 {
  animation: lineFlowShort 2.8s ease-in infinite reverse;
}

/* Line 1: Top-left (Aramex) - connects logo to center */
.delivery-line.line-1 {
  top: 60px;
  left: calc(8% + 120px);
  transition-delay: 0.3s;
}

.delivery-line.line-1 svg path.line-dot { animation-delay: 0s; }
.delivery-line.line-1 svg path.line-dot-2 { animation-delay: 1s; }
.delivery-line.line-1 svg path.line-dot-3 { animation-delay: 1.8s; }

/* Line 2: Mid-left (SPL) - horizontal line */
.delivery-line.line-2 {
  top: 50%;
  left: calc(2% + 120px);
  transform: translateY(-50%);
}

.delivery-line.line-2 svg path.line-dot { animation-delay: 0.3s; }
.delivery-line.line-2 svg path.line-dot-2 { animation-delay: 0.9s; }
.delivery-line.line-2 svg path.line-dot-3 { animation-delay: 1.5s; }

/* Line 3: Bottom-left (DHL) - connects logo to center */
.delivery-line.line-3 {
  bottom: 60px;
  left: calc(8% + 120px);
}

.delivery-line.line-3 svg path.line-dot { animation-delay: 0.5s; }
.delivery-line.line-3 svg path.line-dot-2 { animation-delay: 1.3s; }
.delivery-line.line-3 svg path.line-dot-3 { animation-delay: 2.2s; }

/* Line 4: Top-right (SMSA) - connects logo to center */
.delivery-line.line-4 {
  top: 60px;
  right: calc(8% + 120px);
}

.delivery-line.line-4 svg path.line-dot { animation-delay: 0.2s; }
.delivery-line.line-4 svg path.line-dot-2 { animation-delay: 1.1s; }
.delivery-line.line-4 svg path.line-dot-3 { animation-delay: 2s; }

/* Line 5: Mid-right (Salla) - horizontal line */
.delivery-line.line-5 {
  top: 50%;
  right: calc(2% + 120px);
  transform: translateY(-50%);
}

.delivery-line.line-5 svg path.line-dot { animation-delay: 0.1s; }
.delivery-line.line-5 svg path.line-dot-2 { animation-delay: 0.7s; }
.delivery-line.line-5 svg path.line-dot-3 { animation-delay: 1.4s; }

/* Line 6: Bottom-right (Zid) - connects logo to center */
.delivery-line.line-6 {
  bottom: 60px;
  right: calc(8% + 120px);
}

.delivery-line.line-6 svg path.line-dot { animation-delay: 0.4s; }
.delivery-line.line-6 svg path.line-dot-2 { animation-delay: 1.2s; }
.delivery-line.line-6 svg path.line-dot-3 { animation-delay: 2.4s; }



/* ===== SMART SCAN SECTION ===== */
.smart-scan-section {
  min-height: var(--section-min-height);
  padding: 4rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.smart-scan-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 2rem;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.smart-scan-text {
  flex: 1;
  padding: 3rem 3rem 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  gap: 1.5rem;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.smart-scan-section.animated .smart-scan-text {
  opacity: 1;
  transform: translateX(0);
}

.smart-scan-title {
  font-family: "MadaniArabic-Medium";
  font-size: 35px;
  font-weight: 400;
  line-height: 60px;
  color: rgba(65, 65, 65, 1);
  margin-bottom: 1rem;
}

.smart-scan-desc {
  font-family: "MadaniArabic-Regular";
  font-size: 25px;
  font-weight: 400;
  line-height: 60px;
  color: rgba(103, 103, 103, 1);
  margin-bottom: 0;
}

.smart-scan-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  background: rgba(36, 162, 89, 1);
  color: rgba(255, 255, 255, 1);
  font-family: MadaniArabic-Regular;
  font-size: 20px;
  font-weight: 400;
  border: none;
  transition: opacity 0.3s ease;
}

.smart-scan-btn:hover {
  opacity: 0.9;
  color: #fff;
}

.smart-scan-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 400px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.smart-scan-section.animated .smart-scan-image {
  opacity: 1;
  transform: translateX(0);
}

.smart-scan-image img {
  width: 85%;
  margin: auto;
  height: 100%;
  object-fit: contain;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 4rem 0;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.testimonials-container {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.testimonials-title {
  font-family: "MadaniArabic-SemiBold";
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.testimonials-section.animated .testimonials-title {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-cards {
  overflow: hidden;
  position: relative;
  padding: 2rem 3rem;
  cursor: grab;
  user-select: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.testimonials-section.animated .testimonials-cards {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-cards:active,
.testimonials-cards.dragging {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 500px;
  width: 500px;
  min-width: 500px;
  background: var(--Colors-Neutral-100---W, rgba(255, 255, 255, 1));
  padding: 2rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(218, 240, 227, 1);
  box-shadow: 0px 0px 50px -16.76px #0E1D2E1A;
  backdrop-filter: blur(42.2px);
  border-radius: 1.2rem;
  transition: box-shadow 0.2s ease;
  justify-content: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bg-light-green {
  background: #02764894;
}

.bg-light-orange {
  background: #EFE2F5
}

.bg-light-blue {
  background: rgb(255, 255, 255);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: "Madani Arabic", "IBM Plex Sans Arabic", sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
  color: rgba(34, 48, 62, 1);
  align-content: center;
}

.testimonial-text {
  font-family: "Madani Arabic", "IBM Plex Sans Arabic", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: rgba(34, 48, 62, 1);
  margin-bottom: 0;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--bs-primary);
  background: transparent;
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.testimonial-nav-btn:hover {
  background: var(--bs-primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(36, 162, 89, 0.3);
}

.testimonial-nav-btn:hover svg path {
  fill: #fff;
}

.testimonial-nav-btn:focus-visible {
  background: var(--bs-primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(36, 162, 89, 0.3), 0 4px 12px rgba(36, 162, 89, 0.2);
  transform: scale(1.05);
}

.testimonial-nav-btn:focus-visible svg path {
  fill: #fff;
}

.testimonial-nav-btn:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(36, 162, 89, 0.2);
}

.testimonial-nav-btn-active {
  background: var(--bs-primary);
  color: #fff;
}

.testimonial-nav-btn-active svg path {
  fill: #fff;
}

/* Inactive button - green icon on transparent bg */
.testimonial-nav-btn:not(.testimonial-nav-btn-active) svg path {
  fill: var(--bs-primary);
}

/* Active button - white icon on green bg */
.testimonial-nav-btn.testimonial-nav-btn-active svg path {
  fill: #fff;
}

/* ===== FAQ SECTION ===== */
.fag-bg-section {
  background-image: url(../images/fag-bg.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.section-14 {
  gap: 4.375rem;
}

.faq {
  margin: 4rem 0;
}

.fag-item {
  padding: 1.25rem 1.375rem;
  border-radius: 1rem;
  border: 0.688px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fag-bg-section.animated .fag-item {
  opacity: 1;
  transform: translateY(0);
}

.fag-bg-section.animated .fag-item:nth-child(1) {
  transition-delay: 0.2s;
}

.fag-bg-section.animated .fag-item:nth-child(2) {
  transition-delay: 0.4s;
}

.fag-bg-section.animated .fag-item:nth-child(3) {
  transition-delay: 0.6s;
}

.fag-item-title {
  font-family: MadaniArabic-SemiBold;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  color: rgba(34, 48, 62, 1);
  transition: color 0.3s ease;
}

[aria-expanded="true"] .fag-item-title {
  color: rgba(36, 162, 89, 1);
}

.fag-item-arrow {
  width: 2.3125rem;
  height: 2.3125rem;
  border-radius: 62.4375rem;
  background: var(--Colors-Primary-600---P);
  cursor: pointer;
}

.faq-toggle-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.fag-item .collapse>p {
  color: rgba(34, 48, 62, 0.7);
  text-align: right;
  font-family: "IBM Plex Sans Arabic";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 164%;
}

.section14-title {
  color: var(--text-dark);
  font-family: MadaniArabic-SemiBold;
  font-weight: 400;
  font-style: Regular;
  font-size: 50px;
  leading-trim: NONE;
  line-height: 170%;
  letter-spacing: -1%;
  text-align: right;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fag-bg-section.animated .section14-title {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HOME PAGE RESPONSIVE ===== */

/* 1500px and below */
@media (max-width: 1500px) {
  /* Hero */
  .circle-hero {
    width: 480px;
    height: 480px;
  }

  .hero-content-overlay {
    padding-top: 2rem;
  }

  .hero-subtitle {
    max-width: 650px;
    margin-top: 2rem;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-title .brand-letters {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-section .btn-primary {
    padding: 7px 14px;
  }

  /* Section Profits */
  .section-profits {
    padding: 2.5rem 0;
  }

  .section-profits-title {
    font-size: 34px;
    margin-bottom: 2.5rem;
  }

  .section-profits-text {
    font-size: 24px;
  }

  .section-profits-subtitle {
    font-size: 18px;
    line-height: 44px;
  }

  .section-profits-flow {
    font-size: 15px;
    line-height: 44px;
  }

  .section-profits-flow>.fun-item {
    font-size: 16px;
    line-height: 38px;
    gap: 16px;
    padding: 0 18px;
  }

  /* Sticky Scroll */
  .sticky-scroll-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sticky-scroll-brand {
    font-size: 2rem;
  }

  .sticky-scroll-subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .sticky-scroll-description {
    font-size: 0.95rem;
  }

  .sticky-scroll-feature-text {
    font-size: 0.9rem;
  }

  .sticky-scroll-features {
    gap: 0.75rem;
  }

  .sticky-scroll-image-viewport {
    height: 75vh;
  }

  /* Business Types */
  .business-types-header {
    margin-bottom: 2rem;
  }

  .business-types-title {
    font-size: 30px;
  }

  .business-types-subtitle {
    font-size: 14px;
    line-height: 34px;
  }

  .business-types-cards {
    gap: 16px;
  }

  .blob-card {
    flex: 1 1 350px;
    max-width: 350px;
    min-width: 260px;
    min-height: 230px;
    padding: 30px 24px;
    border-radius: 80px;
    gap: 12px;
  }
  .contan-svg{
    width: 100%;
    left: 0;
    bottom: -25%;
  }
  .business-types-section.animated .blob-card {
    padding-top: 3rem;
  }

  .blob-card:hover {
    padding-top: 24px;
  }

  .blob-card-icon {
    width: 70px;
    height: 70px;
    top: -35px;
  }

  .blob-card-icon img {
    width: 34px;
  }

  .blob-card-title {
    font-size: 18px;
    line-height: 28px;
  }

  .blob-card-desc {
    font-size: 13px;
    line-height: 26px;
  }

  /* Delivery Network */
  .delivery-network {
    max-width: 900px;
    height: 480px;
  }

  .delivery-center {
    width: 650px;
    padding: 30px;
  }

  .delivery-title {
    font-size: 26px;
  }

  .delivery-subtitle {
    font-size: 14px;
    line-height: 36px;
  }

  .delivery-logo {
    width: 90px;
    height: 90px;
  }

  /* Smart Scan */
  .smart-scan-section {
    padding: 2.5rem 0;
  }

  .smart-scan-text {
    padding: 2rem 2rem 2rem 0.5rem;
    gap: 1rem;
  }

  .smart-scan-title {
    font-size: 24px;
    line-height: 42px;
    margin-bottom: 0.5rem;
  }

  .smart-scan-desc {
    font-size: 17px;
    line-height: 38px;
  }

  .smart-scan-btn {
    font-size: 15px;
    padding: 0.7rem 1.4rem;
    gap: 8px;
  }

  .smart-scan-image {
    min-height: 340px;
  }

  /* Testimonials */
  .testimonials-section {
    margin: 2.5rem 0;
    gap: 2rem;
  }

  .testimonials-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .testimonials-cards {
    padding: 1.5rem 2rem;
  }

  .testimonial-card {
    flex: 0 0 400px;
    width: 400px;
    min-width: 400px;
    padding: 1.5rem 1.2rem;
    gap: 14px;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  .testimonial-name {
    font-size: 22px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 26px;
  }

  .testimonial-nav-btn {
    width: 38px;
    height: 38px;
  }

  .testimonials-nav {
    margin-top: 1.5rem;
  }

  /* FAQ */
  .fag-bg-section {
    padding: 2.5rem 0;
  }

  .section-14 {
    gap: 3rem;
  }

  .section14-title {
    font-size: 34px;
  }

  .faq {
    margin: 2.5rem 0;
  }

  .fag-item {
    padding: 1rem 1.1rem;
  }

  .fag-item-title {
    font-size: 18px;
    line-height: 26px;
  }

  .fag-item .collapse > p {
    font-size: 1.1rem;
    line-height: 150%;
  }

  .fag-item-arrow {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* Large devices (991px and below) */
@media (max-width: 991px) {
  /* Hero */
  .hero-section {
    min-height: 100vh;
    padding: 5rem 0 3rem;
  }

  .hero-content {
    min-height: auto;
  }

  /* Section Profits */
  .section-profits .container > .d-flex {
    flex-wrap: wrap !important;
  }

  .section-profits .container > .d-flex > * {
    width: 100%;
  }

  .section-profits-content {
    width: 100%;
  }

  .section-profits-flow {
    flex-wrap: nowrap;
    width: 100%;
    flex-direction: row;
  }

  .contan-svg {
    bottom: -10rem;
    left: 0;
    padding: 0px 5%;
    rotate: -6deg;
  }

  .business-types-cards {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .blob-card {
    flex: 1 1 calc(50% - 1rem);
    width: auto;
    min-width: 280px;
    max-width: 360px;
    height: auto;
    min-height: 280px;
    padding: 32px 24px;
    border-radius: 60px;
    gap: 16px;
  }

  .blob-card-icon {
    width: 80px;
    height: 80px;
  }

  .blob-card-icon img {
    width: 40px;
    height: 40px;
  }

  .blob-card-title {
    font-size: 22px;
    line-height: 30px;
  }

  .blob-card-desc {
    font-size: 15px;
    line-height: 26px;
    max-width: 280px;
  }
}

/* Medium devices (tablets, 768px and below) */
@media (max-width: 768px) {
  /* === HERO ICONS FIX === */
  .icons-hero {
    width: 60%;
    height: 18%;
  }

  .icons-hero img {
    max-width: 80px;
  }

  .hero-3 {
    left: 15%;
  }

  .hero-4 {
    right: 15%;
  }

  /* === DELIVERY TYPES FIX === */
  .delivery-types-section {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .delivery-types-wrapper {
    width: 90%;
    max-width: 100%;
  }

  /* === TESTIMONIALS FIX === */
  .testimonials-cards {
    padding: 1.5rem 1.5rem;
  }

  .testimonials-track {
    gap: 1.5rem;
  }

  .testimonial-card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    height: auto;
    min-height: 220px;
    gap: 14px;
  }

  /* === STICKY SCROLL FIX - Tablet === */
  .sticky-scroll-brand {
    font-size: 2rem;
  }

  .sticky-scroll-subtitle {
    font-size: 1.6rem;
  }

  .sticky-scroll-description {
    font-size: 0.95rem;
  }

  .testimonial-avatar {
    width: 55px;
    height: 55px;
  }

  .testimonial-name {
    font-size: 20px;
    line-height: 30px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 22px;
  }

  .business-types-title {
    font-size: 36px;
    line-height: 160%;
  }

  .business-types-subtitle {
    font-size: 18px;
    line-height: 32px;
  }

  .smart-scan-title {
    font-size: 28px;
    line-height: 50px;
  }

  .smart-scan-desc {
    font-size: 20px;
    line-height: 44px;
  }

  .smart-scan-btn {
    font-size: 18px;
    padding: 14px 18px;
  }

  .hero-content-overlay {
    padding-top: 2rem;
    gap: 0.75rem;
  }

  .hero-section-img-wrapper {
    min-height: 500px;
  }

  .hero-section-img {
    height: 100%;
    min-height: 500px;
    object-fit: cover;
  }

  .section-profits-text {
    text-align: center;
  }

  .section-profits-subtitle {
    text-align: center !important;
    align-self: center !important;
  }

  .section-profits-flow {
    justify-content: center;
    line-height: 50px;
  }

  .section-profits-subtitle {
    line-height: 50px;
  }

  .section-profits-content {
    align-items: center;
  }

  .faq {
    width: 100%;
  }

  .contan-svg {
    bottom: -8rem;
    left: 0;
    padding: 0px 5%;
    rotate: -5deg;
  }
}

@media (max-width: 700px) {
  .business-types-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .blob-card {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    max-width: 400px;
    min-height: auto;
    padding: 32px 24px;
    border-radius: 60px;
    gap: 14px;
  }

  .blob-card-icon {
    width: 80px;
    height: 80px;
  }

  .blob-card-icon img {
    width: 40px;
    height: 40px;
  }

  .blob-card-title {
    font-size: 22px;
    line-height: 30px;
  }

  .blob-card-desc {
    font-size: 15px;
    line-height: 26px;
    max-width: 100%;
  }
}

/* Small devices (576px and below) */
@media (max-width: 576px) {
  /* === HERO SECTION - Mobile === */
  .hero-section {
    height: 100vh;
    padding: 4rem 0 1rem!important;
    overflow: hidden;
  }

  .hero-content {
    min-height: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content-overlay {
    padding-top: 0;
    gap: 0.5rem;
    justify-content: center;
  }

  .circle-hero {
    width: 280px;
    height: 280px;
  }

  .hero-shadow-img {
    aspect-ratio: auto;
    height: 80%;
  }

  .bg-hero {
    width: 90%;
    left: 5%;
  }

  .hero-title {
    font-size: 22px;
    line-height: 150%;
  }

  .hero-title .brand-letters {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.7;
    max-width: 95%;
    margin-top: 3rem;
  }

  .hero-section .btn-primary {
    padding: 6px 12px;
    font-size: 14px;
  }

  .hero-section-img-wrapper {
    min-height: auto;
  }

  .hero-section-img {
    min-height: 300px!important;
    max-height: unset!important;
    height: auto;
    width: 200%;
    object-fit: cover;
    object-position: bottom center;
    margin-bottom: 0;
  }

  .image-hero {
    margin-top: -1rem;
  }

  /* === HERO ICONS FIX === */
  .icons-hero {
    width: 80%;
    height: 15%;
    top: 5px;
  }

  .icons-hero img {
    max-width: 60px;
    height: auto;
  }

  .hero-3 {
    left: 10%;
  }

  .hero-4 {
    right: 10%;
  }

  /* === SECTION PROFITS - Mobile === */
  .section-profits {
    padding: 5rem 0!important;
    min-height: auto;
  }

  .section-profits-title {
    font-size: 22px;
    line-height: 160%;
    margin-bottom: 1.5rem;
  }

  .section-profits-content {
    width: 100%;
    align-items: center;
  }

  .section-profits-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
  }

  .section-profits-subtitle {
    font-size: 15px;
    line-height: 32px;
    text-align: center !important;
    align-self: center !important;
  }

  .section-profits-flow {
    font-size: 13px;
    line-height: 32px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .section-profits-flow > .fun-item {
    font-size: 13px;
    line-height: 30px;
    gap: 10px;
    padding: 0 12px;
  }

  .section-profits-flow > span > img {
    width: 20px;
    transform: rotate(-90deg)!important;
  }

  .section-profits-img img {
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }

  /* === TESTIMONIALS FIX === */
  .testimonials-section {
    padding: 2rem 0;
    min-height: auto;
    overflow: hidden;
  }

  .testimonials-title {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

  .testimonials-cards {
    padding: 1rem 1rem;
  }

  .testimonials-track {
    gap: 1rem;
  }

  .testimonial-card {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    height: auto;
    min-height: 200px;
    padding: 1.25rem;
    gap: 12px;
  }

  /* === STICKY SCROLL FIX - Phone === */
  .sticky-scroll-section {
    padding-bottom: 3rem;
  }

  .sticky-scroll-text-col {
    padding: 1rem 0.75rem;
    text-align: center;
    align-items: center!important;
  }

  .sticky-scroll-brand {
    font-size: 1.5rem;
    margin-bottom: 0.15rem;
  }

  .sticky-scroll-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    text-align: center;
  }

  .sticky-scroll-description {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .sticky-scroll-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }

  .sticky-scroll-feature {
    padding: 0.3rem 0.6rem;
  }

  .sticky-scroll-feature .sticky-scroll-feature-text {
    font-size: 0.75rem;
  }

  .sticky-scroll-feature .sticky-scroll-check svg {
    width: 16px;
    height: 16px;
  }

  .sticky-scroll-image-col {
    padding: 0 0.5rem 1rem;
  }

  .sticky-scroll-long-image {
    border-radius: 1rem;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-name {
    font-size: 18px;
    line-height: 28px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 22px;
  }

  .contan-svg {
    bottom: -5rem;
    left: 0;
    padding: 0px 3%;
    rotate: -3deg;
  }

  .business-types-section {
    min-height: auto;
  }

  .business-types-title {
    font-size: 20px;
    line-height: 140%;
  }

  .business-types-subtitle {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 1rem;
  }

  .business-types-header {
    margin-bottom: 1.5rem;
  }

  .business-types-cards {
    gap: 1.2rem;
  }

  .blob-card {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    min-height: auto;
    border-radius: 50px;
    gap: 10px;
    margin-bottom: 1rem;
  }

  .business-types-section.animated .blob-card {
    padding-top: 3rem;
  }

  .blob-card:hover {
    padding-top: 24px;
  }

  .blob-card-icon {
    width: 60px;
    height: 60px;
    top: -35px;
  }

  .blob-card-icon img {
    width: 30px;
    height: 30px;
  }

  .blob-card-title {
    font-size: 18px;
    line-height: 26px;
  }

  .blob-card-desc {
    font-size: 13px;
    line-height: 22px;
    max-width: 100%;
  }

  .contan-svg {
    display: block;
    rotate: 90deg;
    height: 160%;
    width: 200%;
    right: -50%;
    bottom: -30%;
  }

  .sticky-scroll-brand {
    font-size: 2rem;
  }

  .smart-scan-section {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .section-profits-subtitle {
    line-height: 40px;
  }

  .section-profits-flow {
    line-height: 40px;
  }

  .section-profits-flow>.fun-item {
    line-height: 40px;
    padding: 0 16px;
    gap: 15px;
  }

}

/* Tablet and below - sticky scroll and other sections */
@media (max-width: 991px) {
  .swirl-decoration {
    display: none;
  }

  /* === STICKY SCROLL - MOBILE WITH STICKY FEATURES === */
  .sticky-scroll-section {
    height: auto;
    min-height: auto;
    position: relative;
  }

  .sticky-scroll-container {
    position: relative;
    height: auto;
    padding: 0;
    overflow: visible;
    top: unset;
  }

  .sticky-scroll-row {
    flex-direction: column;
    min-height: auto;
    gap: 0;
  }

  /* Text column - sticky at top */
  .sticky-scroll-text-col {
    width: 100%;
    align-items: flex-start;
    text-align: right;
    padding: 1.5rem 1rem;
    order: 1;
    min-height: auto;
    position: relative;
    top: auto;
    background: var(--primary-colors-10, rgba(233, 246, 238, 1));
    z-index: 10;
  }

  /* Image column - scrolls */
  .sticky-scroll-image-col {
    width: 100%;
    order: 2;
    padding: 0 1rem 2rem;
  }

  .sticky-scroll-brand {
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }

  .sticky-scroll-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .sticky-scroll-description {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .sticky-scroll-features {
    align-items: center;
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Show the full image on mobile */
  .sticky-scroll-image-viewport {
    display: block;
    width: 100%;
    height: auto !important;
    overflow: visible;
    border-radius: 1.5rem;
  }

  .sticky-scroll-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 1.5rem;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
  }

  /* Remove the pseudo element */
  .sticky-scroll-image-wrapper::before {
    display: none;
  }

  /* Show full image */
  .sticky-scroll-long-image {
    display: block;
    width: 100%;
    height: auto !important;
    transform: none !important;
    border-radius: 1.5rem;
    position: relative;
  }

  /* All features shown as checked */
  .sticky-scroll-feature {
    padding: 0.4rem 0.8rem;
    background: rgba(36, 162, 89, 0.15);
    border-radius: 50px;
    color: var(--bs-primary) !important;
  }

  .sticky-scroll-feature .sticky-scroll-feature-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark) !important;
  }

  .sticky-scroll-feature .sticky-scroll-check svg {
    width: 20px;
    height: 20px;
  }

  .sticky-scroll-feature .sticky-scroll-check svg circle {
    fill: var(--bs-primary);
    stroke: var(--bs-primary);
  }

  .sticky-scroll-feature .sticky-scroll-check svg path {
    stroke: #fff;
  }

  /* === HERO ICONS FIX === */
  .icons-hero {
    width: 50%;
  }


  /* === DELIVERY TYPES FIX === */
  .delivery-types-wrapper {
    width: 85%;
  }

  /* === TESTIMONIALS FIX === */
  .testimonials-cards {
    padding: 1.5rem 2rem;
  }

  .testimonials-track {
    gap: 1.5rem;
  }

  .testimonial-card {
    flex: 0 0 340px;
    width: 340px;
    min-width: 340px;
    height: auto;
    min-height: 240px;
  }

  .smart-scan-container {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .smart-scan-text {
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .section14-title {
    font-size: 36px;
    line-height: 160%;
  }

  .fag-item-title {
    font-size: 25px;
  }

  .smart-scan-title {
    font-size: 28px;
    line-height: 50px;
  }

  .smart-scan-desc {
    font-size: 18px;
    line-height: 40px;
    max-width: 100%;
  }

  .smart-scan-btn {
    font-size: 18px;
    padding: 14px 18px;
    border-radius: 12px;
  }

  .smart-scan-image {
    min-height: auto;
  }

  .smart-scan-image img {
    max-height: 350px;
  }
}

/* Large screens */
@media (min-width: 992px) {
  .w-md-50 {
    width: 60% !important;
  }
}

/* Extra large screens */
@media (min-width: 1650px) {
  .contan-svg {
    bottom: -14.3rem;
    padding: 0px 10%;
    rotate: -7deg;
  }
}

/* ===== DELIVERY NETWORK RESPONSIVE ===== */
@media (max-width: 1200px) {
  .delivery-center {
    width: 600px;
    padding: 30px;
  }
}

@media (max-width: 992px) {
  /* === DELIVERY NETWORK - iPad (just decrease sizing) === */
  .delivery-network {
    max-width: 700px;
    height: 380px;
  }

  .delivery-center {
    width: 480px;
    padding: 22px;
  }

  .delivery-title {
    font-size: 20px;
    line-height: 160%;
  }

  .delivery-subtitle {
    font-size: 12px;
    line-height: 28px;
  }

  .delivery-logo {
    width: 70px;
    height: 70px;
  }

  .delivery-line svg {
    transform: scale(0.6);
    transform-origin: center;
  }

  .delivery-line.line-1 {
    top: 35px;
    left: calc(8% + 70px);
  }

  .delivery-line.line-2 {
    left: calc(2% + 70px);
  }

  .delivery-line.line-3 {
    bottom: 35px;
    left: calc(8% + 70px);
  }

  .delivery-line.line-4 {
    top: 35px;
    right: calc(8% + 70px);
  }

  .delivery-line.line-5 {
    right: calc(2% + 70px);
  }

  .delivery-line.line-6 {
    bottom: 35px;
    right: calc(8% + 70px);
  }

  /* === SMART SCAN - iPad === */
  .smart-scan-section {
    padding: 2rem 0;
    min-height: auto;
  }

  .smart-scan-container {
    gap: 1rem;
    border-radius: 1.5rem;
  }

  .smart-scan-text {
    padding: 2rem 1.5rem 2rem 0.5rem;
    gap: 0.8rem;
  }

  .smart-scan-title {
    font-size: 22px;
    line-height: 38px;
    margin-bottom: 0.5rem;
  }

  .smart-scan-desc {
    font-size: 16px;
    line-height: 32px;
  }

  .smart-scan-btn {
    font-size: 15px;
    padding: 10px 18px;
    gap: 8px;
    margin-top: 0.5rem;
  }

  .smart-scan-image {
    min-height: 300px;
  }

  .smart-scan-image img {
    width: 90%;
  }

  /* === TESTIMONIALS - iPad === */
  .testimonials-section {
    margin: 2rem 0;
    gap: 1.5rem;
  }

  .testimonials-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .testimonials-cards {
    padding: 1rem 1.5rem;
  }

  .testimonials-track {
    gap: 1.2rem;
  }

  .testimonial-card {
    flex: 0 0 340px;
    width: 340px;
    min-width: 340px;
    padding: 1.2rem 1rem;
    gap: 12px;
    min-height: auto;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
  }

  .testimonial-name {
    font-size: 18px;
    line-height: 26px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 24px;
  }

  .testimonials-nav {
    margin-top: 1.2rem;
  }

  .testimonial-nav-btn {
    width: 36px;
    height: 36px;
  }

  /* === FAQ - iPad === */
  .fag-bg-section {
    padding: 2rem 0;
  }

  .section-14 {
    gap: 2.5rem;
  }

  .section14-title {
    font-size: 30px;
    line-height: 160%;
  }

  .faq {
    margin: 2rem 0;
  }

  .fag-item {
    padding: 0.9rem 1rem;
  }

  .fag-item-title {
    font-size: 17px;
    line-height: 24px;
  }

  .fag-item .collapse > p {
    font-size: 1rem;
    line-height: 150%;
  }

  .fag-item-arrow {
    width: 1.6rem;
    height: 1.6rem;
  }
}

@media (max-width: 768px) {
  .delivery-network {
    height: auto;
    min-height: 550px;
    padding: 2rem 0.5rem;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    grid-template-rows: 1fr;
    gap: 0;
    align-items: center;
    position: relative;
  }

  /* Hide desktop SVG lines on mobile */
  .delivery-line {
    display: none !important;
  }

  /* Show mobile lines */
  .mobile-line {
    display: block;
    position: absolute;
    z-index: -1;
  }

  /* Left TOP */
  .mobile-line-left-top {
    top: 50%;
    left: -78px;
    transform: translateY(100%) scaleY(-3);
  }

  /* Left MID */
  .mobile-line-left-mid {
    top: 50%;
    left: -55px;
    transform: translateY(-50%) scaleX(-3);
  }

  /* Left BOTTOM */
  .mobile-line-left-bottom {
    top: 0%;
    left: -78px;
    transform: translateY(-100%) scaleY(-3);
  }

  /* Right TOP */
  .mobile-line-right-top {
    top: 50%;
    right: -78px;
    transform: translateY(100%) scaleY(-3);
  }

  /* Right MID */
  .mobile-line-right-mid {
    top: 50%;
    right: -55px;
    transform: translateY(-50%) scaleX(-3);
  }

  /* Right BOTTOM */
  .mobile-line-right-bottom {
    top: 0%;
    right: -78px;
    transform: translateY(-100%) scaleY(-3);
  }

  /* ===== LTR (English) Mobile Lines - Flip positions ===== */
  [dir="ltr"] .mobile-line-left-top {
    left: auto;
    right: -78px;
    transform: translateY(100%) scaleX(-1) scaleY(-3);
  }

  [dir="ltr"] .mobile-line-left-mid {
    left: auto;
    right: -55px;
    transform: translateY(-50%);
  }

  [dir="ltr"] .mobile-line-left-bottom {
    left: auto;
    right: -78px;
    transform: translateY(-100%) scaleX(-1) scaleY(-3);
  }

  [dir="ltr"] .mobile-line-right-top {
    right: auto;
    left: -78px;
    transform: translateY(100%) scaleX(-1) scaleY(-3);
  }

  [dir="ltr"] .mobile-line-right-mid {
    right: auto;
    left: -55px;
    transform: translateY(-50%);
  }

  [dir="ltr"] .mobile-line-right-bottom {
    right: auto;
    left: -78px;
    transform: translateY(-100%) scaleX(-1) scaleY(-3);
  }

  /* Remove pseudo-element lines on mobile */
  .delivery-logo::after {
    display: none;
  }

  /* Remove hover effect on center box for mobile */
  .delivery-center:hover {
    transform: none;
  }

  .delivery-center:hover::before {
    background: linear-gradient(90deg, rgba(167, 218, 189, 1) 8%, #F4FAF7 9.57%, #F4FAF7 52.88%, #F4FAF7 88.98%, rgba(167, 218, 189, 1) 95.48%);
  }

  /* Center box in mobile */
  .delivery-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 30px 15px;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }

  .delivery-center::before {
    border-radius: 15px;
  }

  .delivery-title {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .delivery-subtitle {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* Left column - logos stacked vertically */
  .delivery-logo {
    position: relative;
    width: 65px;
    height: 65px;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 8;
    overflow: visible;
  }

  /* Remove hover rotation on mobile */
  .delivery-types-section.animated .delivery-logo:hover,
  .delivery-types-section.animated .logo-top-left:hover,
  .delivery-types-section.animated .logo-top-right:hover,
  .delivery-types-section.animated .logo-bottom-left:hover,
  .delivery-types-section.animated .logo-bottom-right:hover,
  .delivery-types-section.animated .logo-mid-left:hover,
  .delivery-types-section.animated .logo-mid-right:hover {
    transform: none !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  }

  /* Animation only for corner logos, not middle ones */
  .delivery-types-section.animated .logo-top-left,
  .delivery-types-section.animated .logo-top-right,
  .delivery-types-section.animated .logo-bottom-left,
  .delivery-types-section.animated .logo-bottom-right {
    animation: flyFromLeft 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  /* Middle logos - no animation, just show */
  .delivery-types-section.animated .logo-mid-left,
  .delivery-types-section.animated .logo-mid-right {
    animation: none;
    opacity: 1;
    transform: none !important;
  }

  /* Left side logos - column 1 */
  .logo-top-left,
  .logo-mid-left,
  .logo-bottom-left {
    grid-column: 1;
    justify-self: center;
  }

  .logo-top-left {
    grid-row: 1;
    align-self: start;
    margin-top: 20px;
  }

  .logo-mid-left {
    grid-row: 1;
    align-self: center;
  }

  .logo-bottom-left {
    grid-row: 1;
    align-self: end;
    margin-bottom: 20px;
  }

  /* Right side logos - column 3 */
  .logo-top-right,
  .logo-mid-right,
  .logo-bottom-right {
    grid-column: 3;
    justify-self: center;
  }

  .logo-top-right {
    grid-row: 1;
    align-self: start;
    margin-top: 20px;
  }

  .logo-mid-right {
    grid-row: 1;
    align-self: center;
  }

  .logo-bottom-right {
    grid-row: 1;
    align-self: end;
    margin-bottom: 20px;
  }
}

/* Mobile dot animations for delivery lines */
@keyframes mobileDotDown {
  0% { background-position: center -10px, center center; }
  100% { background-position: center 40px, center center; }
}

@keyframes mobileDotDownShort {
  0% { background-position: center -8px, center center; }
  100% { background-position: center 30px, center center; }
}

@keyframes mobileDotUp {
  0% { background-position: center 50px, center center; }
  100% { background-position: center -10px, center center; }
}

@keyframes mobileDotUpShort {
  0% { background-position: center 38px, center center; }
  100% { background-position: center -8px, center center; }
}

/* ===== DELIVERY NETWORK - Phone (576px) - Top/Bottom Layout ===== */
@media (max-width: 576px) {
  .delivery-types-section {
    padding: 1.5rem 0.5rem;
    overflow: hidden;
  }

  .delivery-types-wrapper {
    width: 95%;
  }

  .delivery-network {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    min-height: auto !important;
    height: auto !important;
    gap: 30px !important;
    padding: 1.5rem 0.5rem;
    overflow: visible;
  }

  /* Hide desktop lines */
  .delivery-line {
    display: none !important;
  }

  /* Show mobile lines - rotated for vertical connections */
  .mobile-line {
    display: block !important;
    position: absolute;
    z-index: -1;
  }

  /* Center text - full width row 2 */
  .delivery-center {
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 16px 12px;
    box-sizing: border-box;
  }

  .delivery-center::before {
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(167, 218, 189, 1) 8%, #F4FAF7 9.57%, #F4FAF7 52.88%, #F4FAF7 88.98%, rgba(167, 218, 189, 1) 95.48%) !important;
  }

  .delivery-types-section.animated .delivery-center {
    transform: none;
  }

  .delivery-center:hover {
    transform: none;
  }

  .delivery-title {
    font-size: 16px;
    line-height: 160%;
  }

  .delivery-subtitle {
    font-size: 11px;
    line-height: 24px;
  }

  /* All logos - force visible */
  .delivery-logo {
    position: relative;
    width: 55px;
    height: 55px;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    overflow: visible;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Top row: left, center, right */
  .logo-top-left {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: center;
    align-self: end;
    margin: 0;
  }

  .logo-mid-left {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center;
    align-self: end;
    margin: 0;
  }

  .logo-bottom-left {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: center;
    align-self: end;
    margin: 0;
  }

  /* Hide mobile SVG lines - use CSS lines instead */
  .mobile-line {
    display: none !important;
  }

  /* Top-left: diagonal line angled toward center-right */
  .logo-top-left::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
    transform-origin: top center;
    width: 2px;
    height: 40px;
    background:
      linear-gradient(to bottom, transparent, var(--bs-primary), transparent) no-repeat center -8px,
      #A7DABD;
    background-size: 2px 10px, 2px 100%;
    animation: mobileDotDown 1.8s ease-in-out infinite;
  }

  /* Top-center: straight vertical line */
  .logo-mid-left::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background:
      linear-gradient(to bottom, transparent, var(--bs-primary), transparent) no-repeat center -8px,
      #A7DABD;
    background-size: 2px 8px, 2px 100%;
    animation: mobileDotDownShort 1.4s ease-in-out infinite 0.3s;
  }

  /* Top-right: diagonal line angled toward center-left */
  .logo-bottom-left::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    transform-origin: top center;
    width: 2px;
    height: 40px;
    background:
      linear-gradient(to bottom, transparent, var(--bs-primary), transparent) no-repeat center -8px,
      #A7DABD;
    background-size: 2px 10px, 2px 100%;
    animation: mobileDotDown 2.2s ease-in-out infinite 0.6s;
  }

  /* Bottom row: left, center, right */
  .logo-top-right {
    grid-column: 1 !important;
    grid-row: 3 !important;
    justify-self: center;
    align-self: start;
    margin: 0;
  }

  .logo-mid-right {
    grid-column: 2 !important;
    grid-row: 3 !important;
    justify-self: center;
    align-self: start;
    margin: 0;
  }

  .logo-bottom-right {
    grid-column: 3 !important;
    grid-row: 3 !important;
    justify-self: center;
    align-self: start;
    margin: 0;
  }

  /* Bottom-left: diagonal line angled toward center-right */
  .logo-top-right::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    transform-origin: bottom center;
    width: 2px;
    height: 40px;
    background:
      linear-gradient(to top, transparent, var(--bs-primary), transparent) no-repeat center 48px,
      #A7DABD;
    background-size: 2px 10px, 2px 100%;
    animation: mobileDotUp 2s ease-in-out infinite;
  }

  /* Bottom-center: straight vertical line */
  .logo-mid-right::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background:
      linear-gradient(to top, transparent, var(--bs-primary), transparent) no-repeat center 38px,
      #A7DABD;
    background-size: 2px 8px, 2px 100%;
    animation: mobileDotUpShort 1.6s ease-in-out infinite 0.5s;
  }

  /* Bottom-right: diagonal line angled toward center-left */
  .logo-bottom-right::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
    transform-origin: bottom center;
    width: 2px;
    height: 40px;
    background:
      linear-gradient(to top, transparent, var(--bs-primary), transparent) no-repeat center 48px,
      #A7DABD;
    background-size: 2px 10px, 2px 100%;
    animation: mobileDotUp 2.4s ease-in-out infinite 0.7s;
  }

  /* Reset hover/animations for mobile */
  .delivery-types-section.animated .delivery-logo:hover,
  .delivery-types-section.animated .logo-top-left:hover,
  .delivery-types-section.animated .logo-top-right:hover,
  .delivery-types-section.animated .logo-bottom-left:hover,
  .delivery-types-section.animated .logo-bottom-right:hover,
  .delivery-types-section.animated .logo-mid-left:hover,
  .delivery-types-section.animated .logo-mid-right:hover {
    transform: none !important;
  }

  .logo-mid-left,
  .logo-mid-right {
    transform: none !important;
  }

  .delivery-types-section.animated .logo-mid-left,
  .delivery-types-section.animated .logo-mid-right {
    transform: none !important;
  }

  .delivery-types-section.animated .logo-top-left,
  .delivery-types-section.animated .logo-top-right,
  .delivery-types-section.animated .logo-bottom-left,
  .delivery-types-section.animated .logo-bottom-right,
  .delivery-types-section.animated .logo-mid-left,
  .delivery-types-section.animated .logo-mid-right {
    animation: none;
    opacity: 1;
  }
}

/* ===== LTR (English) OVERRIDES ===== */

/* Text alignment */
[dir="ltr"] .section-profits-subtitle {
  text-align: left !important;
}

[dir="ltr"] .section-profits-flow {
  text-align: left;
}

[dir="ltr"] .section-profits-flow > .fun-item {
  text-align: left;
}

[dir="ltr"] .blob-card-title {
  text-align: left;
}

[dir="ltr"] .smart-scan-text {
  text-align: left;
  padding: 3rem 1rem 3rem 3rem;
}

[dir="ltr"] .section14-title {
  text-align: left;
}

[dir="ltr"] .fag-item .collapse > p {
  text-align: left;
}

/* Flip arrow images in profits flow for LTR */
[dir="ltr"] .section-profits-flow > span > img {
  transform: scaleX(-1);
}

[dir="ltr"] .section-profits.animated .section-profits-flow > :nth-child(2) img {
  animation: flowArrowLtr1 7s ease infinite;
}

[dir="ltr"] .section-profits.animated .section-profits-flow > :nth-child(4) img {
  animation: flowArrowLtr2 7s ease infinite;
}

@keyframes flowArrowLtr1 {
  0%, 7% { opacity: 0; transform: scaleX(0); }
  13% { opacity: 1; transform: scaleX(-1); }
  75% { opacity: 1; transform: scaleX(-1); }
  82%, 100% { opacity: 0; transform: scaleX(0); }
}

@keyframes flowArrowLtr2 {
  0%, 14% { opacity: 0; transform: scaleX(0); }
  20% { opacity: 1; transform: scaleX(-1); }
  75% { opacity: 1; transform: scaleX(-1); }
  82%, 100% { opacity: 0; transform: scaleX(0); }
}

/* Reverse flow item slide direction for LTR */
[dir="ltr"] .section-profits-flow > span,
[dir="ltr"] .section-profits-flow > .fun-item {
  transform: translateX(-30px);
}

[dir="ltr"] .section-profits.animated .section-profits-flow > :nth-child(1) {
  animation: flowItemLtr1 7s ease infinite;
}

[dir="ltr"] .section-profits.animated .section-profits-flow > :nth-child(2) {
  animation: flowItemLtr2 7s ease infinite;
}

[dir="ltr"] .section-profits.animated .section-profits-flow > :nth-child(3) {
  animation: flowItemLtr3 7s ease infinite;
}

[dir="ltr"] .section-profits.animated .section-profits-flow > :nth-child(4) {
  animation: flowItemLtr4 7s ease infinite;
}

[dir="ltr"] .section-profits.animated .section-profits-flow > :nth-child(5) {
  animation: flowItemLtr5 7s ease infinite;
}

@keyframes flowItemLtr1 {
  0% { opacity: 0; transform: translateX(-30px); }
  5% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  82%, 100% { opacity: 0; transform: translateX(0); }
}

@keyframes flowItemLtr2 {
  0%, 7% { opacity: 0; transform: translateX(-30px); }
  13% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  82%, 100% { opacity: 0; transform: translateX(0); }
}

@keyframes flowItemLtr3 {
  0%, 14% { opacity: 0; transform: translateX(-30px); }
  20% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  82%, 100% { opacity: 0; transform: translateX(0); }
}

@keyframes flowItemLtr4 {
  0%, 14% { opacity: 0; transform: translateX(-30px); }
  20% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  82%, 100% { opacity: 0; transform: translateX(0); }
}

@keyframes flowItemLtr5 {
  0%, 21% { opacity: 0; transform: translateX(-30px) scale(1); box-shadow: 0 0 0 0 rgba(36, 162, 89, 0); }
  27% { opacity: 1; transform: translateX(0) scale(1); }
  40% { transform: translateX(0) scale(1.05); box-shadow: 0 0 0 8px rgba(36, 162, 89, 0); }
  50% { transform: translateX(0) scale(1); box-shadow: 0 0 0 0 rgba(36, 162, 89, 0.3); }
  60% { transform: translateX(0) scale(1.05); box-shadow: 0 0 0 8px rgba(36, 162, 89, 0); }
  70% { opacity: 1; transform: translateX(0) scale(1); box-shadow: 0 0 0 0 rgba(36, 162, 89, 0); }
  82%, 100% { opacity: 0; transform: translateX(0) scale(1); }
}

/* Testimonial nav buttons - flip arrows for LTR */
[dir="ltr"] .testimonial-nav-btn svg {
  transform: rotate(180deg);
}

/* Circle hero - move to left and flip for LTR */
[dir="ltr"] .circle-hero {
  right: auto;
  left: 0;
  transform: translate(-20%, -20%) scaleX(-1);
}

/* Smart scan padding flip for LTR */
[dir="ltr"] .smart-scan-text {
  padding: 3rem 1rem 3rem 3rem;
}

/* Sticky scroll text alignment for LTR */
[dir="ltr"] .sticky-scroll-text-col {
  text-align: left;
  align-items: flex-start;
}

/* Mobile 576px arrow rotation for LTR */
@media (max-width: 576px) {
  [dir="ltr"] .section-profits-flow > span > img {
    transform: rotate(90deg) !important;
  }
}
