.hero {
  height: 100vh;
  min-height: 487px;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transform-origin: center;
  animation: hero-kenburns 12s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 140, 27, 0.6) 0%,
      rgba(0, 140, 27, 0.6) 50%,
      rgba(137, 91, 0, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-fade-up 1s ease-out 0.15s forwards;
}

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

.hero-title-custom {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #ffb41e;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto 24px;
  width: auto;
  height: auto;
}

.hero-text {
  font-size: 20px;
  line-height: 2;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 600;
}

.hero-text-line1 {
  font-family: "Cairo", sans-serif;
  font-size: 26px;
  line-height: 1.73;
  max-width: 100%;
  margin: 0 auto 8px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.hero-text-line2 {
  font-family: "Cairo", sans-serif;
  font-size: 26px;
  line-height: 1.73;
  max-width: 100%;
  margin: 0 auto;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

@keyframes hero-kenburns {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes hero-fade-up {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (max-width: 768px) {
  .hero {
    height: 300px;
  }

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

  .hero-title-custom {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-text-line1 {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 4px;
  }

  .hero-text-line2 {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 991px) and (min-width: 577px) {
  .hero-title {
    font-size: clamp(28px, 4vw, 40px);
  }

  .hero-title-custom {
    font-size: clamp(28px, 4.5vw, 40px);
    margin-bottom: clamp(12px, 2vw, 24px);
  }

  .hero-text {
    font-size: clamp(12px, 1.8vw, 20px);
  }

  .hero-text-line1 {
    font-size: clamp(14px, 2.2vw, 26px);
    line-height: 1.6;
    margin-bottom: clamp(4px, 1vw, 8px);
  }

  .hero-text-line2 {
    font-size: clamp(14px, 2.2vw, 26px);
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .hero {
    height: clamp(200px, 50vw, 300px);
  }

  .hero-title {
    font-size: clamp(16px, 5vw, 28px);
  }

  .hero-title-custom {
    font-size: clamp(18px, 6vw, 28px);
    margin-bottom: clamp(12px, 3vw, 16px);
  }

  .hero-text {
    font-size: clamp(10px, 3.5vw, 14px);
  }

  .hero-text-line1 {
    font-size: clamp(12px, 4.5vw, 26px);
    line-height: 1.6;
    margin-bottom: clamp(4px, 2vw, 8px);
    white-space: normal;
  }

  .hero-text-line2 {
    font-size: clamp(12px, 4.5vw, 26px);
    line-height: 1.6;
  }
}

/* ============================================
   STICKY HEADER STATE
   ============================================ */
.site-header.is-scrolled .top-bar {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 0.35s ease,
    opacity 0.35s ease;
}

.site-header.is-scrolled .navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  opacity: 1;
}

.site-header .navbar {
  transform: translateY(0);
  opacity: 1;
}

.site-header.is-scrolled .navbar {
  animation: navbar-fade-in 0.35s ease;
}

@keyframes navbar-fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/*About section*/
.container {
  position: relative;
}

.about-section {
  background: #fff;
}

.about-img {
  width: 240px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about-mini-title {
  color: #008c1b;
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.about-section.section-visible .about-mini-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.about-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #000000;
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.about-section.section-visible .about-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.about-title-mark {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.about-title-mark::after {
  content: "";
  position: absolute;
  right: -8px;
  left: 0;
  bottom: -6px;
  margin-inline: auto;
  width: 90px;
  height: 10px;
  background: url("https://webdiv.net/LandinPage/assets/images/shape/header-shape.png") no-repeat center / contain;
  pointer-events: none;
}

.about-text {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.9;
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.about-section.section-visible .about-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.about-list li {
  font-size: 15px;
  margin-bottom: 11px;
  font-family: Cairo;
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: right;
  margin-right: -40px;
  vertical-align: middle;
  width: 714;
  height: 40;
  top: 1006px;
  left: 1032px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-section.section-visible .about-list li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.about-section.section-visible .about-list li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.about-section.section-visible .about-list li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.about-list img {
  width: 15.01px;
  height: 22.19px;
  margin-left: 8px;
  margin-top: -1px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
  font-size: 18px;
  padding: 4px 0;
}

.about-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0f8a2c 0%, #e7b900 100%);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.about-cta-btn:hover::before {
  transform: translateX(0);
}

.about-cta-btn>* {
  position: relative;
  z-index: 1;
}

.about-cta-btn i {
  position: relative;
  top: 1px;
  transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
  transform: translateX(-4px);
}

.about-images {
  position: relative;
  gap: 25px;
  margin: 40px;
  z-index: 4;
}

.img-box img {
  width: 330px;
  height: 460px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  z-index: 4;
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.9s ease;
}

.img-left img {
  border: 10px solid #ffb41e;
  transform: translateY(-80px);
}

.img-right img {
  border: 10px solid #008a50;
  transform: translateY(80px);
}

.about-section.section-visible .img-left img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.about-section.section-visible .img-right img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.about-section.section-visible .img-box img:hover {
  transform: translateY(-6px) scale(1.03);
}

@media (max-width: 992px) {
  .img-box img {
    width: 100%;
    height: auto;
  }

  .about-images {
    justify-content: center !important;
  }

  .dots-green,
  .dots-orange {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1050px) {
  .about-title {
    font-size: clamp(16px, 2vw, 20px);
  }

  .about-text {
    font-size: clamp(10px, 1.5vw, 10px);
  }

  .about-list li {
    font-size: clamp(10px, 2vw, 15px);
    line-height: clamp(30px, 3vw, 40px);
  }

  .about-cta-btn {
    font-size: clamp(10px, 1.8vw, 14px);
  }

  .img-box img {
    width: clamp(180px, 20vw, 240px);
    height: clamp(270px, 28vw, 360px);
  }

  .about-images {
    gap: clamp(30px, 5vw, 50px);
    margin: clamp(25px, 3vw, 40px);
    justify-content: flex-start;
  }
}

@media (min-width: 1050px) and (max-width: 1200px) {
  .about-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 13px;
    line-height: 1.9;
  }

  .about-list li {
    font-size: 18px;
    line-height: 36px;
  }

  .about-cta-btn {
    font-size: 15px;
    margin-top: 20px;
  }

  .img-box img {
    width: 200px;
    height: 300px;
  }

  .about-images {
    gap: 40px;
    margin: 35px;
    justify-content: flex-start;
  }
}

@media (min-width: 1200px) {
  .about-title {
    font-size: clamp(28px, 2.8vw, 36px);
  }

  .about-text {
    font-size: clamp(13px, 1.3vw, 16px);
    line-height: 1.9;
  }

  .about-list li {
    font-size: clamp(18px, 1.8vw, 25px);
    line-height: clamp(36px, 3.6vw, 50px);
  }

  .about-cta-btn {
    font-size: clamp(15px, 1.5vw, 20px);
    margin-top: clamp(20px, 2vw, 28px);
  }

  .img-box img {
    width: clamp(240px, 18vw, 320px);
    height: clamp(350px, 26vw, 480px);
  }

  .about-images {
    gap: clamp(35px, 4vw, 60px);
    margin: clamp(35px, 3vw, 50px);
    justify-content: flex-start;
  }
}

.dots-green,
.dots-orange {
  animation: float-horizontal 4s ease-in-out infinite;
}

.dots-orange {
  animation-delay: 0.4s;
}

@keyframes float-horizontal {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }
}

/* About section dots - RTL */
.dots-orange,
.dots-green {
  position: absolute;
  width: 90px;
  height: 90px;
  background-size: 14px 14px;
  z-index: -1;
  animation: float-horizontal 4s ease-in-out infinite;
}

.dots-orange {
  right: -75px;
  bottom: -25px;
  background-image: radial-gradient(#ffb41e 2px, transparent 2px);
  animation-delay: 0.35s;
}

.dots-green {
  left: -60px;
  top: -35px;
  background-image: radial-gradient(#008c1b 2px, transparent 2px);
}

/* Responsive dots - 992px to 1200px */
@media (min-width: 992px) and (max-width: 1200px) {

  .img-right .dots-orange,
  .img-left .dots-green {
    width: clamp(70px, 8vw, 90px);
    height: clamp(70px, 8vw, 90px);
    background-size: clamp(10px, 1.2vw, 14px) clamp(10px, 1.2vw, 14px);
  }

  .img-right .dots-orange {
    right: clamp(-280px, -25vw, -350px);
    bottom: clamp(-20px, -2vw, -25px);
  }

  .img-left .dots-green {
    left: clamp(-300px, -25vw, -350px);
    top: clamp(-30px, -3vw, -35px);
  }
}

.about-dots {
  position: absolute;
  left: 20px;
  z-index: 0 !important;
  display: none;
}

/* STORY SECTION */
.story-section {
  background: #eef8f1;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding-top: 70px;
  padding-bottom: 220px;
  padding: 70px 70px 220px;
}

.story-section .container {
  position: relative;
  z-index: 2;
}

.game-icon-latern {
  position: absolute;
  top: 20px;
}

.latern-1 {
  position: relative;
  right: -110px;
  top: 0;
}

.story-mini {
  color: #f4a000;
  font-weight: 700;
  font-size: 20px;
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.story-section.section-visible .story-mini {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.story-title {
  font-weight: 800;
  font-size: 14px;
  color: #7a7a7a;
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.story-section.section-visible .story-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.story-text {
  color: #111827;
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
  text-align: justify;
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.story-section.section-visible .story-text:nth-of-type(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.7s;
}

.story-section.section-visible .story-text:nth-of-type(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.9s;
}

.story-section.section-visible .story-text:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

/* الفقرة الأخيرة - تأتي من الأسفل */
.story-text-final {
  opacity: 0;
  transform: translateY(60px) !important;
  transition:
    opacity 1.2s ease,
    transform 1.2s ease !important;
}

.story-section.section-visible .story-text-final {
  opacity: 1;
  transform: translateY(0) !important;
  transition-delay: 1.3s !important;
}

.story-sura {
  color: #008a50;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.story-section.section-visible .story-sura {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.sura-name {
  font-weight: 800;
  font-size: 10px;
  color: #555;
}

.story-lantern {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.lantern-right {
  right: -30px;
  top: 180px;
  height: 200px;
}

.story-section.section-visible .about-list li:nth-child(1)~.story-lantern,
.story-section.section-visible .lantern-right {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.lantern-left {
  left: -40px;
  bottom: -10px;
  height: 260px;
}

.story-section.section-visible .about-list li:nth-child(2)~.story-lantern,
.story-section.section-visible .lantern-left {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.lantern-top {
  top: 20px;
  right: 1px;
  height: 120px;
}

.story-section.section-visible .about-list li:nth-child(3)~.story-lantern,
.story-section.section-visible .lantern-top {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.lantern-bottom {
  top: 300px;
  left: 2px;
  height: 120px;
}

.story-section.section-visible .lantern-bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* STORY IMAGES */
.story-images-wrap {
  min-height: 320px;
}

.story-poly {
  --b: 10px;
  --poly: polygon(25% 0%,
      75% 0%,
      100% 25%,
      100% 75%,
      75% 100%,
      25% 100%,
      0% 75%,
      0% 25%);

  position: absolute;
  overflow: visible;
}

.story-poly::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: var(--poly);
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

.story-poly img {
  position: absolute;
  inset: var(--b);
  width: calc(100% - (var(--b) * 2));
  height: calc(100% - (var(--b) * 2));
  clip-path: var(--poly);
  object-fit: cover;

  transform: scale(1.06);
  transform-origin: center;
}

.story-big {
  --b: 18px;
  width: 320px;
  height: 320px;
  top: 0;
  left: 30px;
  z-index: 2;
  object-position: 85% 50%;
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.story-section.section-visible .story-big {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.story-big:hover {
  transform: scale(1.05);
}

.story-small {
  --b: 9px;
  width: 120px;
  height: 120px;
  bottom: -10px;
  left: -10px;
  z-index: 3;
  object-position: 15% 50%;
  opacity: 0;
  transform: translateY(-40px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.story-section.section-visible .story-small {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.story-small:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .story-images-wrap {
    min-height: clamp(240px, 60vw, 360px);
    position: relative !important;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .story-big {
    width: clamp(160px, 45vw, 320px);
    height: clamp(160px, 45vw, 320px);
    top: auto;
    left: auto;
    right: clamp(20px, 8vw, 50px);
    bottom: 0;
    z-index: 2;
  }

  .story-small {
    width: clamp(60px, 18vw, 120px);
    height: clamp(60px, 18vw, 120px);
    bottom: clamp(-80px, -5vw, 10px);
    right: clamp(10px, -10vw, 160px);
    left: auto;
    z-index: 3;
  }

  .lantern-bottom {
    top: 700px !important;
  }
}

/* Hide story section lanterns on very small screens (450px and below) */
@media (max-width: 450px) {

  .story-section .story-lantern,
  .story-section .lantern-right,
  .story-section .lantern-left,
  .story-section .lantern-top,
  .story-section .lantern-bottom {
    display: none !important;
  }
}

/*TimeLine*/
.timeline-section {
  background: transparent;
  margin-top: -140px;
  position: relative;
  z-index: 5;
}

.timeline-box {
  max-width: 1000px;
  max-height: 277px;
  background: #fffdf6;
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #f3f3f3;
  margin: auto;
  position: relative;
  overflow: visible;
  z-index: 4;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.story-section.section-visible~.timeline-section .timeline-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.timeline-icon {
  width: 42px;
  height: 42px;
  margin: auto;
  background: linear-gradient(to right, #008c1b, #ffb41e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.timeline-box:hover .timeline-icon {
  transform: scale(1.15);
}

.timeline-title {
  font-weight: 900;
  font-size: 15px;
  color: #111827;
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.story-section.section-visible~.timeline-section .timeline-box .timeline-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.4s;
}

.timeline-text {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.story-section.section-visible~.timeline-section .timeline-box .timeline-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.7s;
}

.timeline-section .about-dots {
  left: 200px;
  top: 5px;
}

/* CTA SECTION */
.cta-section {
  margin-top: 100px;
  position: relative;
  z-index: 5;
}

.cta-box {
  background: #008c1b;
  border-radius: 18px;
  padding: 50px 45px;
  position: relative;
  overflow: visible;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 210px;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.cta-section.section-visible .cta-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../imgs/pattern.webp");
  opacity: 0.07;
  pointer-events: none;
}

.cta-box::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  height: 220px;
  background: url("../imgs/cta-pattern.webp") no-repeat right bottom;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.cta-content,
.cta-image,
.cta-icon {
  position: relative;
  z-index: 2;
}

.cta-pattern {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 480px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  max-width: 480px;
  z-index: 2;
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.cta-section.section-visible .cta-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.cta-title {
  font-weight: 800;
  font-size: 26px;
  padding-right: 15px;
}

.cta-btn {
  background: #f4b000;
  border-radius: 20px;
  font-weight: 700;
  padding: 8px 16px;
  margin: 10px;
  margin-top: -1px;
  border: none;
  color: #ffffff;
  font-size: 14px;
}

.cta-btn:hover {
  background: #e0a200;
}

/* image */
.cta-image {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.cta-section.section-visible .cta-image {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.cta-image img {
  width: 320px;
  max-width: none;
  position: absolute;
  top: -220px;
  left: -40px;
  z-index: 10;
}

.cta-icon {
  position: absolute;
  left: 270px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 2px solid #e6f5ec;
  opacity: 0;
  transition: opacity 1s ease;
}

.cta-section.section-visible .cta-icon {
  opacity: 1;
  transition-delay: 1.1s;
}

.cta-icon img {
  width: 28px;
}

.cta-icon :hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .cta-box {
    text-align: center;
    justify-content: center !important;
    padding: 25px 20px;
  }

  .cta-image img {
    width: 150px;
    margin-top: 15px;
  }

  .cta-icon {
    display: none;
  }

  .cta-title {
    font-size: 20px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .cta-box {
    padding: 30px 24px;
    justify-content: flex-start !important;
    text-align: right;
    gap: 14px;
  }

  .cta-content {
    max-width: 360px;
    text-align: right;
  }

  .cta-title {
    font-size: 16px;
    line-height: 1.35;
    margin: 0 13px 6px;
  }

  .cta-btn {
    padding: 5px 10px;
    font-size: 11px;
    margin: 0 25px;
    border-radius: 12px;
  }

  .cta-image img {
    width: 260px;
    top: -190px;
    left: -240px;
  }
}

@media (min-width: 769px) and (max-width: 988px) {
  .cta-title {
    font-size: 22px;
  }

  .cta-btn {
    padding: 7px 14px;
    font-size: 13px;
  }

  .cta-image img {
    width: 300px;
    top: -214px;
    left: -60px;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
    left: 240px;
  }
}

@media (max-width: 576px) {
  .lantern-bottom {
    top: 800px !important;
  }

  .cta-box {
    padding: clamp(12px, 3vw, 20px);
    min-height: auto;
    flex-direction: row;
    text-align: right;
    justify-content: flex-start !important;
    gap: clamp(10px, 3vw, 20px);
  }

  .cta-content {
    max-width: 100%;
    flex: 1;
  }

  .cta-title {
    font-size: clamp(14px, 3.5vw, 20px);
    padding-right: 0;
    margin: 0;
  }

  .cta-btn {
    padding: clamp(3px, 1vw, 5px) clamp(6px, 1.5vw, 10px);
    font-size: clamp(7px, 1.8vw, 11px);
    margin: clamp(-18px, 4vw, -24px) 0 0 0;
    border-radius: clamp(8px, 2vw, 14px);
  }

  .cta-image {
    flex: 0 0 auto;
    align-self: flex-start;
  }

  .cta-image img {
    width: clamp(120px, 45vw, 250px);
    max-width: 100%;
    position: static;
    top: auto;
    left: auto;
    z-index: 10;
    margin: clamp(-80px, -20vw, -90px) 0 0 0;
  }

  .cta-icon {
    display: none;
  }

  .cta-pattern {
    display: none;
  }

  .cta-box::before {
    display: none;
  }
}

/* STATS SECTION */
.stats-section {
  background: url("../imgs/stats-bg.webp") center/cover no-repeat;
  margin-top: -20px;
  position: relative;
  z-index: 5;
}

.stats-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 70px 0;
}

.stats-mini {
  color: #f4b000;
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.stats-section.section-visible .stats-mini {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.stats-title {
  font-weight: 800;
  line-height: 1.8;
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.stats-section.section-visible .stats-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/* STAT CARD */
.stat-card {
  background: transparent;
}

.col-lg-7 .col-6 {
  opacity: 0;
  transform: scale(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.stats-section.section-visible .col-lg-7 .col-6:nth-child(1) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}

.stats-section.section-visible .col-lg-7 .col-6:nth-child(2) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.8s;
}

.stats-section.section-visible .col-lg-7 .col-6:nth-child(3) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1s;
}

.stats-section.section-visible .col-lg-7 .col-6:nth-child(4) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1.2s;
}

.stat-icon-box {
  width: 130px;
  height: 100px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.stats-section.section-visible .col-6:nth-child(1) .stat-icon-box {
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.8s;
}

.stats-section.section-visible .col-6:nth-child(2) .stat-icon-box {
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.3s;
}

.stats-section.section-visible .col-6:nth-child(3) .stat-icon-box {
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.8s;
}

.stats-section.section-visible .col-6:nth-child(4) .stat-icon-box {
  animation: float 3s ease-in-out infinite;
  animation-delay: 2.3s;
}

@keyframes float {

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

  50% {
    transform: translateY(-15px);
  }
}

.stat-icon-box img {
  width: 46px;
}

.stat-meta {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.stats-section.section-visible .col-6:nth-child(1) .stat-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.stats-section.section-visible .col-6:nth-child(2) .stat-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.stats-section.section-visible .col-6:nth-child(3) .stat-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.stats-section.section-visible .col-6:nth-child(4) .stat-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}

.stat-meta h4 {
  color: #ffffff;
  font-weight: 800;
  font-size: 28px;
  margin: 0 0 6px;
}

.stat-meta p {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  opacity: 0.95;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .stats-overlay {
    padding: clamp(50px, 6vw, 70px) 0;
  }

  .stats-mini {
    font-size: clamp(12px, 1.2vw, 14px);
  }

  .stats-title {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.6;
  }

  .stat-icon-box {
    width: clamp(100px, 10vw, 130px);
    height: clamp(80px, 9vw, 110px);
    margin-bottom: 10px;
  }

  .stat-icon-box img {
    width: clamp(28px, 3vw, 38px);
  }

  .stat-meta h4 {
    font-size: clamp(18px, 2vw, 24px);
  }

  .stat-meta p {
    font-size: clamp(10px, 1.2vw, 13px);
  }
}

@media (max-width: 768px) {
  .stats-overlay {
    padding: 40px 0;
  }

  .stats-title {
    font-size: 18px;
    text-align: center;
  }

  .stat-icon-box {
    width: 135px;
    height: 160px;
  }

  .stat-meta h4 {
    font-size: 22px;
  }

  .stat-meta p {
    font-size: 12px;
  }

  .timeline-section .about-dots {
    display: none !important;
  }

  .timeline-section .orange-dots {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .stats-overlay {
    padding: clamp(20px, 5vw, 40px) 0;
  }

  .stats-mini {
    font-size: clamp(10px, 2.5vw, 14px);
  }

  .stats-title {
    font-size: clamp(12px, 3vw, 18px);
    line-height: 1.4;
    text-align: center;
  }

  .col-lg-5 {
    flex-basis: 100% !important;
    margin-bottom: clamp(15px, 4vw, 20px);
  }

  .col-lg-7 {
    flex-basis: 100% !important;
  }

  .col-lg-7 .row {
    gap: clamp(12px, 3vw, 20px);
  }

  .col-lg-7 .col-6 {
    flex: 0 0 calc(50% - clamp(6px, 1.5vw, 10px));
  }

  .stat-icon-box {
    width: clamp(70px, 25vw, 135px);
    height: clamp(70px, 25vw, 135px);
    margin: 0 auto clamp(8px, 2vw, 14px);
    border-radius: clamp(8px, 2vw, 12px);
  }

  .stat-icon-box img {
    width: clamp(22px, 10vw, 46px);
  }

  .stat-meta h4 {
    font-size: clamp(14px, 3vw, 22px);
    margin-bottom: clamp(3px, 1vw, 6px);
  }

  .stat-meta p {
    font-size: clamp(9px, 2.2vw, 12px);
    line-height: 1.3;
  }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: #eef4ea;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}

/* Lanterns (mirrors story logic for RTL) */
.testimonials-section .story-lantern {
  opacity: 0;
  transform: translateY(40px);
}

.testimonials-section .lantern-right {
  left: -30px;
  top: 180px;
  height: 200px;
}

.testimonials-section.section-visible .lantern-right {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.testimonials-section .lantern-left {
  left: -40px;
  bottom: -10px;
  height: 260px;
}

.testimonials-section.section-visible .lantern-left {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.testimonials-section .lantern-top {
  top: 20px;
  left: 10px;
  height: 120px;
}

.testimonials-section.section-visible .lantern-top {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.testimonials-section .lantern-bottom {
  bottom: -10px;
  left: 2px;
  height: 120px;
}

.testimonials-section.section-visible .lantern-bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

/* Hide all lanterns on screens smaller than 1200px */
@media (max-width: 1199px) {
  .testimonials-section .story-lantern {
    display: none !important;
  }
}

/* LEFT CONTENT */
.testimonials-mini {
  color: #1f9d55;
  font-size: 16px;
  font-weight: 720;
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.testimonials-section.section-visible .testimonials-mini {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.testimonials-title {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  line-height: 1.6;
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.testimonials-section.section-visible .testimonials-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.testimonials-desc {
  font-size: 15px;
  line-height: 2;
  color: #374151;
  max-width: 480px;
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.testimonials-section.section-visible .testimonials-desc {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

/* Rating */
.rating-box {
  background: #008c1b;
  padding: 15px 18px;
  border-radius: 8px;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.testimonials-section.section-visible .rating-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.rating-stars i {
  font-size: 20px;
  margin-right: 5px;
  margin-left: 5px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.rating-box:hover .rating-stars i {
  color: #f4b000;
  transform: translateY(-2px) scale(1.05);
}

.rating-value {
  font-weight: 800;
}

.rating-label {
  font-size: 13px;
  opacity: 0.9;
}

/* Dots */
.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.testimonial-dots .dot {
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  margin-top: 16px;
}

.testimonial-dots .dot.active {
  background: #1f9d55;
}

/* RIGHT VISUAL */
.testimonial-visual {
  position: relative;
  min-height: 420px;
  transform: translateX(-40px);
}

.testimonial-person {
  position: relative;
  z-index: 2;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #ffffff;
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 1.2s ease-out,
    transform 1.2s ease-out;
}

.testimonials-section.section-visible .testimonial-person {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.7s;
}

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

.testimonial-thumb {
  position: absolute;
  top: 40px;
  right: 420px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 7px solid #ffffff;
  z-index: 3;
  background: #fff;
  opacity: 0;
  transform: translateX(-80px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.testimonials-section.section-visible .testimonial-thumb {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.1s;
}

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

.testimonial-card {
  position: absolute;
  top: 400px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: #ffffff url("../imgs/grass.webp") no-repeat bottom center;
  background-size: cover;
  border-radius: 10px;
  padding: 3px 32px 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  z-index: 5;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.testimonials-section.section-visible .testimonial-card {
  opacity: 1;
  transform: translateY(-50%);
  transition-delay: 1.2s;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-bottom: 28px solid #ffffff;
}

.testimonial-text {
  margin-top: 35px;
  color: #6b7280;
  font-size: 14px;
  line-height: 2.05;
  text-align: right;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.testimonials-section.section-visible .testimonial-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}

.testimonial-meta {
  position: absolute;
  right: 23px;
  bottom: 90px;
  font-size: 13px;
  text-align: right;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.testimonials-section.section-visible .testimonial-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.6s;
}

.testimonial-name {
  font-weight: 800;
  color: #111827;
}

.testimonial-role {
  color: #6b7280;
  font-weight: 600;
}

.testimonial-grass {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 58px;
  object-fit: cover;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-section .lantern-right {
    left: -16px;
    top: 110px;
    height: 150px;
  }

  .testimonials-section .lantern-left {
    left: -24px;
    bottom: -18px;
    height: 180px;
  }

  .testimonials-section .lantern-top {
    top: -6px;
    left: 30px;
    height: 80px;
  }

  .testimonials-section .lantern-bottom {
    left: -6px;
    bottom: -24px;
    height: 90px;
  }

  .testimonials-title,
  .testimonials-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .rating-box {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-dots {
    justify-content: center;
  }

  .testimonial-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: none;
  }

  .testimonial-circle {
    position: absolute;
    right: 50%;
    top: 130px;
    width: 420px;
    height: 420px;
    transform: translateX(50%);
  }

  .testimonial-person {
    width: 420px;
    height: 420px;
    margin: 0;
  }

  .testimonial-thumb {
    display: none;
  }

  .testimonial-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-top: 20px;

    width: 100%;
    max-width: 520px;
    height: auto;

    padding: 22px 22px 80px;
    background-size: contain;
  }

  .testimonial-card::before {
    display: none;
  }

  .testimonial-meta {
    position: static;
    margin-top: 18px;
    text-align: right;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .testimonials-section {
    padding: clamp(60px, 7vw, 90px) 0;
    margin-bottom: clamp(60px, 7vw, 100px);
  }

  .testimonials-section .lantern-right {
    left: -24px;
    top: clamp(120px, 10vw, 150px);
    height: clamp(140px, 8vw, 180px);
  }

  .testimonials-section .lantern-left {
    left: -32px;
    bottom: clamp(-12px, 2vw, -4px);
    height: clamp(160px, 12vw, 220px);
  }

  .testimonials-section .lantern-top {
    top: clamp(-6px, 1vw, 4px);
    left: clamp(60px, 6vw, 100px);
    height: clamp(100px, 6vw, 120px);
  }

  .testimonials-section .lantern-bottom {
    left: clamp(0px, 2vw, 12px);
    bottom: clamp(-16px, 2vw, -8px);
    height: clamp(100px, 6vw, 120px);
  }

  .testimonials-mini {
    font-size: clamp(14px, 1.4vw, 16px);
  }

  .testimonials-title {
    font-size: clamp(24px, 2.8vw, 30px);
    line-height: 1.5;
  }

  .testimonials-desc {
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.8;
    max-width: 520px;
  }

  .rating-box {
    padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.4vw, 16px);
  }

  .rating-stars i {
    font-size: clamp(16px, 1.6vw, 20px);
    margin-inline: clamp(3px, 0.6vw, 6px);
  }

  .rating-label {
    font-size: clamp(11px, 1.2vw, 13px);
  }

  .testimonial-visual {
    min-height: clamp(360px, 45vw, 500px);
  }

  .testimonial-person {
    width: clamp(360px, 28vw, 420px);
    height: clamp(360px, 28vw, 420px);
    border-width: clamp(6px, 0.6vw, 8px);
  }

  .testimonial-thumb {
    width: clamp(120px, 8vw, 110px);
    height: clamp(120px, 8vw, 110px);
    top: clamp(6px, 1vw, 16px);
    right: clamp(240px, 14vw, 230px);
    border-width: clamp(4px, 0.5vw, 6px);
  }

  .testimonial-card {
    width: clamp(250px, 40vw, 460px);
    height: clamp(150px, 32vw, 240px);
    padding: clamp(14px, 2vw, 22px) clamp(16px, 2vw, 26px) clamp(60px, 6vw, 90px);
    right: clamp(-270px, 15vw, -120px);
    top: clamp(320px, 36vw, 420px);
    background-size: 140% auto;
  }

  .testimonial-text {
    font-size: clamp(12px, 1.3vw, 14px);
    line-height: 1.8;
    margin-top: 15px;
  }

  .testimonial-meta {
    font-size: clamp(11px, 1.1vw, 13px);
    right: clamp(22px, 2vw, 32px);
    bottom: clamp(80px, 5vw, 85px);
  }

  .testimonial-grass {
    height: clamp(65px, 7vw, 90px);
  }
}

@media (min-width: 1201px) {
  .testimonial-visual {
    transform: translateX(-48px);
  }

  .testimonial-person {
    width: clamp(520px, 30vw, 560px);
    height: clamp(520px, 30vw, 560px);
  }

  .testimonial-thumb {
    width: clamp(150px, 10vw, 180px);
    height: clamp(150px, 10vw, 180px);
    top: clamp(20px, 1.6vw, 28px);
    right: clamp(360px, 18vw, 340px);
  }

  .testimonial-card {
    width: clamp(280px, 22vw, 350px);
    height: clamp(280px, 26vw, 340px);
    padding: clamp(14px, 1.6vw, 20px) clamp(18px, 1.8vw, 24px) clamp(70px, 6vw, 90px);
    right: clamp(-180px, 9vw, -250px);
    top: clamp(320px, 32vw, 360px);
    background-size: 115% auto;
  }

  .testimonials-section .lantern-right {
    left: -18px;
    top: 200px;
    height: 180px;
  }

  .testimonials-section .lantern-left {
    left: -24px;
    bottom: -12px;
    height: 210px;
  }

  .testimonials-section .lantern-top {
    top: 95px;
    right: 1px;
    height: 90px;
  }

  .testimonials-section .lantern-bottom {
    left: 1px;
    top: 350px;
    height: 100px;
  }
}

@media (min-width: 577px) and (max-width: 988px) {
  .testimonials-section {
    padding: 60px 0;
    margin-bottom: 90px;
  }

  .testimonials-section .lantern-right {
    left: -18px;
    top: 100px;
    height: 150px;
  }

  .testimonials-section .lantern-left {
    left: -24px;
    bottom: -12px;
    height: 180px;
  }

  .testimonials-section .lantern-top {
    top: -4px;
    left: 40px;
    height: 90px;
  }

  .testimonials-section .lantern-bottom {
    left: -6px;
    bottom: -20px;
    height: 90px;
  }

  .testimonials-mini {
    font-size: 15px;
    text-align: right;
  }

  .testimonials-title {
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.5;
    text-align: right;
  }

  .testimonials-desc {
    font-size: 14px;
    line-height: 1.8;
    max-width: 100%;
    text-align: right;
  }

  .rating-box {
    padding: 12px 14px;
    margin: 0 0 14px;
    align-self: flex-start;
  }

  .rating-stars i {
    font-size: 16px;
    margin-inline: 4px;
  }

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

  .testimonial-dots {
    gap: 6px;
    margin-top: 6px;
    justify-content: flex-start;
  }

  .testimonial-dots .dot {
    width: 10px;
    height: 10px;
  }

  .testimonial-visual {
    align-items: center;
    transform: none;
  }

  .testimonial-circle {
    top: 110px;
    width: 340px;
    height: 340px;
  }

  .testimonial-person {
    width: 340px;
    height: 340px;
    border-width: 6px;
  }

  .testimonial-thumb {
    display: block;
    width: 100px;
    height: 100px;
    top: 12px;
    right: calc(50% - 170px);
    border-width: 5px;
    transform: none;
    opacity: 1;
  }

  .testimonial-card {
    width: clamp(320px, 88vw, 460px);
    max-width: 90%;
    min-height: 280px;
    padding: 20px 20px 90px;
    margin-top: 40px;
    position: static;
    background-size: 170% auto;
    background-position: center bottom;
  }

  .testimonial-card::before {
    display: block;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.85;
    margin-top: 18px;
  }

  .testimonial-meta {
    font-size: 12px;
    margin-top: 12px;
  }

  .testimonial-grass {
    height: 90px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: clamp(30px, 8vw, 50px) 0;
    margin-bottom: clamp(50px, 12vw, 100px);
  }

  .testimonials-mini {
    font-size: clamp(12px, 3vw, 16px);
    text-align: right;
  }

  .testimonials-title {
    font-size: clamp(14px, 4vw, 22px);
    line-height: 1.5;
    text-align: right;
  }

  .testimonials-desc {
    font-size: clamp(11px, 2.8vw, 14px);
    line-height: 1.7;
    text-align: right;
    max-width: 100%;
  }

  .rating-box {
    padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 16px);
    margin-bottom: clamp(12px, 3vw, 16px);
  }

  .rating-stars i {
    font-size: clamp(12px, 3.5vw, 16px);
    margin-right: clamp(3px, 1vw, 5px);
    margin-left: clamp(3px, 1vw, 5px);
  }

  .testimonial-dots {
    margin-top: clamp(4px, 1vw, 6px);
    gap: clamp(4px, 1vw, 6px);
    justify-content: flex-start;
    margin-right: 2px;
  }

  .testimonial-dots .dot {
    width: clamp(8px, 2vw, 12px);
    height: clamp(8px, 2vw, 12px);
  }

  .testimonial-circle {
    top: clamp(80px, 20vw, 120px);
    width: clamp(180px, 55vw, 320px);
    height: clamp(180px, 55vw, 320px);
  }

  .testimonial-person {
    width: clamp(180px, 55vw, 320px);
    height: clamp(180px, 55vw, 320px);
    border-width: clamp(4px, 1.5vw, 6px);
  }

  .testimonial-thumb {
    display: block;
    width: clamp(60px, 18vw, 100px);
    height: clamp(60px, 18vw, 100px);
    top: clamp(10px, 3vw, 20px);
    right: clamp(45px, 10vw, 10px);
    left: auto;
    border-width: clamp(3px, 1vw, 5px);
    z-index: 4;
  }

  .testimonial-card {
    width: clamp(240px, 88vw, 420px);
    max-width: 88%;
    height: auto;
    min-height: clamp(180px, 50vw, 280px);
    padding: clamp(12px, 3vw, 18px);
    border-radius: clamp(8px, 2vw, 10px);
    margin-top: clamp(40px, 10vw, 70px);
    position: static;
  }

  .testimonial-card::before {
    display: block;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial-text {
    font-size: clamp(10px, 2.5vw, 13px);
    line-height: 1.7;
    margin-top: clamp(15px, 4vw, 25px);
    width: 100%;
    padding: 0;
  }

  .testimonial-meta {
    font-size: clamp(9px, 2.2vw, 12px);
    margin-top: clamp(10px, 3vw, 15px);
    position: static;
    width: 100%;
    padding: 0;
  }

  .testimonial-grass {
    height: clamp(270px, 190vw, 300px);
  }

  .testimonial-visual {
    transform: none;
  }
}

@media (min-width: 1201px) and (max-width: 1288px) {
  .testimonial-card {
    width: clamp(280px, 22vw, 350px);
    height: clamp(250px, 26vw, 340px);
    padding: clamp(14px, 1.6vw, 20px) clamp(18px, 1.8vw, 24px) clamp(70px, 6vw, 90px);
    right: clamp(-100px, 9vw, -250px);
    top: clamp(320px, 32vw, 360px);
    background-size: 115% auto;
  }

  .testimonial-text {
    font-size: clamp(13px, 2.5vw, 13px);
    line-height: 1.7;
    margin-top: clamp(15px, 4vw, 25px);
    width: 100%;
    padding: 0;
  }

  .testimonial-meta {
    font-size: clamp(9px, 2.2vw, 12px);
    margin-top: clamp(15px, 3vw, 15px);
    position: static;
    width: 100%;
    padding: 0;
  }

  .testimonial-grass {
    height: clamp(380px, 190vw, 400px);
  }
}