/* ============================================
   NOURVERSE WEBSITE - MAIN STYLESHEET
   Author: Web Team
   Purpose: Complete responsive design with mobile, tablet, and desktop support
   Last Updated: January 2026
   ============================================ */

/* ============================================
   1. BASE STYLES & VARIABLES
   ============================================ */
:root {
  --topbar-h: 40px;
  --nav-h: 72px;
  --header-h: 0px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Cairo", sans-serif;
}

body {
  overflow-x: hidden;
}

body.has-sticky-nav {
  padding-top: var(--nav-h);
}

.site-header {
  position: relative;
  z-index: 10;
}

.site-header .navbar {
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease;
}

.px-64 {
  padding-inline: 64px !important;
}

.px-140 {
  padding-inline: 140px !important;
}

/* ============================================
   2. TOP BAR SECTION
   ============================================ */
.top-bar {
  background-color: #213400;
  height: var(--topbar-h);
}

.top-info,
.follow-text {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.top-info i,
.social-icons i {
  color: #e7b900;
  font-size: 16px;
}

.social-icons a,
.top-info-email a,
.top-info-location a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-icons a:hover i,
.top-info-email a:hover i,
.top-info-email a:hover span,
.top-info-location a:hover i,
.top-info-location a:hover span {
  color: #fff;
}

.follow-text {
  width: 102px;
  height: 37px;
  display: flex;
  align-items: center;
}

.divider {
  opacity: 0.7;
}

/* ============================================
   3. NAVBAR STYLES
   ============================================ */
.logo-img {
  width: 96px;
  height: 64px;
  object-fit: contain;
}

.nav-links {
  gap: 18px;
}

.nav-links .nav-link {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  padding: 0 20px;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: #0f8a2c;
}

.serch-sm {
  flex: 1 1 220px;
  max-width: 280px;
}

@media (min-width: 992px) {
  .search-sm {
    max-width: 300px;
  }
}

.search-box {
  position: relative;
  width: 240px;
}

.search-input {
  height: 40px;
  padding-right: 44px;
  padding-left: 12px;
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid #e3e7ea;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa0a6;
  font-size: 14px;
  pointer-events: none;
}

.search-input:focus {
  border-color: #7bcf8e;
  box-shadow: 0 0 0 3px rgba(123, 207, 142, 0.2);
}

.btn-success {
  height: 40px;
  border-radius: 6px;
  font-weight: 600;
  background-color: #008c1b;
  border-color: #008c1b;
  transition: all 0.2s ease;
}

.btn-success:hover {
  background-color: #007a17;
  border-color: #007a17;
}

.lang-btn {
  background-color: transparent;
  color: #008c1b;
  text-decoration: none;
  border: 2px solid rgba(0, 140, 27, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  direction: ltr;
}

.lang-btn:hover {
  background-color: #008c1b;
  color: white;
  border-color: #008c1b;
}

.lang-flag {
  width: 16px;
  height: 10px;
  object-fit: cover;
  display: inline-block;
  border-radius: 2px;
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(45deg, #eefff1, #fff9e5, #f3fff5);
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
}

.hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  width: 520px;
  text-align: right;
}

.hero-mini-lamp {
  width: 34px;
  height: auto;
  opacity: 0.9;
}

.hero-title {
  position: relative;
  display: inline-block;
  margin: 0;
  margin-top: 48px;
  font-weight: 700;
  font-size: 61.2px;
  line-height: 72px;
  color: #008c1b;
  letter-spacing: 0.2px;
}

.hero-subtitle {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 700;
  color: #d4a600;
}

.hero-desc {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #222;
  max-width: 440px;
}

.hero-magic-lamp {
  display: block;
  width: 85px;
  height: 85px;
  margin-top: 30px;
  margin-right: 340px;
  animation: hero-lamp-pulse 1.8s ease-in-out infinite;
  transform-origin: center;
}

.hero-btn {
  margin-top: -180px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
}

.hero-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;
}

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

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

.hero-btn-icon {
  font-size: 16px;
  transform: translateY(-1px);
}

.hero-mark-wrap {
  position: absolute;
  right: 200px;
  top: 10px;
  width: 87px;
  height: 26px;
  overflow: hidden;
  transform: rotate(-37.62deg);
  pointer-events: none;
}

.hero-mark-img {
  width: 87px;
  height: auto;
  display: block;
  transform: translateY(-2px) scaleX(-1);
}

.hero-title,
.hero-subtitle,
.hero-desc,
.hero-btn {
  opacity: 0;
  animation: hero-slide-in 0.8s ease forwards;
}

.hero-title {
  animation-delay: 0.1s;
}

.hero-subtitle {
  animation-delay: 0.3s;
}

.hero-desc {
  animation-delay: 0.5s;
}

.hero-btn {
  animation-delay: 0.7s;
}

.hero-genie {
  position: absolute;
  right: 190px;
  bottom: 40px;
  width: 60px;
  opacity: 0.35;
}

/* Lantern and Visual Elements */
.hero-lantern {
  position: absolute;
  top: 30px;
  width: 90px;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 0 18px rgba(255, 200, 90, 0.55));
}

.lantern {
  right: 50px;
  transform: rotate(20deg);
  transform-origin: top center;
}

.hero-visual {
  position: relative;
  width: auto;
  height: 600px;
  transform: translateX(-100px);
  top: -50px;
}

/* Lantern Glow Effect */
.lantern-glow {
  position: absolute;
  width: 124px;
  height: 130px;
  background: #ffcc01;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.glow-left {
  top: 160px;
  left: 90px;
}

.glow-right {
  top: 200px;
  right: -30px;
}

/* Rings */
.ring {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  z-index: 0;
}

.ring-green {
  width: 201px;
  height: 180px;
  border: 30px solid #008c1b;
  left: 130px;
  bottom: 95px;
  opacity: 0;
  transform: scale(0.8);
  animation: hero-ring-in 0.9s ease forwards;
  animation-delay: 0.1s;
}

.ring-yellow {
  width: 260px;
  height: 240px;
  border: 30px solid #ffcc01;
  right: -10px;
  top: 270px;
  opacity: 0;
  transform: scale(0.8);
  animation: hero-ring-in 0.9s ease forwards;
  animation-delay: 0.15s;
}

/* Mosque Image */
.mosque {
  position: absolute;
  left: 80px;
  bottom: 0;
  width: 620px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-60px);
  animation: hero-drop-in 1s ease forwards;
  animation-delay: 0.3s;
}

.mosque-mobile {
  display: none;
}

.mosque-ipad {
  display: none;
}

@keyframes hero-ring-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-slide-in {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-drop-in {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-lamp-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(0, 140, 27, 0));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px rgba(140, 140, 0, 0.805));
  }
}

/* ============================================
   5. HERO STAT CARDS
   ============================================ */
.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  z-index: 4;
  min-height: 111px;
}

.stat-left {
  width: 200px;
  height: 111px;
  left: 100px;
  bottom: 110px;
}

.stat-right {
  width: 227px;
  height: 111px;
  left: 550px;
  bottom: 160px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: translateX(-8px);
  animation: stat-icon-breathe 2.6s ease-in-out infinite;
}

.stat-icon i {
  font-size: 32px;
  width: 30px;
  height: 40px;
}

.stat-img-icon {
  width: 49px;
  height: 49px;
  object-fit: contain;
  display: block;
}

.stat-icon.yellow {
  color: #ffcc01;
}

.stat-icon.green {
  color: #008c1b;
}

/* ============================================
   6. STICKY HEADER STATE
   ============================================ */
.site-header.is-scrolled .top-bar {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.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);
  }
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: conic-gradient(#008c1b var(--scroll-progress, 0deg), #e6ecea 0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #008c1b;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1001;
}

.scroll-top i {
  background: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

@keyframes stat-icon-breathe {
  0%,
  100% {
    transform: translateX(-8px) scale(1);
  }
  50% {
    transform: translateX(-8px) scale(1.04);
  }
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 20px;
  font-weight: 600;
}

.stat-num {
  font-size: 30px;
  font-weight: 700;
  color: #111;
}

.stat-label {
  font-size: 13px;
  color: #555;
}

/* Icons Row (lantern items) */
.lantern-row {
  background: #fff;
  width: 100%;
  left: 0;
  right: 0;
  padding-inline: 0 !important;
  margin-inline: 0 !important;
  overflow-x: hidden !important;
}

.lantern-item {
  width: clamp(110px, 10vw, 140px);
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.5;
  flex: 0 1 14vw;
  max-width: 140px;
  min-width: 100px;
  animation: lantern-parallax 3s ease-in-out infinite;
}

.lantern-row-wrap {
  row-gap: 24px;
  animation: lantern-row-drift 2s ease-in-out infinite alternate;
  flex-wrap: nowrap !important;
  justify-content: space-around !important;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  overflow-x: visible !important;
  width: 100vw;
  margin-inline: calc(-50vw + 50%);
  padding-inline: clamp(20px, 5vw, 40px);
}

@keyframes lantern-parallax {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes lantern-row-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20px);
  }
}

@media (max-width: 1200px) {
  .lantern-row-wrap .lantern-item:nth-child(n + 7) {
    display: none;
  }
}

@media (max-width: 992px) {
  .lantern-row-wrap {
    gap: clamp(16px, 2.5vw, 32px);
  }

  .lantern-row-wrap .lantern-item:nth-child(n + 6) {
    display: none;
  }
}

@media (max-width: 768px) {
  .lantern-row {
    overflow-x: hidden;
    padding-block: 24px;
  }

  .lantern-row-wrap {
    flex-wrap: nowrap !important;
    justify-content: space-around !important;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
  }

  .lantern-row-wrap .lantern-item {
    width: clamp(78px, 18vw, 110px);
    height: auto;
    flex: 0 1 22vw;
    min-width: 78px;
    max-width: 110px;
    animation: lantern-parallax 3s ease-in-out infinite;
  }

  .lantern-row-wrap .lantern-item:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 576px) {
  .lantern-row-wrap {
    gap: clamp(10px, 1.5vw, 16px);
  }

  .lantern-row-wrap .lantern-item:nth-child(n + 4) {
    display: none;
  }
}

/* ============================================
   7. ABOUT SECTION
   ============================================ */
.about-sec {
  direction: rtl;
  background: #fafafa;
  padding-block: 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-head {
  text-align: right;
  margin: 0 20px;
}

.about-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #008c1b;
  margin-bottom: 8px;
  opacity: 0;
}

.about-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  opacity: 0;
}

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

.about-title-mark::after {
  content: "";
  position: absolute;
  right: -20px;
  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-desc {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.95;
  color: #7a7a7a;
  max-width: 560px;
  margin-top: 40px;
  opacity: 0;
}

.about-features {
  width: 100%;
  display: flex;
  gap: 28px;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 300px;
  opacity: 0;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.feature-icon:hover {
  transform: scale(1.06);
}

.feature-icon-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.feature-icon i {
  font-size: 22px;
  line-height: 1;
}

.feature-icon--green {
  background: #e9f8ef;
  color: #008c1b;
}

.feature-icon--yellow {
  background: #fff7db;
  color: #ffb800;
}

.feature-body {
  text-align: right;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.feature-text {
  font-size: 13px;
  color: #8a8a8a;
  line-height: 1.4;
}

.about-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 520px;
  overflow: visible;
}

.about-main-img {
  position: absolute;
  top: 55px;
  right: 150px;
  width: 444px;
  height: 480px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  border: 10px solid #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 4;
  opacity: 0;
  transform: translateX(70px);
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-sub-img {
  position: absolute;
  width: 289px;
  height: 278px;
  right: 20px;
  top: 220px;
  border-radius: 15px;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  z-index: 4;
  opacity: 0;
  transform: translateY(50px);
}

.about-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  right: 500px;
  bottom: -14px;
  width: 149px;
  height: 88px;
  background: #fff;
  border-radius: 8px;

  padding-inline: 12px;
  text-align: right;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  z-index: 5;
  opacity: 0;
  transform: scale(0.96);
}

.about-badge-num {
  font-weight: 800;
  color: #008c1b;
  line-height: 1.2;
}

.about-badge-text {
  font-size: 12px;
  color: #8a8a8a;
}

.about-visual .ring-green {
  width: 269px;
  height: 272px;
  left: -90px;
  bottom: -10px;
  opacity: 0;
  transform: scale(0.85);
}

.about-visual .ring-yellow {
  width: 269px;
  height: 272px;
  right: 20px;
  top: 40px;
  opacity: 0;
  transform: scale(0.85);
}

.about-dots {
  width: 100px;
  height: 100px;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  place-items: center;
  gap: 0;
  z-index: 3;
  pointer-events: none;

  position: absolute;
  left: -70px;
  top: 20px;
}

.about-dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #008c1b;
}

.about-actions .hero-btn {
  opacity: 0;
}

.about-sec.is-visible .about-kicker {
  animation: about-rise 1s ease forwards;
  animation-delay: 0.15s;
}

.about-sec.is-visible .about-title {
  animation: about-rise 1s ease forwards;
  animation-delay: 0.3s;
}

.about-sec.is-visible .about-desc {
  animation: about-rise 1s ease forwards;
  animation-delay: 0.45s;
}

.about-sec.is-visible .about-feature {
  animation: about-zoom-out 0.95s ease forwards;
}

.about-sec.is-visible .about-feature:nth-child(1) {
  animation-delay: 0.7s;
}

.about-sec.is-visible .about-feature:nth-child(2) {
  animation-delay: 0.85s;
}

.about-sec.is-visible .about-main-img {
  animation: about-main-in 1.2s ease forwards;
  animation-delay: 0.2s;
}

.about-sec.is-visible .about-sub-img {
  animation: about-sub-in 1.2s ease forwards;
  animation-delay: 0.45s;
}

.about-sec.is-visible .about-badge {
  animation: about-zoom-out 0.95s ease forwards;
  animation-delay: 0.65s;
}

.about-sec.is-visible .about-visual .ring-green {
  animation: about-ring-in 1.2s ease forwards;
  animation-delay: 0.25s;
}

.about-sec.is-visible .about-visual .ring-yellow {
  animation: about-ring-in 1.2s ease forwards;
  animation-delay: 0.35s;
}

.about-sec.is-visible .about-dots {
  animation: about-dots-drift 3.5s ease-in-out infinite alternate;
}

.about-sec.is-visible .about-actions .hero-btn {
  animation: about-rise 1s ease forwards;
  animation-delay: 0.95s;
}

@keyframes about-main-in {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes about-sub-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-ring-in {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes about-dots-drift {
  from {
    transform: translateX(-6px);
  }
  to {
    transform: translateX(6px);
  }
}

@keyframes about-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-zoom-out {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 992px) {
  .about-sec {
    min-height: auto;
  }

  .about-features {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ============================================
   8. VIDEO SECTION
   ============================================ */
.video-box {
  position: relative;
  width: 100%;
  max-width: 1325px;
  height: 598px;
  background: #ffffff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  z-index: 1;
  pointer-events: none;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  color: #008c1b;
  border: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  overflow: visible;
  transition: transform 0.3s ease;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-play-btn i {
  font-size: 20px;
  transform: translateX(1px);
}

.video-play-btn::before,
.video-play-btn::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(0, 140, 27, 0.55);
  opacity: 0;
  animation: play-pulse 1.8s ease-out infinite;
}

.video-play-btn::after {
  inset: -24px;
  animation-delay: 0.5s;
  border-color: rgba(231, 185, 0, 0.5);
}

@keyframes play-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.1;
  }
  30% {
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ============================================
   8.1 VIDEO MODAL
   ============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 2000;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.video-modal-content {
  position: relative;
  width: min(880px, 86vw);
  background: #0b0b0b;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 576px) {
  .video-modal-content {
    padding: 12px;
    border-radius: 14px;
  }

  .video-modal-close {
    top: 8px;
    right: 8px;
  }
}

/* ============================================
   9. FOOTER SECTION
   ============================================ */
.footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 0;
}

.footer .container {
  max-width: 1140px;
}

.footer-logo {
  height: 70px;
}

.footer-desc {
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  line-height: 32px;
  font-weight: 500;
  color: #000000;
  max-width: 521px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: #f5e7b8;
  color: #008c1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.footer-title {
  font-family: "Cairo", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #16a34a;
}
.footer-links {
  margin: 0;
  padding: 0;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  padding: 8px 0;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-link:hover {
  color: #16a34a;
  transform: translateX(6px);
}

.footer-link:hover::before {
  color: #16a34a;
}

.footer-arrow {
  font-size: 16px;
  margin-left: 4px;
  color: #111827;
  transition: color 0.2s ease;
}

[dir="rtl"] .footer-arrow {
  margin-left: 0;
  margin-right: 4px;
  transform: rotate(180deg);
}

.footer-link:hover .footer-arrow {
  color: #16a34a;
}

/* ============================================
   10. NEWSLETTER FORM
   ============================================ */
.newsletter {
  width: 100%;
  max-width: 360px;
}

.newsletter-btn {
  width: 64px;
  height: 56px;
  border: 0;
  border-radius: 0;
  padding: 0;
  flex: 0 0 64px;
  background: linear-gradient(90deg, #e7b900 0%, #008c1b 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.15);
}

.newsletter-btn i {
  font-size: 22px;
  color: #ffffff;
}

.footer-sub {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.newsletter-input {
  height: 56px;
  border: 0;
  border-radius: 0;
  padding: 0 18px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  background: transparent;
  box-shadow: none;
  transition: background 0.2s ease;
}

.newsletter-input:focus {
  background: rgba(0, 140, 27, 0.05);
  box-shadow: none;
}

.newsletter-group {
  width: 360px;
  height: 56px;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(0, 140, 27, 0.28);
  background: #fff;
  flex-wrap: nowrap;
}

.newsletter-group .form-control:focus,
.newsletter-group .btn:focus {
  box-shadow: none;
}

/* ============================================
   11. FOOTER DECORATIONS
   ============================================ */
.footer-deco {
  position: absolute;
  width: 232px;
  height: 241px;
  pointer-events: none;
  opacity: 0.6;
  background-size: 14px 14px;
  transform-origin: center;
  z-index: 0;
}

.footer-deco--green {
  left: -160px;
  bottom: 50px;
  transform: rotate(-50deg);
  background-image: radial-gradient(#008c1b 1.5px, transparent 1.5px);
}

.footer-deco--gold {
  right: -130px;
  bottom: 40px;
  transform: rotate(-37.39deg);
  background-image: radial-gradient(#e7b900 1.5px, transparent 1.5px);
  opacity: 0.55;
}

/* ============================================
   12. FOOTER MAIN & BOTTOM
   ============================================ */
.footer-main {
  background: #f3f6f5;
  padding: 20px 20px 70px;
  position: relative;
}

/* ensure footer content sits above decorative dots */
.footer-main .container {
  position: relative;
  z-index: 1;
}

.footer-main .row > [class*="col-"]:not(:first-child) {
  margin-top: 50px;
}

.footer-main .row {
  --bs-gutter-x: 65px;
}

.footer-bottom {
  padding: clamp(8px, 1vw, 12px) 0;
  font-family: "Cairo", sans-serif;
  font-size: clamp(11px, 1.2vw, 14px);
  color: #111827;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  background: #f3f6f5;
  border-top: 1px solid #bababa;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  direction: ltr;
  width: 100%;
  padding-inline: clamp(12px, 2vw, 24px);
  gap: clamp(180px, 40vw, 1200px); /* مطابق للإنجليزي */
}

.footer-bottom a {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #16a34a;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: clamp(3px, 0.8vw, 8px);
  margin-inline-start: 0;
  margin-inline-end: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #16a34a;
}

.footer-bottom-links .sep {
  color: #9ca3af;
}

.footer-bottom .sep {
  color: #9ca3af;
}

.footer-bottom-copy {
  font-size: clamp(11px, 1vw, 13px);
  color: #374151;
  margin-inline-start: auto;
  margin-inline-end: 0;
  white-space: nowrap;
}

.footer-bottom-copy span {
  color: #16a34a;
  font-weight: 600;
}

/* ============================================
   13. RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Small desktop (990px - 1080px): Extra small sizes for tight screens */
@media (min-width: 990px) and (max-width: 1080px) {
  /* Navbar scaling - smallest gaps and fonts */

  .logo-img {
    width: clamp(60px, 5.5vw, 70px);
    height: clamp(45px, 4vw, 50px);
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links .nav-link {
    font-size: 12px;
    padding: 0 8px;
  }

  .search-box {
    width: clamp(220px, 20vw, 240px);
  }

  .search-input {
    height: 32px;
    font-size: 11px;
    padding-right: 40px;
    padding-left: 10px;
  }

  .btn-success {
    height: 32px;
    font-size: 11px;
    padding-inline: 12px;
  }

  /* Hero section scaling - compact sizes */
  .hero-content {
    width: clamp(340px, 32vw, 380px);
  }

  .hero-mini-lamp {
    width: 22px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 44px;
    margin-top: 25px;
  }

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

  .hero-desc {
    font-size: 12px;
    max-width: 300px;
    line-height: 1.6;
  }

  .hero-magic-lamp {
    width: 56px;
    height: 56px;
    margin-top: 18px;
    margin-right: 200px;
  }

  .hero-btn {
    margin-top: -120px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero-btn-icon {
    font-size: 12px;
  }

  .hero-mark-wrap {
    right: 120px;
    width: 56px;
    height: 18px;
  }

  .hero-mark-img {
    width: 56px;
  }

  .hero-genie {
    right: 110px;
    bottom: 24px;
    width: 38px;
  }

  .hero-lantern {
    width: 58px;
    top: 18px;
  }

  .lantern {
    right: 30px;
  }

  .hero-visual {
    height: 380px;
    transform: translateX(-60px);
    top: -30px;
  }

  .lantern-glow {
    width: 80px;
    height: 84px;
  }

  .glow-left {
    top: 100px;
    left: 58px;
  }

  .glow-right {
    top: 130px;
    right: -18px;
  }

  .ring-green {
    width: 128px;
    height: 114px;
    border: 18px solid #008c1b;
    left: 80px;
    bottom: 60px;
  }

  .ring-yellow {
    width: 168px;
    height: 154px;
    border: 18px solid #ffcc01;
    right: -6px;
    top: 175px;
  }

  .mosque {
    left: 50px;
    width: 400px;
  }

  .stat-card {
    border-radius: 5px;
  }

  .stat-left {
    width: 110px;
    height: 56px;
    left: 150px;
    bottom: 30px;
  }

  .stat-right {
    width: 122px;
    height: 56px;
    left: 400px;
    bottom: 95px;
  }

  .stat-icon {
    width: 34px;
    height: 34px;
  }

  .stat-icon i {
    font-size: 16px;
  }

  .stat-img-icon {
    width: 27px;
    height: 27px;
  }

  .stat-num {
    font-size: 15px;
  }

  .stat-label {
    font-size: 8px;
  }

  /* About section scaling - compact sizes */
  .about-label {
    font-size: 11px;
  }

  .about-title {
    font-size: 21px;
  }

  .about-desc {
    font-size: 11px;
    max-width: 360px;
    margin-top: 26px;
    line-height: 1.75;
  }

  .about-features {
    gap: 14px;
  }

  .about-feature {
    gap: 9px;
    min-width: 200px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
  }

  .feature-icon-img {
    width: 25px;
    height: 25px;
  }

  .feature-icon i {
    font-size: 15px;
  }

  .feature-title {
    font-size: 12px;
  }

  .feature-text {
    font-size: 10px;
    line-height: 1.3;
  }

  .about-visual {
    max-width: 360px;
    height: 330px;
  }

  .about-main-img {
    top: 35px;
    right: 95px;
    width: 290px;
    height: 315px;
    border-radius: 11px;
    border-width: 7px;
  }

  .about-sub-img {
    width: 185px;
    height: 178px;
    right: 14px;
    top: 140px;
    border-radius: 11px;
    border-width: 7px;
  }

  .about-badge {
    right: 310px;
    bottom: -10px;
    width: 100px;
    height: 58px;
    border-radius: 5px;
    padding-inline: 8px;
  }

  .about-badge-num {
    font-size: 15px;
  }

  .about-badge-text {
    font-size: 9px;
  }

  .about-visual .ring-green {
    width: 185px;
    height: 188px;
    border-width: 18px;
    left: -60px;
    bottom: -8px;
  }

  .about-visual .ring-yellow {
    width: 185px;
    height: 188px;
    border-width: 18px;
    right: 14px;
    top: 26px;
  }

  .about-dots {
    width: 66px;
    height: 66px;
    left: -45px;
    top: 13px;
  }

  .about-dots .dot {
    width: 3.5px;
    height: 3.5px;
  }

  /* Footer newsletter scaling */
  .newsletter {
    max-width: 280px;
  }

  .newsletter-group {
    width: 280px;
    height: 48px;
  }

  .newsletter-input {
    height: 48px;
    padding: 0 14px;
    font-size: 12px;
  }

  .newsletter-btn {
    width: 56px;
    height: 48px;
    flex: 0 0 56px;
  }

  .newsletter-btn i {
    font-size: 19px;
  }

  .footer-sub {
    font-size: 12px;
  }
}

/* Desktop responsive (1081px - 1290px): Smaller sizes for medium desktop */
@media (min-width: 1081px) and (max-width: 1290px) {
  /* Navbar scaling - smaller gaps and fonts */
  .logo-img {
    width: clamp(70px, 6vw, 80px);
    height: clamp(50px, 4.5vw, 56px);
  }

  .nav-links {
    gap: clamp(6px, 0.8vw, 12px);
  }

  .nav-links .nav-link {
    font-size: clamp(11px, 1vw, 13px);
    padding: 0 clamp(8px, 0.9vw, 12px);
  }

  .search-box {
    width: clamp(210px, 20vw, 260px);
  }

  .search-input {
    height: clamp(32px, 2.8vw, 36px);
    font-size: clamp(11px, 0.9vw, 12px);
  }

  .btn-success {
    height: clamp(32px, 2.8vw, 36px);
    font-size: clamp(11px, 0.95vw, 13px);
    padding-inline: clamp(12px, 1vw, 16px);
  }

  /* Hero section scaling - reduced sizes */
  .hero-content {
    width: clamp(380px, 34vw, 440px);
  }

  .hero-mini-lamp {
    width: clamp(24px, 2.2vw, 28px);
  }

  .hero-title {
    font-size: clamp(40px, 3.8vw, 48px);
    line-height: clamp(48px, 4.5vw, 56px);
    margin-top: clamp(30px, 3vw, 36px);
  }

  .hero-subtitle {
    font-size: clamp(16px, 1.4vw, 18px);
  }

  .hero-desc {
    font-size: clamp(13px, 1.1vw, 14px);
    max-width: clamp(320px, 30vw, 360px);
    line-height: 1.7;
  }

  .hero-magic-lamp {
    width: clamp(60px, 5.5vw, 70px);
    height: clamp(60px, 5.5vw, 70px);
    margin-top: clamp(20px, 2vw, 24px);
    margin-right: clamp(240px, 22vw, 280px);
  }

  .hero-btn {
    margin-top: clamp(-130px, -12vw, -150px);
    padding: clamp(8px, 0.9vw, 10px) clamp(18px, 1.8vw, 20px);
    font-size: clamp(13px, 1.1vw, 14px);
  }

  .hero-btn-icon {
    font-size: clamp(12px, 1.1vw, 14px);
  }

  .hero-mark-wrap {
    right: clamp(140px, 13vw, 160px);
    width: clamp(60px, 5.5vw, 72px);
    height: clamp(18px, 1.7vw, 22px);
  }

  .hero-mark-img {
    width: clamp(60px, 5.5vw, 72px);
  }

  .hero-genie {
    right: clamp(130px, 12vw, 150px);
    bottom: clamp(28px, 2.7vw, 32px);
    width: clamp(42px, 4vw, 48px);
  }

  .hero-lantern {
    width: clamp(62px, 5.8vw, 72px);
    top: clamp(20px, 2vw, 24px);
  }

  .lantern {
    right: clamp(34px, 3.2vw, 40px);
  }

  .hero-visual {
    height: clamp(420px, 40vw, 480px);
    transform: translateX(clamp(-70px, -6.5vw, -80px));
    top: clamp(-35px, -3.2vw, -40px);
  }

  .lantern-glow {
    width: clamp(88px, 8vw, 100px);
    height: clamp(92px, 8.5vw, 104px);
  }

  .glow-left {
    top: clamp(112px, 10.5vw, 128px);
    left: clamp(62px, 5.8vw, 72px);
  }

  .glow-right {
    top: clamp(140px, 13vw, 160px);
    right: clamp(-20px, -1.9vw, -24px);
  }

  .ring-green {
    width: clamp(140px, 13vw, 160px);
    height: clamp(126px, 11.7vw, 144px);
    border: clamp(20px, 1.9vw, 24px) solid #008c1b;
    left: clamp(90px, 8.5vw, 104px);
    bottom: clamp(66px, 6.2vw, 76px);
  }

  .ring-yellow {
    width: clamp(182px, 17vw, 208px);
    height: clamp(168px, 15.7vw, 192px);
    border: clamp(20px, 1.9vw, 24px) solid #ffcc01;
    right: clamp(-7px, -0.6vw, -8px);
    top: clamp(188px, 17.6vw, 216px);
  }

  .mosque {
    left: clamp(56px, 5.2vw, 64px);
    width: clamp(430px, 40vw, 496px);
  }

  .stat-card {
    border-radius: clamp(5px, 0.5vw, 6px);
  }

  .stat-left {
    width: clamp(140px, 13vw, 160px);
    height: clamp(76px, 7.2vw, 88px);
    left: clamp(70px, 6.5vw, 80px);
    bottom: clamp(88px, 8.2vw, 100px);
  }

  .stat-right {
    width: clamp(158px, 14.8vw, 180px);
    height: clamp(76px, 7.2vw, 88px);
    left: clamp(380px, 36vw, 440px);
    bottom: clamp(112px, 10.5vw, 128px);
  }

  .stat-icon {
    width: clamp(42px, 4vw, 48px);
    height: clamp(42px, 4vw, 48px);
  }

  .stat-icon i {
    font-size: clamp(20px, 2vw, 24px);
  }

  .stat-img-icon {
    width: clamp(33px, 3.2vw, 38px);
    height: clamp(33px, 3.2vw, 38px);
  }

  .stat-num {
    font-size: clamp(19px, 1.9vw, 22px);
  }

  .stat-label {
    font-size: clamp(9px, 0.9vw, 10px);
  }

  /* About section scaling - smaller sizes */
  .about-label {
    font-size: clamp(11px, 1vw, 12px);
  }

  .about-title {
    font-size: clamp(23px, 2.1vw, 26px);
  }

  .about-desc {
    font-size: clamp(11px, 0.95vw, 12px);
    max-width: clamp(390px, 37vw, 450px);
    margin-top: clamp(28px, 2.6vw, 32px);
    line-height: 1.85;
  }

  .about-features {
    gap: clamp(16px, 1.7vw, 20px);
  }

  .about-feature {
    gap: clamp(10px, 1vw, 12px);
    min-width: clamp(210px, 20vw, 240px);
  }

  .feature-icon {
    width: clamp(46px, 4.2vw, 52px);
    height: clamp(46px, 4.2vw, 52px);
    border-radius: clamp(4px, 0.4vw, 5px);
  }

  .feature-icon-img {
    width: clamp(26px, 2.5vw, 30px);
    height: clamp(26px, 2.5vw, 30px);
  }

  .feature-icon i {
    font-size: clamp(16px, 1.5vw, 18px);
  }

  .feature-title {
    font-size: clamp(13px, 1.1vw, 14px);
  }

  .feature-text {
    font-size: clamp(10px, 0.95vw, 11px);
    line-height: 1.35;
  }

  .about-visual {
    max-width: clamp(390px, 37vw, 450px);
    height: clamp(360px, 34vw, 416px);
  }

  .about-main-img {
    top: clamp(38px, 3.6vw, 44px);
    right: clamp(104px, 9.8vw, 120px);
    width: clamp(308px, 29vw, 355px);
    height: clamp(333px, 31.4vw, 384px);
    border-radius: clamp(10px, 1vw, 12px);
    border-width: clamp(7px, 0.6vw, 8px);
  }

  .about-sub-img {
    width: clamp(200px, 19vw, 231px);
    height: clamp(192px, 18.2vw, 222px);
    right: clamp(14px, 1.3vw, 16px);
    top: clamp(152px, 14.4vw, 176px);
    border-radius: clamp(10px, 1vw, 12px);
    border-width: clamp(7px, 0.6vw, 8px);
  }

  .about-badge {
    right: clamp(346px, 32.7vw, 400px);
    bottom: clamp(-10px, -0.9vw, -11px);
    width: clamp(103px, 9.8vw, 119px);
    height: clamp(61px, 5.7vw, 70px);
    border-radius: clamp(5px, 0.5vw, 6px);
    padding-inline: clamp(8px, 0.8vw, 10px);
  }

  .about-badge-num {
    font-size: clamp(16px, 1.6vw, 18px);
  }

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

  .about-visual .ring-green {
    width: clamp(186px, 17.6vw, 215px);
    height: clamp(188px, 17.8vw, 217px);
    border-width: clamp(20px, 1.9vw, 24px);
    left: clamp(-62px, -5.9vw, -72px);
    bottom: clamp(-7px, -0.6vw, -8px);
  }

  .about-visual .ring-yellow {
    width: clamp(186px, 17.6vw, 215px);
    height: clamp(188px, 17.8vw, 217px);
    border-width: clamp(20px, 1.9vw, 24px);
    right: clamp(14px, 1.3vw, 16px);
    top: clamp(28px, 2.6vw, 32px);
  }

  .about-dots {
    width: clamp(69px, 6.5vw, 80px);
    height: clamp(69px, 6.5vw, 80px);
    left: clamp(-48px, -4.6vw, -56px);
    top: clamp(14px, 1.3vw, 16px);
  }

  .about-dots .dot {
    width: clamp(3.5px, 0.35vw, 4px);
    height: clamp(3.5px, 0.35vw, 4px);
  }

  /* Footer newsletter scaling */
  .newsletter {
    max-width: 280px;
  }

  .newsletter-group {
    width: 280px;
    height: 48px;
  }

  .newsletter-input {
    height: 48px;
    padding: 0 14px;
    font-size: 12px;
  }

  .newsletter-btn {
    width: 56px;
    height: 48px;
    flex: 0 0 56px;
  }

  .newsletter-btn i {
    font-size: 19px;
  }

  .footer-sub {
    font-size: 12px;
  }
}

/* Desktop responsive (1291px+): Full sizes */
@media (min-width: 1291px) {
  /* Navbar scaling */
  .logo-img {
    width: clamp(80px, 7vw, 96px);
    height: clamp(56px, 5vw, 64px);
  }

  .nav-links .nav-link {
    font-size: clamp(14px, 1.2vw, 16px);
    padding: 0 clamp(16px, 1.5vw, 20px);
  }

  .search-box {
    width: clamp(280px, 25vw, 348px);
  }

  .search-input {
    height: clamp(36px, 3vw, 40px);
    font-size: clamp(12px, 1vw, 14px);
  }

  .btn-success {
    height: clamp(36px, 3vw, 40px);
    font-size: clamp(13px, 1vw, 15px);
    padding-inline: clamp(16px, 1.5vw, 20px);
  }

  /* Hero section scaling */
  .hero-content {
    width: clamp(440px, 38vw, 520px);
  }

  .hero-mini-lamp {
    width: clamp(28px, 2.5vw, 34px);
  }

  .hero-title {
    font-size: clamp(48px, 4.5vw, 61.2px);
    line-height: clamp(56px, 5.3vw, 72px);
    margin-top: clamp(36px, 3.5vw, 48px);
  }

  .hero-subtitle {
    font-size: clamp(18px, 1.6vw, 22px);
  }

  .hero-desc {
    font-size: clamp(14px, 1.2vw, 16px);
    max-width: clamp(360px, 32vw, 440px);

    .hero-magic-lamp {
      width: clamp(70px, 6.2vw, 85px);
      height: clamp(70px, 6.2vw, 85px);
      margin-top: clamp(24px, 2.2vw, 30px);
      margin-right: clamp(280px, 25vw, 340px);
    }

    .hero-btn {
      margin-top: clamp(-150px, -13vw, -180px);
      padding: clamp(10px, 1vw, 12px) clamp(20px, 2vw, 28px);
      font-size: clamp(14px, 1.2vw, 16px);
    }

    .hero-btn-icon {
      font-size: clamp(14px, 1.2vw, 16px);
    }

    .hero-mark-wrap {
      right: clamp(160px, 15vw, 200px);
      width: clamp(72px, 6.4vw, 87px);
      height: clamp(22px, 1.9vw, 26px);
    }

    .hero-mark-img {
      width: clamp(72px, 6.4vw, 87px);
    }

    .hero-genie {
      right: clamp(150px, 14vw, 190px);
      bottom: clamp(32px, 3vw, 40px);
      width: clamp(48px, 4.4vw, 60px);
    }

    .hero-lantern {
      width: clamp(72px, 6.6vw, 90px);
      top: clamp(24px, 2.2vw, 30px);
    }

    .lantern {
      right: clamp(40px, 3.7vw, 50px);
    }

    .hero-visual {
      height: clamp(480px, 44vw, 600px);
      transform: translateX(clamp(-80px, -7.3vw, -100px));
      top: clamp(-40px, -3.7vw, -50px);
    }

    .lantern-glow {
      width: clamp(100px, 9vw, 124px);
      height: clamp(104px, 9.5vw, 130px);
    }

    .glow-left {
      top: clamp(128px, 11.7vw, 160px);
      left: clamp(72px, 6.6vw, 90px);
    }

    .glow-right {
      top: clamp(160px, 14.7vw, 200px);
      right: clamp(-24px, -2.2vw, -30px);
    }

    .ring-green {
      width: clamp(160px, 14.7vw, 201px);
      height: clamp(144px, 13.2vw, 180px);
      border: clamp(24px, 2.2vw, 30px) solid #008c1b;
      left: clamp(104px, 9.5vw, 130px);
      bottom: clamp(76px, 7vw, 95px);
    }

    .ring-yellow {
      width: clamp(208px, 19vw, 260px);
      height: clamp(192px, 17.6vw, 240px);
      border: clamp(24px, 2.2vw, 30px) solid #ffcc01;
      right: clamp(-8px, -0.7vw, -10px);
      top: clamp(216px, 19.8vw, 270px);
    }

    .mosque {
      left: clamp(64px, 5.9vw, 80px);
      width: clamp(496px, 45.4vw, 620px);
    }

    .stat-card {
      border-radius: clamp(6px, 0.6vw, 8px);
    }

    .stat-left {
      width: clamp(160px, 14.7vw, 200px);
      height: clamp(88px, 8.1vw, 111px);
      left: clamp(80px, 7.3vw, 100px);
      bottom: clamp(100px, 9.2vw, 110px);
    }

    .stat-right {
      width: clamp(180px, 16.6vw, 227px);
      height: clamp(88px, 8.1vw, 111px);
      left: clamp(440px, 40.3vw, 550px);
      bottom: clamp(128px, 11.7vw, 160px);
    }

    .stat-icon {
      width: clamp(48px, 4.4vw, 60px);
      height: clamp(48px, 4.4vw, 60px);
    }

    .stat-icon i {
      font-size: clamp(24px, 2.2vw, 32px);
    }

    .stat-img-icon {
      width: clamp(38px, 3.6vw, 49px);
      height: clamp(38px, 3.6vw, 49px);
    }

    .stat-num {
      font-size: clamp(22px, 2.2vw, 30px);
    }

    .stat-label {
      font-size: clamp(10px, 1vw, 13px);
    }

    /* About section scaling */
    .about-label {
      font-size: clamp(12px, 1.1vw, 14px);
    }

    .about-title {
      font-size: clamp(26px, 2.3vw, 32px);
    }

    .about-desc {
      font-size: clamp(12px, 1vw, 14px);
      max-width: clamp(450px, 41vw, 560px);
      margin-top: clamp(32px, 2.9vw, 40px);
    }

    .about-features {
      gap: clamp(20px, 2vw, 28px);
    }

    .about-feature {
      gap: clamp(12px, 1.2vw, 16px);
      min-width: clamp(240px, 22vw, 300px);
    }

    .feature-icon {
      width: clamp(52px, 4.7vw, 64px);
      height: clamp(52px, 4.7vw, 64px);
      border-radius: clamp(5px, 0.5vw, 6px);
    }

    .feature-icon-img {
      width: clamp(30px, 2.8vw, 38px);
      height: clamp(30px, 2.8vw, 38px);
    }

    .feature-icon i {
      font-size: clamp(18px, 1.6vw, 22px);
    }

    .feature-title {
      font-size: clamp(14px, 1.2vw, 16px);
    }

    .feature-text {
      font-size: clamp(11px, 1vw, 13px);
    }

    .about-visual {
      max-width: clamp(450px, 41vw, 560px);
      height: clamp(416px, 38.1vw, 520px);
    }

    .about-main-img {
      top: clamp(44px, 4vw, 55px);
      right: clamp(120px, 11vw, 150px);
      width: clamp(355px, 32.5vw, 444px);
      height: clamp(384px, 35.2vw, 480px);
      border-radius: clamp(12px, 1.1vw, 15px);
      border-width: clamp(8px, 0.7vw, 10px);
    }

    .about-sub-img {
      width: clamp(231px, 21.2vw, 289px);
      height: clamp(222px, 20.4vw, 278px);
      right: clamp(16px, 1.5vw, 20px);
      top: clamp(176px, 16.1vw, 220px);
      border-radius: clamp(12px, 1.1vw, 15px);
      border-width: clamp(8px, 0.7vw, 10px);
    }

    .about-badge {
      right: clamp(400px, 36.6vw, 500px);
      bottom: clamp(-11px, -1vw, -14px);
      width: clamp(119px, 10.9vw, 149px);
      height: clamp(70px, 6.4vw, 88px);
      border-radius: clamp(6px, 0.6vw, 8px);
      padding-inline: clamp(10px, 0.9vw, 12px);
    }

    .about-badge-num {
      font-size: clamp(18px, 1.8vw, 24px);
    }

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

    .about-visual .ring-green {
      width: clamp(215px, 19.7vw, 269px);
      height: clamp(217px, 19.9vw, 272px);
      border-width: clamp(24px, 2.2vw, 30px);
      left: clamp(-72px, -6.6vw, -90px);
      bottom: clamp(-8px, -0.7vw, -10px);
    }

    .about-visual .ring-yellow {
      width: clamp(215px, 19.7vw, 269px);
      height: clamp(217px, 19.9vw, 272px);
      border-width: clamp(24px, 2.2vw, 30px);
      right: clamp(16px, 1.5vw, 20px);
      top: clamp(32px, 2.9vw, 40px);
    }

    .about-dots {
      width: clamp(80px, 7.3vw, 100px);
      height: clamp(80px, 7.3vw, 100px);
      left: clamp(-56px, -5.1vw, -70px);
      top: clamp(16px, 1.5vw, 20px);
    }

    .about-dots .dot {
      width: clamp(4px, 0.4vw, 5px);
      height: clamp(4px, 0.4vw, 5px);
    }
  }

  .hero-magic-lamp {
    width: clamp(70px, 6.2vw, 85px);
    height: clamp(70px, 6.2vw, 85px);
    margin-top: clamp(24px, 2.2vw, 30px);
    margin-right: clamp(280px, 25vw, 340px);
  }

  .hero-btn {
    margin-top: clamp(-150px, -13vw, -180px);
    padding: clamp(10px, 1vw, 12px) clamp(20px, 2vw, 28px);
    font-size: clamp(14px, 1.2vw, 16px);
  }

  .hero-btn-icon {
    font-size: clamp(14px, 1.2vw, 16px);
  }

  .hero-mark-wrap {
    right: clamp(160px, 15vw, 200px);
    width: clamp(72px, 6.4vw, 87px);
    height: clamp(22px, 1.9vw, 26px);
  }

  .hero-mark-img {
    width: clamp(72px, 6.4vw, 87px);
  }

  .hero-genie {
    right: clamp(150px, 14vw, 190px);
    bottom: clamp(32px, 3vw, 40px);
    width: clamp(48px, 4.4vw, 60px);
  }

  .hero-lantern {
    width: clamp(72px, 6.6vw, 90px);
    top: clamp(24px, 2.2vw, 30px);
  }

  .lantern {
    right: clamp(40px, 3.7vw, 50px);
  }

  .hero-visual {
    height: clamp(480px, 44vw, 600px);
    transform: translateX(clamp(-80px, -7.3vw, -100px));
    top: clamp(-40px, -3.7vw, -50px);
  }

  .lantern-glow {
    width: clamp(100px, 9vw, 124px);
    height: clamp(104px, 9.5vw, 130px);
  }

  .glow-left {
    top: clamp(128px, 11.7vw, 160px);
    left: clamp(72px, 6.6vw, 90px);
  }

  .glow-right {
    top: clamp(160px, 14.7vw, 200px);
    right: clamp(-24px, -2.2vw, -30px);
  }

  .ring-green {
    width: clamp(160px, 14.7vw, 201px);
    height: clamp(144px, 13.2vw, 180px);
    border: clamp(24px, 2.2vw, 30px) solid #008c1b;
    left: clamp(104px, 9.5vw, 130px);
    bottom: clamp(76px, 7vw, 95px);
  }

  .ring-yellow {
    width: clamp(208px, 19vw, 260px);
    height: clamp(192px, 17.6vw, 240px);
    border: clamp(24px, 2.2vw, 30px) solid #ffcc01;
    right: clamp(-8px, -0.7vw, -10px);
    top: clamp(216px, 19.8vw, 270px);
  }

  .mosque {
    left: clamp(64px, 5.9vw, 80px);
    width: clamp(496px, 45.4vw, 620px);
  }

  .stat-card {
    border-radius: clamp(6px, 0.6vw, 8px);
  }

  .stat-left {
    width: clamp(160px, 14.7vw, 200px);
    height: clamp(88px, 8.1vw, 111px);
    left: clamp(80px, 7.3vw, 100px);
    bottom: clamp(100px, 9.2vw, 110px);
  }

  .stat-right {
    width: clamp(180px, 16.6vw, 227px);
    height: clamp(88px, 8.1vw, 111px);
    left: clamp(440px, 40.3vw, 550px);
    bottom: clamp(128px, 11.7vw, 160px);
  }

  .stat-icon {
    width: clamp(48px, 4.4vw, 60px);
    height: clamp(48px, 4.4vw, 60px);
  }

  .stat-icon i {
    font-size: clamp(24px, 2.2vw, 32px);
  }

  .stat-img-icon {
    width: clamp(38px, 3.6vw, 49px);
    height: clamp(38px, 3.6vw, 49px);
  }

  .stat-num {
    font-size: clamp(22px, 2.2vw, 30px);
  }

  .stat-label {
    font-size: clamp(10px, 1vw, 13px);
  }

  /* About section scaling */
  .about-label {
    font-size: clamp(12px, 1.1vw, 14px);
  }

  .about-title {
    font-size: clamp(26px, 2.3vw, 32px);
  }

  .about-desc {
    font-size: clamp(12px, 1vw, 14px);
    max-width: clamp(450px, 41vw, 560px);
    margin-top: clamp(32px, 2.9vw, 40px);
  }

  .about-features {
    gap: clamp(20px, 2vw, 28px);
  }

  .about-feature {
    gap: clamp(12px, 1.2vw, 16px);
    min-width: clamp(240px, 22vw, 300px);
  }

  .feature-icon {
    width: clamp(52px, 4.7vw, 64px);
    height: clamp(52px, 4.7vw, 64px);
    border-radius: clamp(5px, 0.5vw, 6px);
  }

  .feature-icon-img {
    width: clamp(30px, 2.8vw, 38px);
    height: clamp(30px, 2.8vw, 38px);
  }

  .feature-icon i {
    font-size: clamp(18px, 1.6vw, 22px);
  }

  .feature-title {
    font-size: clamp(14px, 1.2vw, 16px);
  }

  .feature-text {
    font-size: clamp(11px, 1vw, 13px);
  }

  .about-visual {
    max-width: clamp(450px, 41vw, 560px);
    height: clamp(416px, 38.1vw, 520px);
  }

  .about-main-img {
    top: clamp(44px, 4vw, 55px);
    right: clamp(120px, 11vw, 150px);
    width: clamp(355px, 32.5vw, 444px);
    height: clamp(384px, 35.2vw, 480px);
    border-radius: clamp(12px, 1.1vw, 15px);
    border-width: clamp(8px, 0.7vw, 10px);
  }

  .about-sub-img {
    width: clamp(231px, 21.2vw, 289px);
    height: clamp(222px, 20.4vw, 278px);
    right: clamp(16px, 1.5vw, 20px);
    top: clamp(176px, 16.1vw, 220px);
    border-radius: clamp(12px, 1.1vw, 15px);
    border-width: clamp(8px, 0.7vw, 10px);
  }

  .about-badge {
    right: clamp(400px, 36.6vw, 500px);
    bottom: clamp(-11px, -1vw, -14px);
    width: clamp(119px, 10.9vw, 149px);
    height: clamp(70px, 6.4vw, 88px);
    border-radius: clamp(6px, 0.6vw, 8px);
    padding-inline: clamp(10px, 0.9vw, 12px);
  }

  .about-badge-num {
    font-size: clamp(18px, 1.8vw, 24px);
  }

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

  .about-visual .ring-green {
    width: clamp(215px, 19.7vw, 269px);
    height: clamp(217px, 19.9vw, 272px);
    border-width: clamp(24px, 2.2vw, 30px);
    left: clamp(-72px, -6.6vw, -90px);
    bottom: clamp(-8px, -0.7vw, -10px);
  }

  .about-visual .ring-yellow {
    width: clamp(215px, 19.7vw, 269px);
    height: clamp(217px, 19.9vw, 272px);
    border-width: clamp(24px, 2.2vw, 30px);
    right: clamp(16px, 1.5vw, 20px);
    top: clamp(32px, 2.9vw, 40px);
  }

  .about-dots {
    width: clamp(80px, 7.3vw, 100px);
    height: clamp(80px, 7.3vw, 100px);
    left: clamp(-56px, -5.1vw, -70px);
    top: clamp(16px, 1.5vw, 20px);
  }

  .about-dots .dot {
    width: clamp(4px, 0.4vw, 5px);
    height: clamp(4px, 0.4vw, 5px);
  }
}

/* Tablet (577px - 989px): iPad layout matching mobile composition but scaled up */
@media (min-width: 577px) and (max-width: 989px) {
  /* Top bar responsive text */
  .follow-text {
    font-size: clamp(10px, 1.6vw, 14px);
  }

  .top-info {
    font-size: clamp(10px, 1.5vw, 14px);
  }

  .top-bar .social-icons i {
    font-size: clamp(12px, 1.8vw, 16px);
  }

  /* About section - smaller images, rings, dots */
  .about-label {
    font-size: clamp(13px, 1.6vw, 18px);
  }

  .about-title {
    font-size: clamp(24px, 3vw, 32px);
  }

  .about-desc {
    font-size: clamp(12px, 1.5vw, 14px);
    line-height: 1.85;
  }

  .about-visual {
    max-width: clamp(340px, 52vw, 560px);
    height: clamp(320px, 49vw, 520px);
  }

  .about-main-img {
    top: clamp(32px, 5vw, 55px);
    right: clamp(85px, 13vw, 150px);
    width: clamp(270px, 41vw, 444px);
    height: clamp(300px, 46vw, 480px);
    border-radius: clamp(10px, 1.5vw, 15px);
    border-width: clamp(6px, 1vw, 10px);
  }

  .about-sub-img {
    width: clamp(170px, 26vw, 289px);
    height: clamp(165px, 25vw, 278px);
    right: clamp(13px, 2vw, 20px);
    top: clamp(140px, 21.5vw, 220px);
    border-radius: clamp(10px, 1.5vw, 15px);
    border-width: clamp(6px, 1vw, 10px);
  }

  .about-badge {
    right: clamp(280px, 43vw, 500px);
    bottom: clamp(-9px, -1.4vw, -14px);
    width: clamp(95px, 14.5vw, 149px);
    height: clamp(58px, 8.8vw, 88px);
    border-radius: clamp(5px, 0.8vw, 8px);
    padding-inline: clamp(8px, 1.2vw, 12px);
  }

  .about-badge-num {
    font-size: clamp(16px, 2.4vw, 24px);
  }

  .about-badge-text {
    font-size: clamp(9px, 1.4vw, 12px);
  }

  .about-visual .ring-green {
    width: clamp(170px, 26vw, 269px);
    height: clamp(172px, 26.4vw, 272px);
    border-width: clamp(18px, 2.7vw, 30px);
    left: clamp(-55px, -8.4vw, -90px);
    bottom: clamp(-7px, -1vw, -10px);
  }

  .about-visual .ring-yellow {
    width: clamp(170px, 26vw, 269px);
    height: clamp(172px, 26.4vw, 272px);
    border-width: clamp(18px, 2.7vw, 30px);
    right: clamp(13px, 2vw, 20px);
    top: clamp(26px, 4vw, 40px);
  }

  .about-dots {
    width: clamp(64px, 9.8vw, 100px);
    height: clamp(64px, 9.8vw, 100px);
    left: clamp(-42px, -6.4vw, -70px);
    top: clamp(13px, 2vw, 20px);
  }

  .about-dots .dot {
    width: clamp(3px, 0.46vw, 5px);
    height: clamp(3px, 0.46vw, 5px);
  }
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 22px;
    padding-bottom: 42px;
    padding-inline: 20px;
  }

  .hero-content {
    width: 100%;
    max-width: 720px;
    text-align: left;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    margin-top: 16px;
    font-size: 48px;
    line-height: 56px;
  }

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

  .hero-desc {
    font-size: 14.5px;
    line-height: 1.8;
    max-width: 95%;
    margin-top: 10px;
    width: 100%;
    text-align: right;
    text-wrap: balance;
  }

  .hero-mark-wrap {
    right: auto;
    left: -18px;
    top: 0;
    width: 68px;
    height: 24px;
  }

  .hero-mark-img {
    width: 68px;
  }

  .hero-magic-lamp {
    width: 72px;
    height: 72px;
    margin: 12px 0 0;
    order: 3;
    align-self: flex-end;
  }

  .hero-btn {
    margin-top: 14px;
    justify-content: center;
    order: 2;
    align-self: flex-start;
  }

  .hero-visual {
    height: auto;
    transform: none;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-inline: 28px;
  }

  .mosque,
  .mosque-mobile,
  .hero-lantern,
  .lantern-glow,
  .hero-visual .ring-green,
  .hero-visual .ring-yellow,
  .stat-card {
    display: none;
  }

  .mosque-ipad {
    display: block;
    position: relative;
    width: 100%;
    max-width: 780px;
    height: auto;
    margin: 0 auto;
    opacity: 1;
    transform: none;
    animation: none;
  }

  /* Lantern strip: allow more items as width grows */
  .lantern-row {
    padding-block: 28px;
    overflow-x: hidden;
  }

  .lantern-row-wrap {
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center;
    gap: min(22px, 3vw);
  }

  .lantern-row-wrap .lantern-item {
    width: clamp(110px, 14vw, 130px);
    height: auto;
    flex: 0 1 14vw;
    min-width: 100px;
    max-width: 130px;
  }
}

/* Tablet lantern counts by width: 5 at 577px, more as space allows */
@media (min-width: 577px) and (max-width: 820px) {
  .lantern-row-wrap .lantern-item:nth-child(n + 6) {
    display: none;
  }
}

@media (min-width: 821px) and (max-width: 900px) {
  .lantern-row-wrap .lantern-item:nth-child(n + 7) {
    display: none;
  }
}

/* Mobile (<=576px) */
@media (max-width: 576px) {
  .px-64 {
    padding-inline: 16px !important;
  }

  .px-140 {
    padding-inline: 20px !important;
  }

  /* Top bar on mobile */
  .top-bar {
    height: 34px;
    background-color: #000000;
  }

  .top-bar .container-fluid {
    justify-content: center !important;
    gap: 10px;
    flex-wrap: wrap;
  }

  .top-bar .social-icons i {
    color: #ffcc01;
    font-size: 14px;
  }

  .top-info {
    font-size: 12px;
    gap: 6px;
  }

  .follow-text,
  .top-info-location,
  .divider {
    display: none !important;
  }

  /* Navbar */
  .navbar {
    padding-block: 8px;
  }

  .logo-img {
    width: 72px;
    height: 48px;
  }

  /* Hero layout */
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 14px;
    padding-bottom: 24px;
  }

  .hero-content {
    width: 100%;
    text-align: left;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    margin-top: 12px;
    font-size: 34px;
    line-height: 40px;
  }

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

  .hero-desc {
    font-size: 13px;
    line-height: 1.7;
    max-width: 100%;
    margin-top: 6px;
    width: 100%;
    text-align: right;
    text-wrap: balance;
  }

  .hero-mark-wrap {
    display: block;
    right: auto;
    left: -33px;
    top: -2px;
    width: 55px;
    height: 20px;
  }

  .hero-mark-img {
    width: 60px;
  }

  .hero-magic-lamp {
    width: 58px;
    height: 58px;
    margin: 8px 0 0;
    order: 3;
    align-self: flex-end;
  }

  .hero-btn {
    margin-top: 10px;
    justify-content: center;
    order: 2;
    align-self: flex-start;
  }

  /* Hero visual */
  .hero-visual {
    height: auto;
    transform: none;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 6px;
    padding-inline: 10px;
  }

  .mosque {
    display: none;
  }

  .mosque-mobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-lantern {
    display: none;
  }

  .lantern-glow {
    display: none;
  }

  .glow-left {
    top: 60px;
    left: 90px;
  }

  .glow-right {
    top: 60px;
    right: 90px;
  }

  .hero-visual .ring-green {
    display: none;
  }

  .hero-visual .ring-yellow {
    display: none;
  }

  /* Hero stats cards */
  .stat-card {
    display: none;
  }

  .stat-left {
    width: 118px;
    height: 68px;
    left: 10px;
    bottom: 410px;
  }

  .stat-right {
    width: 128px;
    height: 68px;
    right: 10px;
    left: auto;
    bottom: 440px;
  }

  .stat-text {
    gap: 4px;
    font-size: 12px;
  }

  .stat-num {
    font-size: 18px;
  }

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

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

  .stat-icon i {
    font-size: 18px;
    margin-top: 39px;
    width: 60px;
    height: 60px;
  }

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

  /* Lantern strip: single row, scrollable if needed */
  .lantern-row {
    padding-block: 24px;
    overflow-x: auto;
  }

  .lantern-row-wrap {
    flex-wrap: nowrap;
    justify-content: center !important;
    gap: 20px;
  }

  .lantern-row-wrap .lantern-item {
    width: 110px;
    height: 138px;
  }

  /* Footer bottom (mobile) */
  .footer-bottom {
    padding: 10px 0 14px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    padding-inline: 12px;
    align-items: flex-end;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .footer-bottom-copy {
    font-size: 12px;
    text-align: right;
    margin: 0;
    align-self: flex-end;
  }

  /* About visuals (mobile scale) */
  .about-visual {
    max-width: 100%;
    height: clamp(320px, 92vw, 400px);
    margin: 0 auto;
  }

  .about-main-img {
    width: clamp(220px, 64vw, 280px);
    height: clamp(250px, 72vw, 310px);
    right: clamp(60px, 20vw, 100px);
    top: clamp(30px, 10vw, 50px);
    border-width: clamp(6px, 2vw, 10px);
  }

  .about-sub-img {
    width: clamp(160px, 46vw, 200px);
    height: clamp(150px, 44vw, 190px);
    right: 0;
    top: clamp(170px, 48vw, 210px);
    border-width: clamp(6px, 2vw, 10px);
  }

  .about-badge {
    right: clamp(230px, 66vw, 280px);
    bottom: clamp(-10px, -2vw, 0px);
    width: clamp(90px, 26vw, 110px);
    height: clamp(58px, 16vw, 70px);
    padding-inline: clamp(6px, 2vw, 10px);
    padding-top: clamp(4px, 1.5vw, 8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-badge-num {
    font-size: clamp(16px, 4.6vw, 20px);
  }

  .about-badge-text {
    display: block;
    font-size: clamp(10px, 2.8vw, 12px);
    line-height: 1.2;
    margin-top: 2px;
    visibility: visible;
  }

  .about-visual .about-badge.stat-card {
    display: none;
  }

  .about-visual .stat-card .stat-label {
    display: block;
  }

  .about-visual .ring-green,
  .about-visual .ring-yellow {
    width: clamp(170px, 48vw, 210px);
    height: clamp(170px, 48vw, 210px);
    border-width: clamp(14px, 4vw, 18px);
  }

  .about-visual .ring-green {
    left: clamp(-50px, -12vw, -30px);
    bottom: 0;
  }

  .about-visual .ring-yellow {
    right: clamp(-20px, -5vw, -5px);
    top: clamp(30px, 10vw, 50px);
  }

  .about-dots {
    width: clamp(60px, 18vw, 80px);
    height: clamp(60px, 18vw, 80px);
    left: clamp(5px, 2.5vw, 15px);
    top: clamp(5px, 2.5vw, 15px);
  }

  .about-dots .dot {
    width: clamp(3px, 1vw, 5px);
    height: clamp(3px, 1vw, 5px);
  }
}

/* ============================================
   Fine-tune: Mobile About section (500px - 568px)
   ============================================ */
@media (min-width: 500px) and (max-width: 568px) {
  .about-visual .ring-green,
  .about-visual .ring-yellow {
    width: 200px;
    height: 200px;
    border-width: 17px;
  }

  .about-visual .ring-green {
    left: -35px;
  }

  .about-visual .ring-yellow {
    right: -8px;
    top: 45px;
  }

  .about-dots {
    width: 75px;
    height: 75px;
    left: 12px;
    top: 12px;
  }

  .about-dots .dot {
    width: 4.5px;
    height: 4.5px;
  }
}

/* ============================================
   Extra small mobile (370px - 460px): Newsletter form
   ============================================ */
@media (min-width: 350px) and (max-width: 460px) {
  .newsletter-group {
    width: clamp(240px, 85vw, 280px);
    height: 44px;
  }

  .newsletter-input {
    height: 44px;
    padding: 0 12px;
    font-size: 11px;
  }

  .newsletter-btn {
    width: 50px;
    height: 44px;
    flex: 0 0 50px;
  }

  .newsletter-btn i {
    font-size: 17px;
  }

  .footer-sub {
    font-size: 11px;
  }
}
