/* ============================================
   MUSLIMAAT TURKIYA MARKAZI
   Pure White & Logo Purple Minimalist Theme (Logo Matched)
   Strict UI/UX · Lenis Smooth Scroll · GSAP-Ready
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Color Palette (Logo Matched, Light Theme) */
  --bg: #FCFAFD;            /* Soft light gray-purple background */
  --bg-card: #FFFFFF;       /* Pure white card background */
  --bg-subtle: #FAF8FC;     /* Very soft light-purple section background */
  --text: #1a051d;          /* Deep dark-purple for maximum contrast */
  --text-secondary: #483b52;/* Soft dark slate purple */
  --text-muted: #80718a;    /* Muted slate purple */
  --border: rgba(142, 36, 170, 0.08);
  --border-active: rgba(142, 36, 170, 0.35);
  
  --accent: #8E24AA;        /* Rich brand purple for highlights */
  --accent-light: #C084FC;  /* Light purple */
  --accent-soft: rgba(142, 36, 170, 0.04);
  --accent-glow: rgba(142, 36, 170, 0.02);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --radius: 24px;           /* Large smooth rounded corners */
  --radius-lg: 24px;
  --dur: 0.5s;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================== RESET ================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: initial;
  background: #09020e !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: #09020e !important;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: visible !important;
  overflow-y: visible !important;
}
#app-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; outline: none; background: none; font-family: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ================== BACKGROUND PATTERN ================== */
.hero::before, .apply-section::before, .bg-star-pattern {
  display: none !important;
}

/* ================== LENIS SCROLL ================== */
html.lenis {
  height: auto;
}
.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
  overflow: clip;
}
.lenis-target {
  scroll-behavior: auto !important;
}

/* ================== NAVIGATION ================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 80px; /* 30px from the top, 80px safety margin on the left/right */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background: transparent;
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
header.scrolled {
  padding: 15px 80px;
  background: rgba(11, 2, 15, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 2px;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(142, 36, 170, 0.08);
}
.nav-title-group {
  display: flex;
  flex-direction: column;
}
.nav-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff !important; /* Pure white logo name */
  line-height: 1.2;
  transition: color 0.3s ease;
}
.nav-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff !important; /* Pure white navigation links for 100% visibility on dark header */
  transition: color 0.3s ease;
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D05BFF;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link:hover {
  color: #D05BFF !important;
}

header.scrolled .nav-name {
  color: #ffffff !important;
}
header.scrolled .nav-sub {
  color: rgba(255, 255, 255, 0.7) !important;
}
header.scrolled .nav-link {
  color: #ffffff !important;
}
header.scrolled .nav-link:hover {
  color: #C084FC !important;
}

.btn-premium-unified {
  display: inline-flex;
  align-items: center;
  padding: 6px 24px 6px 6px; /* 6px padding to perfectly center the 36px circle */
  background: #FFFFFF;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}
.btn-premium-unified::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #8E24AA; /* brand purple circle */
  z-index: -1;
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-premium-unified .btn-text {
  color: #0b020f; /* dark purple/black text */
  font-weight: 750;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-left: 12px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease, transform 0.4s ease;
}
.btn-premium-unified .arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent; /* transparent because the pseudo-element provides the circle bg */
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease;
}
.btn-premium-unified .arrow-svg {
  width: 16px;
  height: 16px;
  fill: none;
  transition: transform 0.4s ease;
}

/* --- AFZAL.GROUP HOVER EFFECT (Pill Stretch & Arrow Slide) --- */
.btn-premium-unified:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(142, 36, 170, 0.25);
}
.btn-premium-unified:active {
  transform: scale(0.98) !important;
  box-shadow: 0 4px 15px rgba(142, 36, 170, 0.15) !important;
}
.btn-premium-unified:hover::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.btn-premium-unified:hover .btn-text {
  color: #FFFFFF;
  transform: translateX(4px);
}
.btn-premium-unified:hover .arrow-wrapper {
  transform: translateX(4px);
}



/* Scrolled nav button settings - kept white for high contrast and consistency */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: #ffffff;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ================== HERO ================== */
.hero, .hero-screen {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  background: #09020e !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 2, 15, 0.4) 0%, rgba(11, 2, 15, 0.92) 100%);
  z-index: 1;
}

.hero-content-center {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 100px;
}
.hero-bismillah-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 50px;
  background: rgba(208, 91, 255, 0.12);
  border: 1px solid rgba(208, 91, 255, 0.35);
  backdrop-filter: blur(12px);
  margin-bottom: 16px;
  box-shadow: 0 0 25px rgba(208, 91, 255, 0.25);
}

.bismillah-gold-glow {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: 5px;
  color: #FFFFFF;
  text-shadow: 0 0 15px rgba(208, 91, 255, 0.9), 0 0 30px rgba(208, 91, 255, 0.6);
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #D05BFF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title-headline {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.purple-neon-text {
  color: #93268f !important;
  background: linear-gradient(135deg, #E082FF 0%, #93268f 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 4px 20px rgba(147, 38, 143, 0.35) !important;
}

.hero-desc-capsule {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 450;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-white-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px 8px 8px;
  background: #FFFFFF;
  color: #0b020f;
  border-radius: 50px;
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-white-pill-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(208, 91, 255, 0.35);
}

.icon-purple-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #8E24AA;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-purple-circle svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  header {
    padding: 20px 40px;
  }
  header.scrolled {
    padding: 10px 40px;
  }
  .hero-smart-container {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .hero-smart-container {
    align-items: center;
    justify-content: center; /* Center on smaller devices for optimal mobile UX */
  }
  .hero-text-block {
    text-align: center;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  header.scrolled {
    padding: 10px 20px;
  }
  .hero-smart-container {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--text);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(142, 36, 170, 0.02);
  transform: translateY(-2px);
}



.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  color: #ffffff;
  background: transparent;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
}
.btn-outline-pill:hover {
  background: rgba(142, 36, 170, 0.2);
  border-color: rgba(255, 255, 255, 1);
  transform: scale(1.04);
}

/* ================== LINES & DIVIDERS ================== */
.divider-line,
hr.divider-line {
  display: none !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  border: none !important;
  margin: 0 !important;
}

/* ================== SECTIONS ================== */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.section {
  padding: 120px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}
#about {
  padding-top: 180px; /* Generous breathing space below the Hero section */
}
@media (max-width: 768px) {
  #about {
    padding-top: 130px;
  }
}
.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.section-header-centered .section-title {
  margin-bottom: 20px;
}
.section-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 60px;
}
.section-sticky-header {
  position: sticky;
  top: 120px;
  height: fit-content;
}
.section-tag,
.advantage-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  width: -moz-fit-content !important;
  max-width: max-content !important;
  background: #F3E8FF !important;
  color: #93268F !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 4px 14px !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(147, 38, 143, 0.2) !important;
  margin-bottom: 12px !important;
  margin-top: 0 !important;
  box-shadow: 0 2px 8px rgba(147, 38, 143, 0.05) !important;
}
.section-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2b0533;
}
.section-title .accent,
.accent {
  color: #93268f !important;
  background: linear-gradient(135deg, #93268f 0%, #801b7c 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.section-desc {
  font-size: 0.95rem;
  color: #2c252e;
  line-height: 1.7;
}

/* ================== SECTIONS ================== */

/* ================== SECTIONS ================== */

/* ============================================================
   WHY MUSLIMAAT TIMELINE SECTION (LEFT STICKY + RIGHT CARDS)
   ============================================================ */
#about {
  padding-top: 80px !important;
  padding-bottom: 100px !important;
  background: #FFFFFF !important;
  overflow: visible !important;
}

/* Desktop & Laptop Layout (>= 769px) */
@media (min-width: 769px) {
  .timeline-wrapper,
  #about .timeline-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 40px !important;
    position: relative !important;
    overflow: visible !important;
  }

  .timeline-left-sticky,
  #about .timeline-left-sticky {
    width: 340px !important;
    flex-shrink: 0 !important;
    position: relative;
    align-self: flex-start !important;
    height: fit-content !important;
    padding-right: 10px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    z-index: 10 !important;
  }

  .timeline-track-column,
  #about .timeline-track-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    width: 40px !important;
    align-self: stretch !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .timeline-right-cards,
  #about .timeline-right-cards {
    flex: 1 !important;
    width: auto !important;
    padding-left: 10px !important;
    gap: 60px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .timeline-main-desc {
    max-width: 320px !important;
  }

  .advantage-desc {
    max-width: 620px !important;
  }

  .advantage-image-wrap img {
    height: 240px !important;
  }
}

/* Mobile Layout (<= 768px - 100% Vertical Stack) */
@media (max-width: 768px) {
  .pin-spacer {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }

  .timeline-wrapper,
  #about .timeline-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .timeline-left-sticky {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 1 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    padding-right: 0 !important;
    margin-bottom: 10px !important;
    box-sizing: border-box !important;
  }

  .timeline-track-column {
    display: none !important;
  }

  .timeline-right-cards {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    gap: 30px !important;
    box-sizing: border-box !important;
  }

  .timeline-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .advantage-image-wrap img {
    height: 220px !important;
  }
}

.timeline-left-sticky .section-tag {
  display: inline-flex !important;
  align-items: center !important;
  background: #F3E8FF !important;
  color: #801b7c !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 4px 14px !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(147, 38, 143, 0.2) !important;
  margin-bottom: 10px !important;
  margin-top: 0 !important;
}

.timeline-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #12081C;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

#about .purple-neon-text,
.timeline-main-title .purple-neon-text {
  color: #93268f !important;
  -webkit-text-fill-color: #93268f !important;
  background: none !important;
  display: block !important;
  text-shadow: 0 0 15px rgba(147, 38, 143, 0.2) !important;
  font-weight: 800 !important;
}

.timeline-main-desc {
  font-size: 0.95rem;
  color: #2b0533 !important;
  line-height: 1.65;
  max-width: 320px;
  font-weight: 500;
}

/* Middle Segmented Timeline Column */
.timeline-track-column {
  position: relative;
  width: 40px !important;
  flex-shrink: 0 !important;
  align-self: stretch !important;
}

/* Full length background track line */
.timeline-line-bg {
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(142, 36, 170, 0.16);
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

/* Minimalist Node Circles (14px x 14px) */
.timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid rgba(142, 36, 170, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.timeline-node .node-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(142, 36, 170, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active Minimalist Node State */
.timeline-node.active {
  border-color: #8E24AA !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 4px rgba(142, 36, 170, 0.14), 0 0 12px rgba(142, 36, 170, 0.3) !important;
  transform: translateX(-50%) scale(1.15);
}

.timeline-node.active .node-dot {
  background: #8E24AA !important;
}

/* Segmented Line between nodes */
.timeline-segment {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  z-index: 1;
}

/* Animated laser beam progress fill line */
.segment-line-fill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 0%; /* Dynamic fill via GSAP */
  background: linear-gradient(180deg, #8E24AA 0%, #D05BFF 100%);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(142, 36, 170, 0.6);
  z-index: 2;
  will-change: height;
}

/* Right Cards Column - Framer Standard Proportional Spacing */
.timeline-right-cards {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 56px !important;
  padding-left: 10px !important;
  padding-bottom: 0 !important;
}

.timeline-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.advantage-badge {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  color: #801b7c !important;
  background: #F3E8FF !important;
  padding: 6px 14px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(147, 38, 143, 0.15) !important;
  width: fit-content !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

.advantage-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.75rem, 2.4vw, 2.2rem) !important;
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
}

.advantage-desc {
  font-size: 0.92rem !important;
  color: #6B7280 !important;
  line-height: 1.7 !important;
  max-width: 620px !important;
  font-weight: 400 !important;
}

.advantage-image-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(142, 36, 170, 0.07);
  margin-top: 6px;
  border: 1px solid rgba(142, 36, 170, 0.08);
}

.advantage-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-card:hover .advantage-image-wrap img {
  transform: scale(1.03);
}

/* Responsive Mobile Layout */
@media (max-width: 767px) {
  .timeline-wrapper {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .timeline-left-sticky {
    position: relative !important;
    top: 0 !important;
    max-width: 100% !important;
    padding-right: 0 !important;
  }
  .timeline-track-column {
    display: none !important;
  }
  .timeline-right-cards {
    padding-left: 0 !important;
    gap: 36px !important;
  }
  .advantage-image-wrap img {
    height: 220px !important;
  }
}

.bento-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(142, 36, 170, 0.08) !important;
  box-shadow: 0 15px 35px rgba(142, 36, 170, 0.04);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  color: #1a051d !important; /* Deep dark purple body text */
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.bento-card:hover {
  border-color: rgba(142, 36, 170, 0.3) !important;
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 45px rgba(142, 36, 170, 0.08);
}

/* Spotlight Hover Effect */
.spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(400px circle at var(--x, 0px) var(--y, 0px), rgba(142, 36, 170, 0.04), transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.program-block-content {
  position: relative;
  z-index: 2;
}
.program-block-content > *:last-child {
  margin-bottom: 0;
}
.card-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(142, 36, 170, 0.04);
  border: 1.5px solid rgba(142, 36, 170, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}
.bento-card:hover .card-icon-wrapper {
  background: rgba(142, 36, 170, 0.08);
  border-color: rgba(142, 36, 170, 0.3);
  transform: scale(1.08) rotate(6deg);
  box-shadow: 0 4px 16px rgba(142, 36, 170, 0.06);
}
.card-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #8E24AA;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(142, 36, 170, 0.06);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(142, 36, 170, 0.1);
  box-shadow: 0 2px 8px rgba(142, 36, 170, 0.02);
}
.card-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1a051d;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.card-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.5;
}
.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 36px;
  list-style: none;
  padding: 0;
}
.card-features li {
  font-size: 0.9rem;
  color: #3c333e;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  width: 18px;
  height: 18px;
  color: #8E24AA;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 2px 4px rgba(142, 36, 170, 0.15));
}
.card-features li::before {
  content: none;
}
.card-warning-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, rgba(239, 68, 68, 0.06) 100%) !important;
  border: 1px solid rgba(239, 68, 68, 0.12) !important;
  border-left: 4px solid #ef4444 !important;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: #7f1d1d !important;
  font-weight: 500;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.02);
}
.warn-icon {
  width: 20px;
  height: 20px;
  color: #ef4444;
  flex-shrink: 0;
}

.dorm-box {
  border-top: 1px solid rgba(142, 36, 170, 0.08);
  margin-top: 24px;
  padding-top: 24px;
}
.dorm-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
}
.dorm-details {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.dorm-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius);
}
.dorm-gallery-trigger {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  cursor: pointer;
  width: fit-content;
  transition: color 0.3s;
}
.dorm-gallery-trigger:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.card-pricing-area {
  border-top: 1px solid rgba(142, 36, 170, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.price-value-group {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-val {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8E24AA 0%, #D05BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(142, 36, 170, 0.1));
}
.price-period {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.price-payment-details {
  font-size: 0.8rem;
  color: var(--text-secondary);
  max-width: 280px;
  text-align: right;
  line-height: 1.55;
  background: rgba(142, 36, 170, 0.02);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 2px solid rgba(142, 36, 170, 0.15);
}

/* ================== SCARCITY ================== */
.scarcity-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.scarcity-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.scarcity-title .accent {
  color: var(--accent);
}
.progress-container {
  max-width: 440px;
  margin: 0 auto;
}
.progress-bar {
  height: 4px;
  background: var(--bg);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 12px;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: var(--radius-full);
  transition: width 1.5s var(--ease);
}
.progress-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ================== REGISTRATION FORM ================== */
.apply-section {
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}
.apply-grid {
  display: grid !important;
  grid-template-columns: 0.8fr 1.2fr !important;
  gap: 44px !important;
  align-items: start !important;
  width: 100% !important;
}
.apply-info-side {
  display: flex;
  flex-direction: column;
}
.apply-info-side .section-tag {
  margin-bottom: 12px;
}
.apply-info-side .section-title {
  margin-bottom: 20px;
}
.apply-info-side .section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
}
.form-reassurance-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.reassurance-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.reassurance-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(142, 36, 170, 0.05);
  color: #8E24AA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.reassurance-svg {
  width: 22px;
  height: 22px;
}
.reassurance-item:hover .reassurance-icon-box {
  background: #8E24AA;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(142, 36, 170, 0.15);
}
.reassurance-content h4 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2b0533;
  margin-bottom: 6px;
}
.reassurance-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.form-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(142, 36, 170, 0.08) !important;
  border-radius: 28px !important;
  padding: 38px 32px !important;
  box-shadow: 0 30px 60px rgba(142, 36, 170, 0.04), 0 10px 25px rgba(142, 36, 170, 0.01) !important;
  box-sizing: border-box;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #5b4a60;
  margin-bottom: 10px;
}
.input-icon-wrapper,
.select-icon-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.input-svg-icon {
  position: absolute;
  left: 18px;
  width: 18px;
  height: 18px;
  color: rgba(142, 36, 170, 0.4);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 5;
}
.select-chevron-icon {
  position: absolute;
  right: 18px;
  width: 14px;
  height: 14px;
  color: rgba(142, 36, 170, 0.4);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(142, 36, 170, 0.01);
  border: 1px solid rgba(142, 36, 170, 0.12) !important;
  border-radius: 16px !important;
  padding: 14px 20px 14px 50px !important; /* Spacing for the left icon */
  font-size: 14.5px;
  color: var(--text);
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px !important; /* Space for chevron on the right */
  cursor: pointer;
}
.form-group input::placeholder {
  color: var(--text-muted);
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #8E24AA !important;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(142, 36, 170, 0.08) !important;
}
.input-icon-wrapper:focus-within .input-svg-icon,
.select-icon-wrapper:focus-within .input-svg-icon {
  color: #8E24AA;
}
.select-icon-wrapper:focus-within .select-chevron-icon {
  color: #8E24AA;
  transform: rotate(180deg);
}
.form-submit-btn-wrapper {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  display: block !important;
  outline: none !important;
}
.form-submit-btn-inner {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 6px 24px 6px 6px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(142, 36, 170, 0.15) !important; /* Elegant border for visual separation on white cards */
  height: 48px !important;
  border-radius: 50px !important;
  box-shadow: 0 10px 30px rgba(142, 36, 170, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
}
.form-submit-btn-inner .btn-text {
  flex-grow: 1;
  text-align: center;
  margin-right: 36px; /* Balance the 36px circle on the left for mathematical centering */
  font-size: 14.5px; /* Slightly larger, highly readable font */
  font-weight: 700;
  color: #2b0533; /* Deep premium violet */
  letter-spacing: 0.5px;
  text-transform: none !important; /* Disable uppercase! */
  position: relative;
  z-index: 2;
  transition: color 0.4s ease, transform 0.4s ease;
}
.form-submit-btn-wrapper:hover .form-submit-btn-inner {
  box-shadow: 0 12px 35px rgba(142, 36, 170, 0.2) !important;
  transform: scale(1.02);
}
.form-submit-btn-wrapper:hover .form-submit-btn-inner::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.form-submit-btn-wrapper:hover .form-submit-btn-inner .btn-text {
  color: #FFFFFF !important;
  transform: translateX(4px);
}
.form-submit-btn-wrapper:hover .form-submit-btn-inner .arrow-wrapper {
  transform: translateX(4px);
}
.form-submit-btn-wrapper:active .form-submit-btn-inner {
  transform: scale(0.98) !important;
  box-shadow: 0 4px 15px rgba(142, 36, 170, 0.1) !important;
}

@media (max-width: 991px) {
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .form-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ================== FAQ (ACCORDION) ================== */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-block {
  border: 1px solid rgba(142, 36, 170, 0.08) !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 8px 25px rgba(142, 36, 170, 0.01) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.faq-block:hover {
  border-color: rgba(142, 36, 170, 0.2) !important;
  box-shadow: 0 15px 35px rgba(142, 36, 170, 0.04) !important;
  transform: translateY(-2px);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #2b0533;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  box-sizing: border-box;
}
.faq-trigger:hover {
  color: #8E24AA;
}
.faq-arrow-icon {
  font-size: 12px;
  color: rgba(142, 36, 170, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}
.faq-block.active {
  border-color: rgba(142, 36, 170, 0.25) !important;
  box-shadow: 0 15px 35px rgba(142, 36, 170, 0.05) !important;
}
.faq-block.active .faq-trigger {
  color: #8E24AA;
}
.faq-block.active .faq-arrow-icon {
  transform: rotate(180deg);
  color: #8E24AA;
}
.faq-content-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.faq-content-inner {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   RESTRUCTURED LUXURY FOOTER WITH ISTANBUL NIGHT WALLPAPER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 100px 0 50px !important;
  background: 
    linear-gradient(180deg, rgba(8, 2, 12, 0.88) 0%, rgba(8, 2, 12, 0.96) 100%),
    url('../images/cairo_footer.jpg') center center/cover no-repeat !important;
  position: relative !important;
  z-index: 1 !important;
  color: #FFFFFF !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr !important;
  gap: 54px !important;
  margin-bottom: 60px !important;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
}

.footer-brand-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.footer-logo-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.footer-logo-wrap img {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  object-fit: cover !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding: 0 !important;
  background: #FFFFFF !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35) !important;
}

.footer-logo-title {
  font-family: var(--font-sans), system-ui, sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.2px !important;
}

.footer-about {
  font-size: 13.5px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.65 !important;
  max-width: 320px !important;
}

.footer-map-info {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13.5px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
}

.footer-map-info svg {
  color: #C084FC !important;
}

.footer-col-title {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  color: #C084FC !important;
  margin-bottom: 24px !important;
}

.footer-col a {
  display: block !important;
  font-size: 13.5px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  padding: 6px 0 !important;
  font-weight: 500 !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
}

.footer-col a:hover {
  color: #C084FC !important;
  transform: translateX(4px) !important;
}

.footer-social-links {
  display: flex !important;
  gap: 14px !important;
  margin-top: 10px !important;
}

.social-link-btn {
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 50% !important;
  position: relative !important;
  display: inline-block !important;
  color: #FFFFFF !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin: 0 !important;
}

.social-link-btn svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
}

.social-link-btn[aria-label="Telegram"] svg {
  transform: translate(-45%, -55%) !important;
}

.social-link-btn:hover {
  border-color: #8E24AA !important;
  color: #FFFFFF !important;
  background: #8E24AA !important;
  transform: translateY(-4px) scale(1.06) !important;
  box-shadow: 0 8px 22px rgba(142, 36, 170, 0.4) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 36px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
}

.footer-copyright {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 500 !important;
}

.footer-legal {
  display: flex !important;
  gap: 24px !important;
}

.footer-legal a {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}

.footer-legal a:hover {
  color: #C084FC !important;
}

/* ================== SCROLL TO TOP (LUXURY ANIMATED BRAND PURPLE) ================== */
.to-top {
  position: fixed !important;
  bottom: 32px !important;
  right: 32px !important;
  width: 48px !important;
  height: 48px !important;
  background: linear-gradient(135deg, #93268f 0%, #761872 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  color: #FFFFFF !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(20px) scale(0.8) !important;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s !important;
  z-index: 9999 !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(147, 38, 143, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  animation: toTopPulse 3s ease-in-out infinite !important;
}

.to-top svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #FFFFFF !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.to-top.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.to-top:hover,
.to-top:active {
  background: linear-gradient(135deg, #a82fa5 0%, #93268f 100%) !important;
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 12px 32px rgba(147, 38, 143, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  border-color: #FFFFFF !important;
}

.to-top:hover svg,
.to-top:active svg {
  transform: translateY(-3px) !important;
}

@keyframes toTopPulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(147, 38, 143, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow: 0 10px 32px rgba(147, 38, 143, 0.7), 0 0 0 8px rgba(147, 38, 143, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 768px) {
  .to-top {
    bottom: 24px !important;
    right: 20px !important;
    width: 44px !important;
    height: 44px !important;
  }
  .to-top svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* ================== LIGHTBOX ================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(23, 7, 36, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-inner {
  max-width: 600px;
  width: 90%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 64px rgba(23, 7, 36, 0.15);
}
.lightbox-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.lightbox-close-btn:hover {
  background: var(--border);
  color: var(--text);
}
.lightbox-header-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.lightbox-image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* ================== LUXURY PARALLAX BACKGROUND ================== */
.luxury-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.luxury-bg-image {
  display: none !important;
}

/* ================== PREMIUM MULTI-PANEL PRELOADER ================== */
.preloader-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: transparent; /* Must be transparent to reveal content underneath when panels slide */
}
.preloader-panel {
  position: absolute;
  top: 0;
  width: calc(20% + 1.5px); /* Forced sub-pixel overlap to prevent thin white lines */
  margin-right: -1px;
  height: 100%;
  background-color: #2f0538; /* Rich royal velvet brand purple from Muslimaat logo */
  z-index: 1;
  transform-origin: top;
  will-change: transform;
  border: none;
  outline: none;
  box-shadow: none;
}
.preloader-panel:nth-child(1) { left: 0%; }
.preloader-panel:nth-child(2) { left: 20%; }
.preloader-panel:nth-child(3) { left: 40%; }
.preloader-panel:nth-child(4) { left: 60%; }
.preloader-panel:nth-child(5) { left: 80%; }

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 1px solid rgba(142, 36, 170, 0.25);
  padding: 5px;
  background: #FFFFFF;
  opacity: 0; /* Animated with GSAP */
  box-shadow: 0 8px 32px rgba(142, 36, 170, 0.15);
}
.loader-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  display: flex;
  gap: 12px; /* Expanding letter-spacing */
  margin-top: 10px;
}
.loader-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}

/* ================== APP WRAPPER FOR REVEAL ================== */
#app-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s var(--ease);
}

/* ================== HERO TITLE MASK REVEAL ================== */
.hero-title-reveal {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.reveal-line {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 1.25;
}
.reveal-line span {
  display: block;
  transform: translateY(100%);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-sticky-header {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --radius: 4px;
  }
  .nav {
    padding: 16px 0;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 4px;
    transition: right var(--dur) var(--ease);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-link {
    padding: 12px 16px;
    font-size: 14px;
  }
  .nav-cta {
    margin-top: 16px;
    text-align: center;
  }
  .nav-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  
  .program-block {
    padding: 32px 24px;
  }
  .card-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .card-pricing-area {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-payment-details {
    text-align: left;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-wrapper {
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ================== RESULTS & TESTIMONIALS ================== */
.results-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #FAF7FC 100%) !important;
  border: 1px solid rgba(142, 36, 170, 0.08) !important;
  padding: 32px;
  border-radius: 24px !important;
  text-align: left;
  box-shadow: 0 15px 35px rgba(142, 36, 170, 0.03) !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.stat-card:hover {
  border-color: rgba(142, 36, 170, 0.25) !important;
  transform: translateY(-8px) scale(1.005) !important;
  box-shadow: 0 30px 60px rgba(142, 36, 170, 0.08) !important;
}
.stat-num {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-plus {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c07cd1;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 10px;
}

.sub-section-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  border-bottom: 1px solid rgba(142, 36, 170, 0.08) !important;
  padding-bottom: 12px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.outcome-card {
  background: linear-gradient(135deg, #ffffff 0%, #FAF7FC 100%) !important;
  border: 1px solid rgba(142, 36, 170, 0.08) !important;
  padding: 32px;
  border-radius: 24px !important;
  box-shadow: 0 15px 35px rgba(142, 36, 170, 0.03) !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.outcome-card:hover {
  border-color: rgba(142, 36, 170, 0.25) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 30px 60px rgba(142, 36, 170, 0.08) !important;
}
.outcome-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(142, 36, 170, 0.05);
  color: #8E24AA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.outcome-svg {
  width: 22px;
  height: 22px;
}
.outcome-card:hover .outcome-icon-box {
  background: #8E24AA;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(142, 36, 170, 0.25);
}
.outcome-card h5 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2b0533;
}
.outcome-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #FAF7FC 100%) !important;
  border: 1px solid rgba(142, 36, 170, 0.08) !important;
  padding: 36px 32px;
  border-radius: 24px !important;
  position: relative;
  box-shadow: 0 15px 35px rgba(142, 36, 170, 0.03) !important;
}
.testimonial-card.hover-float {
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.testimonial-card.hover-float:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(142, 36, 170, 0.25) !important;
  box-shadow: 0 30px 60px rgba(142, 36, 170, 0.08) !important;
}
.quote-icon {
  font-size: 3.5rem;
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1;
  color: rgba(142, 36, 170, 0.12);
  position: absolute;
  top: 15px;
  left: 24px;
  user-select: none;
  pointer-events: none;
}
.test-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}
.test-author-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(142, 36, 170, 0.06);
  color: #8E24AA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid rgba(142, 36, 170, 0.12);
  flex-shrink: 0;
}
.test-author {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2b0533;
  margin: 0 0 2px 0;
}
.test-status {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

@media (max-width: 768px) {
  .stats-grid, .outcomes-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ================== ISLOMIY-TURKIY AMBIANCE & DECORATIONS ================== */
.bg-star-pattern {
  display: none !important;
}
.bg-light-blob {
  position: fixed;
  z-index: -3;
  pointer-events: none;
  filter: blur(120px);
  border-radius: 50%;
}
.bg-light-blob-1 {
  top: 15%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0) 70%);
}
.bg-light-blob-2 {
  bottom: 10%;
  left: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, rgba(255, 215, 0, 0) 70%);
}

/* ================== BENTO GRID & DORM / WARNING BLOCKS ================== */
/* ================== THREE-COLUMN PREMIUM PROGRAM CARDS ================== */
#programs {
  background: linear-gradient(180deg, var(--bg) 0%, #F6F0FA 40%, #F3ECF8 60%, var(--bg) 100%);
}

.bento-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.bento-card {
  flex: 1 1 320px;
  max-width: 370px;
  min-height: 600px;
  box-sizing: border-box;
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03) !important;
  border-radius: 20px;
  padding: 34px 28px 28px;
  position: relative;
  overflow: visible;
  color: #1a051d !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex;
  flex-direction: column;
}

/* Subtle colored top accent per card */
.bento-card-a { border-top: 3px solid #2ECC71 !important; }
.bento-card-b { border-top: 3px solid #8E24AA !important; }
.bento-card-c { border-top: 3px solid #3498DB !important; }

/* Clean Minimalist Hover effects */
.bento-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(142, 36, 170, 0.12) !important;
}

/* Card content layout */
.card-top-content {
  flex: 1;
}
.card-bottom-content {
  margin-top: auto;
}

/* Badge row */
.card-badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

/* Dormitory indicator for middle card */
.card-dorm-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: -8px auto 24px;
  padding: 4px 12px;
  background: rgba(142, 36, 170, 0.05) !important;
  border: 1px solid rgba(142, 36, 170, 0.12) !important;
  border-radius: 20px;
  width: fit-content;
}
.card-dorm-indicator svg {
  width: 13px;
  height: 13px;
  color: #8E24AA !important;
  flex-shrink: 0;
}
.card-dorm-indicator span {
  font-size: 0.76rem;
  font-weight: 500;
  color: #8E24AA !important;
  letter-spacing: 0.2px;
  text-transform: none; /* Clean lowercase/sentence case */
}

/* Card title & subtitle centered */
.bento-card .card-title {
  text-align: center !important;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a051d;
  letter-spacing: -0.02em;
}
.bento-card .card-subtitle {
  text-align: center !important;
  font-size: 0.82rem;
  color: #80718a;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Feature list & Professional Check Badges */
.bento-card .card-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}
.bento-card .card-features li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-size: 0.84rem;
  color: #3d2f47;
  line-height: 1.5;
}

/* Professional check badge container */
.feature-check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.3s ease;
}
.bento-card-a .feature-check-circle {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
}
.bento-card-b .feature-check-circle {
  background: rgba(142, 36, 170, 0.08);
  border: 1px solid rgba(142, 36, 170, 0.18);
}
.bento-card-c .feature-check-circle {
  background: rgba(52, 152, 219, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.25);
}

.bento-card-a .feature-check-circle svg.feature-icon { color: #27AE60 !important; }
.bento-card-b .feature-check-circle svg.feature-icon { color: #8E24AA !important; }
.bento-card-c .feature-check-circle svg.feature-icon { color: #2980B9 !important; }

.bento-card .card-features li svg.feature-icon {
  width: 12px !important;
  height: 12px !important;
  flex-shrink: 0;
  stroke-width: 3;
}

/* Pricing area */
.card-pricing-area {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
  margin-top: 24px;
}
.price-value-group {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 4px;
}
.price-val {
  font-size: 1.65rem;
  font-weight: 700;
  color: #1a051d;
  letter-spacing: -0.02em;
}
.price-period {
  font-size: 0.82rem;
  color: #80718a;
  font-weight: 500;
}
.price-payment-details {
  font-size: 0.76rem;
  color: #a093a8;
  margin: 0;
}

/* CTA button wrapper — full width, matching navbar design system */
.card-btn-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.card-btn-wrapper .hero-white-pill-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important; /* Keep circle on the left */
  padding: 6px 20px 6px 6px !important;
  box-sizing: border-box !important;
  border: 1px solid rgba(142, 36, 170, 0.08) !important;
}
.card-btn-wrapper .hero-white-pill-btn span:not(.icon-purple-circle) {
  flex-grow: 1 !important;
  text-align: center !important;
  margin-right: 34px !important; /* Compensates the 34px left circle width to center text perfectly */
}
.card-btn-wrapper .hero-white-pill-btn .icon-purple-circle {
  width: 34px !important;
  height: 34px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.card-btn-wrapper .hero-white-pill-btn .icon-purple-circle svg {
  width: 15px !important;
  height: 15px !important;
  margin: 0 !important; /* Center inside circle */
}

/* Responsive mobile */
@media (max-width: 991px) {
  .bento-grid {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .bento-card {
    width: 100%;
    max-width: 400px;
    min-height: auto;
    padding: 30px 24px 24px;
  }
}
  height: 16px;
  color: #b58d16;
  flex-shrink: 0;
}
.dorm-sub-desc {
  font-size: 0.82rem;
  color: #6d5b72;
  margin-bottom: 20px;
}
.btn-dorm-gallery {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b58d16 0%, #d4af37 100%) !important;
  border: none;
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}
.btn-dorm-gallery:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.45);
  color: #2b0533 !important;
}
.btn-dorm-gallery:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   3D CYLINDER GALLERY (CLEAN LIGHT DESIGN)
   ============================================================ */
.cylinder-section-dedicated,
.cylinder-section {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: 100px 0 !important;
  background: #FAF8FC !important;
  border-top: 1px solid rgba(142, 36, 170, 0.08) !important;
  position: relative !important;
}

.cylinder-section-dedicated .section-tag,
.cylinder-section .section-tag {
  display: inline-flex !important;
  background: #F3E8FF !important;
  color: #93268F !important;
  border: 1px solid rgba(147, 38, 143, 0.2) !important;
  padding: 4px 14px !important;
}

.cylinder-section-dedicated .section-title,
.cylinder-section .section-title {
  color: #2b0533 !important;
}

.cylinder-section-dedicated .section-title .accent,
.cylinder-section .section-title .accent {
  color: #8E24AA !important;
  text-shadow: none !important;
}

.cylinder-section-dedicated .section-desc,
.cylinder-section .section-desc {
  color: #2c252e !important;
}

.cylinder-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 50 !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 1.5px solid rgba(142, 36, 170, 0.18) !important;
  color: #8E24AA !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 10px 30px rgba(142, 36, 170, 0.14) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.cylinder-btn svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #8E24AA !important;
  stroke-width: 2.5px !important;
  transition: all 0.3s ease !important;
}
.cylinder-action-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.cylinder-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #F8F7FA;
  border: 1px solid rgba(142, 36, 170, 0.06);
  padding: 6px 24px 6px 6px;
  border-radius: 100px;
  color: #1a051d;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(142, 36, 170, 0.02);
  cursor: pointer;
}
.cylinder-action-btn .btn-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #8E24AA; /* Signature purple button */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cylinder-action-btn:hover {
  background: #ffffff;
  border-color: rgba(142, 36, 170, 0.25);
  box-shadow: 0 10px 25px rgba(142, 36, 170, 0.12);
  transform: translateY(-2px);
}
.cylinder-action-btn:hover .btn-icon-circle {
  background: #7B1FA2;
  transform: rotate(90deg);
}
/* Cylinder Gallery Section Header uses global .section-header-centered design system */

/* Cylinder Gallery Section Dedicated Container */
.cylinder-section-dedicated {
  width: 100% !important;
  padding: 100px 0 !important;
  background: #FAF8FC !important;
  overflow: hidden !important;
  position: relative !important;
}

.cylinder-section-dedicated .container {
  position: relative !important;
}

/* Cylinder Gallery Wrapper */
.cylinder-slider-wrapper {
  position: relative !important;
  width: 100% !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

/* Overlaid Arrow Navigation Buttons (Netflix/Spotify/Airbnb style) */
.cylinder-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 300 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important; /* Pure solid white for 100% contrast on any photo */
  border: 1.5px solid rgba(142, 36, 170, 0.3) !important;
  color: #8E24AA !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 10px 28px rgba(11, 2, 15, 0.25), 0 4px 10px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cylinder-btn-prev {
  left: -35px !important;
}

.cylinder-btn-next {
  right: -35px !important;
}

@media (max-width: 1240px) {
  .cylinder-btn-prev { left: -15px !important; }
  .cylinder-btn-next { right: -15px !important; }
}

@media (max-width: 992px) {
  .cylinder-btn-prev { left: 10px !important; }
  .cylinder-btn-next { right: 10px !important; }
}

.cylinder-btn:hover {
  background: #8E24AA !important;
  color: #FFFFFF !important;
  border-color: #8E24AA !important;
  box-shadow: 0 14px 35px rgba(142, 36, 170, 0.45) !important;
  transform: translateY(-50%) scale(1.12) !important;
}

.cylinder-btn svg {
  width: 22px !important;
  height: 22px !important;
  stroke: currentColor !important;
  stroke-width: 2.8 !important;
  transition: transform 0.3s ease !important;
}

.cylinder-btn-prev:hover svg {
  transform: translateX(-2px) !important;
}

.cylinder-btn-next:hover svg {
  transform: translateX(2px) !important;
}

.cylinder-btn-prev:hover svg {
  transform: translateX(-3px) !important;
}

.cylinder-btn-next:hover svg {
  transform: translateX(3px) !important;
}

.cylinder-stage {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 1140px !important;
  height: 520px !important;
  position: relative !important;
  perspective: 1400px !important;
  overflow: visible !important;
  margin: 0 auto !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.cylinder-container {
  transform-style: preserve-3d !important;
  width: 280px !important;
  height: 410px !important;
  position: relative !important;
  cursor: grab !important;
}

.cylinder-container:active {
  cursor: grabbing !important;
}

.cylinder-card {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 280px !important;
  height: 410px !important;
  border-radius: 24px !important;
  background-size: cover !important;
  background-position: center !important;
  transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 24px 50px rgba(11, 2, 15, 0.18), 0 10px 30px rgba(142, 36, 170, 0.08) !important;
  display: flex !important;
  align-items: flex-end !important;
  overflow: hidden !important;
  border: 1.5px solid rgba(255, 255, 255, 0.8) !important;
}

.cylinder-card:hover {
  border-color: rgba(142, 36, 170, 0.5) !important;
  box-shadow: 0 40px 80px rgba(11, 2, 15, 0.25), 0 20px 50px rgba(142, 36, 170, 0.1) !important;
}

.cylinder-card-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  color: #1a051d;
  padding: 8px 22px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(142, 36, 170, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.cylinder-card.active .cylinder-card-overlay {
  background: #8E24AA;
  color: #ffffff;
  border-color: rgba(142, 36, 170, 0.3);
  box-shadow: 0 10px 25px rgba(142, 36, 170, 0.3);
}

.cylinder-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 50 !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.cylinder-btn svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #FFFFFF !important;
  stroke-width: 2.5px !important;
  transition: all 0.3s ease !important;
}

.cylinder-btn-prev {
  left: 20px !important;
}

.cylinder-btn-next {
  right: 20px !important;
}

.cylinder-btn:hover {
  background: #8E24AA !important;
  border-color: #8E24AA !important;
  color: #FFFFFF !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 12px 35px rgba(142, 36, 170, 0.45) !important;
}

@media (max-width: 1024px) {
  .cylinder-slider-wrapper { padding: 0 15px; }
  .cylinder-btn-prev { left: 5px !important; }
  .cylinder-btn-next { right: 5px !important; }
}

.cylinder-btn:hover {
  background: #8E24AA !important;
  border-color: #8E24AA !important;
  transform: translateY(-50%) scale(1.12) !important;
  box-shadow: 0 14px 35px rgba(142, 36, 170, 0.35) !important;
}

.cylinder-btn:hover svg {
  stroke: #FFFFFF !important;
}

.cylinder-btn-prev:hover svg {
  transform: translateX(-3px) !important;
}

.cylinder-btn-next:hover svg {
  transform: translateX(3px) !important;
}
.cylinder-drag-tip {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}



/* ============================================================
   HERO SECTION (EXACT USER SCREENSHOT REPRODUCTION SYSTEM)
   ============================================================ */
.hero-screen {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #090912;
  padding-top: 110px;
  padding-bottom: 70px;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-vignette-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    radial-gradient(circle at center, rgba(12, 10, 24, 0.35) 0%, rgba(8, 6, 16, 0.78) 100%),
    linear-gradient(180deg, rgba(8, 6, 16, 0.6) 0%, rgba(8, 6, 16, 0.3) 50%, rgba(8, 6, 16, 0.85) 100%);
  pointer-events: none;
}

.hero-content-center {  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HERO BADGE & HEADLINE (MINIMALIST & PROFESSIONAL)
   ============================================================ */
.hero-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 5px 16px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  margin-bottom: 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.hero-badge-pill .badge-dot {
  color: #C084FC !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.hero-badge-pill .badge-text {
  color: #FFFFFF !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
}

.hero-title-headline {
  font-family: var(--font-sans), system-ui, -apple-system, sans-serif !important;
  font-size: clamp(2.0rem, 4.2vw, 3.2rem) !important; /* Made smaller for minimalist design */
  font-weight: 700 !important; /* Softer weight than 800 */
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.5px !important; /* Cleaner spacing */
  margin-bottom: 28px !important;
  text-wrap: balance !important;
}

.purple-neon-text {
  color: #8E24AA !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

/* Light Translucent Glass Subtitle Capsule */
.hero-desc-capsule {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 999px !important;
  padding: 12px 32px !important; /* Sleeker padding */
  max-width: 660px !important; /* Less wide */
  width: 100% !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 14.5px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  margin-bottom: 36px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 768px) {
  .hero-desc-capsule {
    border-radius: 24px !important;
    padding: 14px 20px !important;
    font-size: 13.5px !important;
  }
}

/* ============================================================
   MINIMALIST & HIGH-END PILL BUTTONS (STATIONARY CIRCLE, SLIDING ARROW)
   ============================================================ */
.hero-white-pill-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #FFFFFF !important;
  color: #12081C !important;
  padding: 6px 20px 6px 6px !important; /* Clean alignment */
  border-radius: 999px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(142, 36, 170, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-white-pill-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(142, 36, 170, 0.18) !important;
  background: #FFFFFF !important;
}

.hero-white-pill-btn .icon-purple-circle {
  width: 34px !important; /* Slightly smaller for elegance */
  height: 34px !important;
  border-radius: 50% !important;
  background: #8E24AA !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-white-pill-btn .icon-purple-circle svg {
  width: 15px !important;
  height: 15px !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Arrow Hover Animations: Only slide the SVG arrow inside the stationary circle */
.hero-white-pill-btn:hover .icon-purple-circle svg {
  transform: translateX(3px) !important;
}

.hero-white-pill-btn:hover .icon-purple-circle.animate-down-arrow svg {
  transform: translateY(3px) !important;
}

/* Header navbar button style matches hero button exactly */
.header-nav-btn {
  border: 1px solid rgba(142, 36, 170, 0.15) !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

header.header.scrolled .header-nav-btn {
  background: #8E24AA !important;
  color: #FFFFFF !important;
  border: none !important;
}

header.header.scrolled .header-nav-btn .icon-purple-circle {
  background: #FFFFFF !important;
  color: #8E24AA !important;
}
}



/* ============================================================
   HERO SECTION (EXACT USER SCREENSHOT REPRODUCTION SYSTEM)
   ============================================================ */
.hero-screen {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #090912;
  padding-top: 110px;
  padding-bottom: 70px;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-vignette-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    radial-gradient(circle at center, rgba(12, 10, 24, 0.35) 0%, rgba(8, 6, 16, 0.78) 100%),
    linear-gradient(180deg, rgba(8, 6, 16, 0.6) 0%, rgba(8, 6, 16, 0.3) 50%, rgba(8, 6, 16, 0.85) 100%);
  pointer-events: none;
}

.hero-content-center {  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HERO BADGE & HEADLINE (MINIMALIST & PROFESSIONAL)
   ============================================================ */
.hero-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 5px 16px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  margin-bottom: 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.hero-badge-pill .badge-dot {
  color: #C084FC !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.hero-badge-pill .badge-text {
  color: #FFFFFF !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
}

.hero-title-headline {
  font-family: var(--font-sans), system-ui, -apple-system, sans-serif !important;
  font-size: clamp(2.0rem, 4.2vw, 3.2rem) !important; /* Made smaller for minimalist design */
  font-weight: 700 !important; /* Softer weight than 800 */
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.5px !important; /* Cleaner spacing */
  margin-bottom: 28px !important;
  text-wrap: balance !important;
}

.purple-neon-text {
  color: #C084FC !important; /* Softer, more premium purple */
  text-shadow: 0 2px 12px rgba(192, 132, 252, 0.25) !important; /* Subtle glow */
  font-weight: 700 !important;
}

/* Light Translucent Glass Subtitle Capsule */
.hero-desc-capsule {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 999px !important;
  padding: 12px 32px !important; /* Sleeker padding */
  max-width: 660px !important; /* Less wide */
  width: 100% !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 14.5px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  margin-bottom: 36px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 768px) {
  .hero-desc-capsule {
    border-radius: 24px !important;
    padding: 14px 20px !important;
    font-size: 13.5px !important;
  }
}

/* ============================================================
/* ============================================================
   MINIMALIST & HIGH-END PILL BUTTONS (STRETCH & FILL HOVER ANIMATION)
   ============================================================ */
.hero-white-pill-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #FFFFFF !important;
  color: #12081C !important;
  padding: 6px 20px 6px 6px !important;
  border-radius: 999px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(142, 36, 170, 0.08) !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-white-pill-btn::before {
  content: '' !important;
  position: absolute !important;
  left: 6px !important;
  top: 6px !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: #8E24AA !important;
  z-index: -1 !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-white-pill-btn:hover {
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(142, 36, 170, 0.18) !important;
}

.hero-white-pill-btn:hover::before {
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 999px !important;
}

.hero-white-pill-btn .icon-purple-circle {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF !important;
  position: relative !important;
  z-index: 2 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-white-pill-btn .icon-purple-circle svg {
  width: 15px !important;
  height: 15px !important;
  display: block !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-white-pill-btn:hover .icon-purple-circle svg {
  transform: translateX(4px) !important;
}

.hero-white-pill-btn:hover .icon-purple-circle.animate-down-arrow svg {
  transform: translateY(4px) !important;
}

/* Header navbar button style matches hero button exactly in both top and scrolled states */
.header-nav-btn,
header.header.scrolled .header-nav-btn {
  border: none !important;
  background: #FFFFFF !important;
  color: #12081C !important;
  box-shadow: 0 6px 20px rgba(142, 36, 170, 0.08) !important;
  padding: 6px 20px 6px 6px !important;
}

.header-nav-btn:hover,
header.header.scrolled .header-nav-btn:hover {
  background: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(142, 36, 170, 0.18) !important;
}

.header-nav-btn .icon-purple-circle,
header.header.scrolled .header-nav-btn .icon-purple-circle {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header-nav-btn .icon-purple-circle svg,
header.header.scrolled .header-nav-btn .icon-purple-circle svg {
  width: 15px !important;
  height: 15px !important;
  stroke: #FFFFFF !important;
  display: block !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header-nav-btn:hover .icon-purple-circle svg,
header.header.scrolled .header-nav-btn:hover .icon-purple-circle svg {
  transform: translateX(4px) !important;
}

/* ============================================================
   HEADER & NAVBAR UI/UX (PERFECT SPACING & CONTAINER ALIGNMENT)
   ============================================================ */
header.header,
header,
.header,
#nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  padding: 14px 0 !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(208, 91, 255, 0.25) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

header.scrolled,
.header.scrolled,
header.header.scrolled,
#nav.scrolled {
  padding: 12px 0 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(208, 91, 255, 0.35) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
}

header.header .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
}

.nav-brand {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
}

@media (min-width: 993px) {
  .nav-link {
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    opacity: 0.9 !important;
  }

  .nav-link:hover {
    color: #C084FC !important;
    opacity: 1 !important;
  }

  header.header.scrolled .nav-link {
    color: #FFFFFF !important;
    opacity: 0.9 !important;
  }

  header.header.scrolled .nav-link:hover {
    color: #C084FC !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   INFINITE MARQUEE TESTIMONIALS (CONTAINED IN GRID)
   ============================================================ */
.testimonials-section-dedicated {
  background: #FFFFFF !important;
  padding: 90px 0 !important;
  position: relative !important;
}

.marquee-contained-box {
  width: 100% !important;
  max-width: 1140px !important;
  margin: 40px auto 0 !important;
  overflow: hidden !important;
  position: relative !important;
  border-radius: 20px !important;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%) !important;
  padding: 12px 0 !important;
}

.marquee-track {
  display: flex !important;
  gap: 24px !important;
  width: max-content !important;
  animation: marqueeContinuous 34s linear infinite !important;
}

.marquee-contained-box:hover .marquee-track {
  animation-play-state: paused !important;
}

@keyframes marqueeContinuous {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.luxury-testimonial-card {
  width: 350px !important;
  flex-shrink: 0 !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(142, 36, 170, 0.09) !important;
  border-radius: 20px !important;
  padding: 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.35s ease !important;
  box-sizing: border-box !important;
}

.luxury-testimonial-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(142, 36, 170, 0.25) !important;
  box-shadow: 0 16px 38px rgba(142, 36, 170, 0.08) !important;
}

.test-card-top-bar {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 16px !important;
}

.star-rating {
  display: flex !important;
  gap: 3px !important;
  color: #F59E0B !important;
  font-size: 1.05rem !important;
}

.test-quote-wrap {
  margin-bottom: 22px !important;
  flex: 1 !important;
}

.test-quote-body {
  font-size: 0.94rem !important;
  color: #2D2738 !important;
  line-height: 1.68 !important;
  font-weight: 450 !important;
  margin: 0 !important;
}

.test-author-row {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  border-top: 1px solid rgba(142, 36, 170, 0.08) !important;
  padding-top: 16px !important;
  margin-top: auto !important;
}

.author-avatar-ring {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #8E24AA 0%, #D05BFF 100%) !important;
  flex-shrink: 0 !important;
}

.author-avatar-img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}

.author-name {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #180926 !important;
  margin: 0 0 2px 0 !important;
}

.author-role {
  font-size: 0.78rem !important;
  color: #8E24AA !important;
  font-weight: 600 !important;
  display: block !important;
}

/* Testimonials Mobile & Tablet Responsive Styles */
@media (max-width: 992px) {
  html, body, #app-wrapper {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .testimonials-section-dedicated {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding: 60px 0 !important;
  }

  .testimonials-section-dedicated .container {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .testimonials-section-dedicated .section-header-centered {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 28px auto !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .testimonials-section-dedicated .section-title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  .testimonials-section-dedicated .section-desc {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    text-align: center !important;
  }

  .marquee-contained-box {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    box-sizing: border-box !important;
    margin: 20px auto 0 !important;
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%) !important;
    padding: 8px 0 !important;
    border-radius: 16px !important;
  }

  .marquee-track {
    gap: 16px !important;
  }

  .luxury-testimonial-card {
    width: 280px !important;
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }

  .test-quote-wrap {
    margin-bottom: 16px !important;
  }

  .test-quote-body {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }

  .test-author-row {
    padding-top: 12px !important;
    gap: 10px !important;
  }

  .author-avatar-ring {
    width: 38px !important;
    height: 38px !important;
  }

  .author-name {
    font-size: 0.88rem !important;
  }

  .author-role {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .marquee-contained-box {
    mask-image: none !important;
    -webkit-mask-image: none !important;
    padding: 4px 0 !important;
  }

  .marquee-track {
    gap: 12px !important;
  }

  .luxury-testimonial-card {
    width: 260px !important;
    padding: 16px 14px !important;
  }

  .test-quote-body {
    font-size: 0.84rem !important;
    line-height: 1.55 !important;
  }
}

/* ============================================================
   ULTRA-LUXURY STATS & ACHIEVEMENTS SHOWCASE
   ============================================================ */
#results {
  background: #FAF8FC !important;
  padding: 100px 0 !important;
  position: relative !important;
}

.stats-luxury-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
  width: 100% !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .stats-luxury-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

.stat-luxury-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(142, 36, 170, 0.09) !important;
  border-radius: 24px !important;
  padding: 34px 30px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(142, 36, 170, 0.03) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.stat-luxury-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 3px !important;
  background: linear-gradient(90deg, #8E24AA 0%, #D05BFF 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.stat-luxury-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(142, 36, 170, 0.22) !important;
  box-shadow: 0 20px 45px rgba(142, 36, 170, 0.08) !important;
}

.stat-luxury-card:hover::before {
  opacity: 1 !important;
}

.stat-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 24px !important;
}

.stat-icon-box {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  background: rgba(142, 36, 170, 0.05) !important;
  border: 1px solid rgba(142, 36, 170, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #8E24AA !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.stat-icon-box svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #8E24AA !important;
  transition: stroke 0.3s ease, transform 0.3s ease !important;
}

.stat-luxury-card:hover .stat-icon-box {
  background: #8E24AA !important;
  border-color: #8E24AA !important;
  transform: scale(1.05) rotate(4deg) !important;
}

.stat-luxury-card:hover .stat-icon-box svg {
  stroke: #FFFFFF !important;
}

.stat-accent-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(142, 36, 170, 0.04) !important;
  border: 1px solid rgba(142, 36, 170, 0.1) !important;
  color: #8E24AA !important;
  padding: 5px 12px !important;
  border-radius: 30px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
}

.stat-accent-pill.live-pulse {
  background: rgba(16, 185, 129, 0.08) !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
  color: #059669 !important;
}

.stat-num-wrap {
  display: flex !important;
  align-items: baseline !important;
  gap: 2px !important;
  margin-bottom: 6px !important;
}

.stat-num {
  font-family: var(--font-sans) !important;
  font-size: clamp(2.6rem, 4vw, 3.6rem) !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  color: #12081C !important;
}

.stat-plus {
  font-size: clamp(2rem, 3vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: #8E24AA !important;
  margin-left: 2px !important;
}

.stat-card-title {
  font-family: var(--font-sans) !important;
  font-size: 1.15rem !important;
  font-weight: 750 !important;
  color: #12081C !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.01em !important;
}

.stat-card-desc {
  font-size: 0.9rem !important;
  color: #5b4a60 !important;
  line-height: 1.6 !important;
  margin: 0 0 16px 0 !important;
}

.stat-footer-tag {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding-top: 14px !important;
  border-top: 1px dashed rgba(142, 36, 170, 0.12) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: #6b5b73 !important;
}

.stat-footer-tag .dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background-color: #8E24AA !important;
  display: inline-block !important;
}

.stat-footer-tag .dot.green {
  background-color: #10B981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2) !important;
}

/* Testimonial Summary Badge */
.testimonial-summary-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(142, 36, 170, 0.15) !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 15px rgba(142, 36, 170, 0.05) !important;
  margin-top: 18px !important;
}

.testimonial-summary-badge .stars-gold {
  color: #F59E0B !important;
  font-size: 0.95rem !important;
  letter-spacing: 2px !important;
}

.testimonial-summary-badge .score {
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  color: #12081C !important;
}

.testimonial-summary-badge .divider {
  color: rgba(0, 0, 0, 0.15) !important;
}

.testimonial-summary-badge .count {
  font-size: 0.85rem !important;
  color: #6b5b73 !important;
  font-weight: 500 !important;
}

/* Testimonial Course Tag */
.test-course-tag {
  display: inline-block !important;
  font-size: 0.78rem !important;
  font-weight: 650 !important;
  color: #8E24AA !important;
  background: rgba(142, 36, 170, 0.06) !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  margin-bottom: 14px !important;
  align-self: flex-start !important;
}

/* Testimonial Audio Bar */
.test-audio-bar {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #F8F4FA !important;
  border: 1px solid rgba(142, 36, 170, 0.1) !important;
  border-radius: 12px !important;
  padding: 8px 14px !important;
  margin-bottom: 20px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.test-audio-bar:hover {
  background: #F3E8F7 !important;
  border-color: rgba(142, 36, 170, 0.25) !important;
}

.test-audio-bar .audio-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #8E24AA !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.75rem !important;
  padding-left: 2px !important;
  box-shadow: 0 2px 6px rgba(142, 36, 170, 0.3) !important;
}

.test-audio-bar .audio-waves {
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
  height: 16px !important;
}

.test-audio-bar .wave-bar {
  display: inline-block !important;
  width: 3px !important;
  background: #8E24AA !important;
  border-radius: 3px !important;
  opacity: 0.7 !important;
}

.test-audio-bar .bar-1 { height: 8px; }
.test-audio-bar .bar-2 { height: 14px; }
.test-audio-bar .bar-3 { height: 10px; }
.test-audio-bar .bar-4 { height: 16px; }
.test-audio-bar .bar-5 { height: 9px; }
.test-audio-bar .bar-6 { height: 12px; }

.test-audio-bar:hover .wave-bar {
  animation: wavePulse 1s infinite alternate ease-in-out !important;
}

.test-audio-bar:hover .bar-1 { animation-delay: 0.1s !important; }
.test-audio-bar:hover .bar-2 { animation-delay: 0.3s !important; }
.test-audio-bar:hover .bar-3 { animation-delay: 0.2s !important; }
.test-audio-bar:hover .bar-4 { animation-delay: 0.5s !important; }
.test-audio-bar:hover .bar-5 { animation-delay: 0.4s !important; }
.test-audio-bar:hover .bar-6 { animation-delay: 0.2s !important; }

@keyframes wavePulse {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1.3); }
}

.test-audio-bar.playing .wave-bar {
  animation: wavePulse 0.6s infinite alternate ease-in-out !important;
}

.test-audio-bar.playing {
  background: #f1ddf8 !important;
  border-color: #8E24AA !important;
}

.test-audio-bar .audio-time {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #5b4a60 !important;
  margin-left: auto !important;
}

/* ============================================================
   ULTRA-LUXURY 2-COLUMN FAQ SECTION (PERFECT GRID ALIGNMENT)
   ============================================================ */
.faq-section-dedicated {
  background: #FFFFFF !important;
  padding: 100px 0 !important;
  position: relative !important;
}

.faq-layout-grid {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 56px !important;
  width: 100% !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

@media (max-width: 992px) {
  .faq-layout-grid {
    flex-direction: column !important;
    gap: 40px !important;
  }
}

.faq-left-sticky {
  width: 360px !important;
  flex-shrink: 0 !important;
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 120px !important;
  align-self: flex-start !important;
  box-sizing: border-box !important;
}

@media (max-width: 992px) {
  .faq-left-sticky {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
  }
}

.faq-left-sticky .section-tag {
  display: inline-flex !important;
  background: #F3E8FF !important;
  color: #93268F !important;
  border: 1px solid rgba(147, 38, 143, 0.2) !important;
}

.faq-left-sticky .section-title {
  font-family: var(--font-sans), system-ui, sans-serif !important;
  font-size: clamp(2.0rem, 3.2vw, 2.6rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #12081C !important;
  margin-bottom: 16px !important;
  letter-spacing: -0.02em !important;
}

.faq-left-sticky .section-desc {
  font-size: 0.95rem !important;
  color: #52435B !important;
  line-height: 1.68 !important;
  margin: 0 0 28px 0 !important;
  font-weight: 400 !important;
}

.faq-support-card {
  background: #FAFAFC !important;
  border: 1px solid rgba(142, 36, 170, 0.09) !important;
  border-radius: 20px !important;
  padding: 24px 22px !important;
  box-shadow: 0 4px 20px rgba(142, 36, 170, 0.03) !important;
  box-sizing: border-box !important;
}

.support-icon-wrap {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  background: rgba(142, 36, 170, 0.08) !important;
  color: #8E24AA !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 14px !important;
}

.support-icon-wrap svg {
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor !important;
}

.support-text h5 {
  font-family: var(--font-sans) !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  color: #12081C !important;
  margin: 0 0 4px 0 !important;
}

.support-text p {
  font-size: 0.84rem !important;
  color: #6B5B73 !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.5 !important;
}



/* Right Accordion */
.faq-right-accordion {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  box-sizing: border-box !important;
  padding-top: 30px !important; /* Horizontally aligns first card top edge directly level with 'Ko'p beriladigan Savollar' main title */
}

@media (max-width: 992px) {
  .faq-right-accordion {
    padding-top: 0 !important;
  }
}

.faq-block {
  background: #FFFFFF !important;
  border: 1px solid rgba(142, 36, 170, 0.08) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  box-sizing: border-box !important;
}

.faq-block:hover {
  border-color: rgba(142, 36, 170, 0.2) !important;
  box-shadow: 0 8px 25px rgba(142, 36, 170, 0.06) !important;
}

.faq-trigger {
  width: 100% !important;
  padding: 22px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  background: transparent !important;
  border: none !important;
  font-family: var(--font-sans) !important;
  font-size: 1.02rem !important;
  font-weight: 600 !important;
  color: #12081C !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: color 0.3s ease !important;
  box-sizing: border-box !important;
}

.faq-trigger:hover {
  color: #8E24AA !important;
}

.faq-icon-ring {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(142, 36, 170, 0.06) !important;
  color: #8E24AA !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease !important;
}

.faq-icon-ring svg {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  transition: transform 0.35s ease !important;
}

.faq-block.active .faq-icon-ring {
  background: #8E24AA !important;
  color: #FFFFFF !important;
  transform: rotate(180deg) !important;
}

.faq-content-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 24px 22px 24px !important;
  font-size: 0.94rem !important;
  color: #53455B !important;
  line-height: 1.7 !important;
  border-top: 1px solid rgba(142, 36, 170, 0.04) !important;
  padding-top: 16px !important;
  margin-top: 4px !important;
}

/* ============================================================
   PERFECT MOBILE & TABLET RESPONSIVE SYSTEM (100% ADAPTIVE)
   ============================================================ */

/* Global Overflow Fix to prevent any mobile horizontal scrolling */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
}

@media (max-width: 768px) {
  /* Container Padding */
  .container {
    padding: 0 16px !important;
  }

  /* Section Padding */
  .section {
    padding: 60px 0 !important;
  }

  /* Navigation Header Mobile Layout */
  header {
    padding: 16px 20px !important;
  }
  header.scrolled {
    padding: 12px 20px !important;
  }

  .nav-brand .nav-name {
    font-size: 1.15rem !important;
  }

  /* 3D Gallery Stage on Mobile */
  .cylinder-section-dedicated {
    padding: 50px 0 !important;
  }

  .cylinder-stage {
    height: 380px !important;
    perspective: 800px !important;
  }

  .cylinder-container {
    width: 200px !important;
    height: 310px !important;
  }

  .cylinder-card {
    width: 200px !important;
    height: 310px !important;
    border-radius: 18px !important;
  }

  .cylinder-btn {
    width: 44px !important;
    height: 44px !important;
  }

  .cylinder-btn-prev {
    left: 8px !important;
  }

  .cylinder-btn-next {
    right: 8px !important;
  }

  /* Hero Section Mobile Typography */
  .hero-screen {
    padding: 100px 16px 50px 16px !important;
    min-height: auto !important;
  }

  .hero-title-headline {
    font-size: clamp(1.75rem, 7.5vw, 2.3rem) !important;
    line-height: 1.22 !important;
  padding: 12px 20px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

.faq-telegram-btn:hover {
  background: #7B1FA2 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(142, 36, 170, 0.25) !important;
}

.faq-telegram-btn svg {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
}

/* Right Accordion */
.faq-right-accordion {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  box-sizing: border-box !important;
  padding-top: 30px !important; /* Horizontally aligns first card top edge directly level with 'Ko'p beriladigan Savollar' main title */
}

@media (max-width: 992px) {
  .faq-right-accordion {
    padding-top: 0 !important;
  }
}

.faq-block {
  background: #FFFFFF !important;
  border: 1px solid rgba(142, 36, 170, 0.08) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  box-sizing: border-box !important;
}

.faq-block:hover {
  border-color: rgba(142, 36, 170, 0.2) !important;
  box-shadow: 0 8px 25px rgba(142, 36, 170, 0.06) !important;
}


.faq-trigger {
  width: 100% !important;
  padding: 22px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  background: transparent !important;
  border: none !important;
  font-family: var(--font-sans) !important;
  font-size: 1.02rem !important;
  font-weight: 600 !important;
  color: #12081C !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: color 0.3s ease !important;
  box-sizing: border-box !important;
}

.faq-trigger:hover {
  color: #8E24AA !important;
}

.faq-icon-ring {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(142, 36, 170, 0.06) !important;
  color: #8E24AA !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease !important;
}

.faq-icon-ring svg {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  transition: transform 0.35s ease !important;
}

.faq-block.active .faq-icon-ring {
  background: #8E24AA !important;
  color: #FFFFFF !important;
  transform: rotate(180deg) !important;
}

.faq-content-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 24px 22px 24px !important;
  font-size: 0.94rem !important;
  color: #53455B !important;
  line-height: 1.7 !important;
  border-top: 1px solid rgba(142, 36, 170, 0.04) !important;
  padding-top: 16px !important;
  margin-top: 4px !important;
}

/* ============================================================
   PERFECT MOBILE & TABLET RESPONSIVE SYSTEM (100% ADAPTIVE)
   ============================================================ */

/* Global Overflow Fix to prevent any mobile horizontal scrolling */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
}

@media (max-width: 768px) {
  /* Container Padding */
  .container {
    padding: 0 16px !important;
  }

  /* Section Padding */
  .section {
    padding: 60px 0 !important;
  }

  /* Navigation Header Mobile Layout */
  header {
    padding: 16px 20px !important;
  }
  header.scrolled {
    padding: 12px 20px !important;
  }

  .nav-brand .nav-name {
    font-size: 1.15rem !important;
  }

  /* 3D Gallery Stage on Mobile */
  .cylinder-section-dedicated {
    padding: 50px 0 !important;
  }

  .cylinder-stage {
    height: 380px !important;
    perspective: 800px !important;
  }

  .cylinder-container {
    width: 200px !important;
    height: 310px !important;
  }

  .cylinder-card {
    width: 200px !important;
    height: 310px !important;
    border-radius: 18px !important;
  }

  .cylinder-btn {
    width: 44px !important;
    height: 44px !important;
  }

  .cylinder-btn-prev {
    left: 8px !important;
  }

  .cylinder-btn-next {
    right: 8px !important;
  }

  /* Hero Section Mobile Typography */
  .hero-screen {
    padding: 100px 16px 50px 16px !important;
    min-height: auto !important;
  }

  .hero-title-headline {
    font-size: clamp(1.75rem, 7.5vw, 2.3rem) !important;
    line-height: 1.22 !important;
  }

  .hero-desc-capsule {
    font-size: 0.9rem !important;
    padding: 10px 16px !important;
  }

  /* Bento Grid & Program Cards Mobile Stagger */
  .programs-grid,
  .bento-grid,
  .apply-grid,
  .footer-grid,
  .faq-layout-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .form-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
}

#app-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.preloader-overlay {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Tailwind Support Utilities for Why Us (#about) Section */
.bg-white { background-color: #ffffff !important; }
.max-w-6xl { max-width: 72rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.py-14 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

.h-40 { height: 10rem !important; }

.space-y-10 > * + * {
  margin-top: 2.5rem !important;
}

.space-y-16 > * + * {
  margin-top: 4rem !important;
}

.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.leading-snug { line-height: 1.375 !important; }
.max-w-xs { max-width: 20rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }

@media (min-width: 640px) {
  .sm\:text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
  .sm\:h-44 { height: 11rem !important; }
  .sm\:h-72 { height: 18rem !important; }
}

@media (min-width: 768px) {
  .md\:py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .md\:py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
  .md\:py-28 { padding-top: 7rem !important; padding-bottom: 7rem !important; }
  .md\:space-y-10 > * + * { margin-top: 2.5rem !important; }
  .md\:gap-0 { gap: 0px !important; }
  .sm\:text-5xl { font-size: 3rem !important; }
}

.hover\:scale-105:hover {
  transform: scale(1.05) !important;
}

.header-nav-btn .icon-purple-circle svg,
header.header.scrolled .header-nav-btn .icon-purple-circle svg {
  width: 15px !important;
  height: 15px !important;
  display: block !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header-nav-btn:hover .icon-purple-circle svg,
header.header.scrolled .header-nav-btn:hover .icon-purple-circle svg {
  transform: translateX(4px) !important;
}

/* ============================================================
   HEADER & NAVBAR UI/UX (LIGHT FROSTED GLASS THEME)
   ============================================================ */
header.header,
header,
.header,
#nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  padding: 14px 0 !important;
  background-color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(147, 38, 143, 0.12) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

header.scrolled,
.header.scrolled,
header.header.scrolled,
#nav.scrolled {
  padding: 10px 0 !important;
  background-color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(147, 38, 143, 0.18) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

header.header .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
}

@media (max-width: 1024px) {
  header.header .container {
    padding: 0 20px !important;
  }
  .nav-links {
    gap: 20px !important;
  }
}

.nav-brand {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
}

/* Mobile Toggle & Backdrop (Hidden on Desktop) */
.nav-toggle,
.mobile-menu-backdrop,
.mobile-drawer-header,
.nav-link-chevron {
  display: none;
}

@media (min-width: 993px) {
  .nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 32px !important;
    position: static !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 10001 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  }

  .nav-toggle .bar {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background: #FFFFFF !important;
    border-radius: 2px !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .nav-toggle:hover,
  .nav-toggle.active {
    background: #FFFFFF !important;
    border-color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
  }

  .nav-toggle:hover .bar,
  .nav-toggle.active .bar {
    background: #180926 !important;
  }

  .nav-toggle.active .bar-1 {
    transform: translateY(6px) rotate(45deg) !important;
  }

  .nav-toggle.active .bar-2 {
    opacity: 0 !important;
  }

  .nav-toggle.active .bar-3 {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  .mobile-menu-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(18, 8, 28, 0.55) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.35s ease !important;
  }

  .mobile-menu-backdrop.active {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .mobile-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-bottom: 14px !important;
    margin-bottom: 8px !important;
    border-bottom: 1px solid rgba(147, 38, 143, 0.12) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mobile-drawer-badge {
    background: #F3E8FF !important;
    color: #93268F !important;
    border: 1px solid rgba(147, 38, 143, 0.22) !important;
    border-radius: 9999px !important;
    padding: 4px 14px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    display: inline-block !important;
  }

  .mobile-drawer-close {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(147, 38, 143, 0.08) !important;
    border: 1px solid rgba(147, 38, 143, 0.18) !important;
    color: #93268F !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: all 0.25s ease !important;
  }

  .mobile-drawer-close svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #93268F !important;
    display: block !important;
  }

  .mobile-drawer-close:hover,
  .mobile-drawer-close:active {
    background: #93268F !important;
    border-color: #93268F !important;
  }

  .mobile-drawer-close:hover svg,
  .mobile-drawer-close:active svg {
    stroke: #FFFFFF !important;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 300px !important;
    max-width: 84vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #FFFFFF !important;
    border-left: 1px solid rgba(147, 38, 143, 0.15) !important;
    box-shadow: -12px 0 40px rgba(18, 8, 28, 0.18) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 75px 18px 28px 18px !important;
    gap: 8px !important;
    z-index: 10000 !important;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
  }

  .nav-links.open {
    right: 0 !important;
  }

  .nav-links .nav-link {
    font-family: 'Inter', -apple-system, sans-serif !important;
    color: #180926 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    background: #FAF5FF !important;
    border: 1px solid rgba(147, 38, 143, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: all 0.25s ease !important;
    opacity: 1 !important;
    text-shadow: none !important;
    box-sizing: border-box !important;
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link:active {
    background: #F3E8FF !important;
    color: #93268F !important;
    border-color: rgba(147, 38, 143, 0.25) !important;
    transform: translateX(4px) !important;
  }

  .nav-links .header-nav-btn::before,
  .nav-links .hero-white-pill-btn::before {
    content: '' !important;
    position: absolute !important;
    left: 5px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #801b7c !important;
    z-index: 1 !important;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: block !important;
  }

  .nav-links .header-nav-btn,
  .nav-links .hero-white-pill-btn {
    margin-top: 18px !important;
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    background: #FFFFFF !important;
    color: #180926 !important;
    border: 1px solid rgba(147, 38, 143, 0.22) !important;
    box-shadow: 0 4px 18px rgba(147, 38, 143, 0.12) !important;
    padding: 5px 22px 5px 5px !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .nav-links .header-nav-btn:hover::before,
  .nav-links .header-nav-btn:active::before,
  .nav-links .hero-white-pill-btn:hover::before,
  .nav-links .hero-white-pill-btn:active::before {
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 9999px !important;
    background: #801b7c !important;
  }

  .nav-links .header-nav-btn:hover,
  .nav-links .header-nav-btn:active,
  .nav-links .hero-white-pill-btn:hover,
  .nav-links .hero-white-pill-btn:active {
    box-shadow: 0 8px 25px rgba(128, 27, 124, 0.35) !important;
  }

  .nav-links .header-nav-btn span:not(.icon-purple-circle),
  .nav-links .hero-white-pill-btn span:not(.icon-purple-circle) {
    color: #180926 !important;
    position: relative !important;
    z-index: 2 !important;
    transition: color 0.3s ease !important;
  }

  .nav-links .header-nav-btn:hover span:not(.icon-purple-circle),
  .nav-links .header-nav-btn:active span:not(.icon-purple-circle),
  .nav-links .hero-white-pill-btn:hover span:not(.icon-purple-circle),
  .nav-links .hero-white-pill-btn:active span:not(.icon-purple-circle) {
    color: #FFFFFF !important;
  }

  .nav-links .header-nav-btn .icon-purple-circle,
  .nav-links .hero-white-pill-btn .icon-purple-circle {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    border-radius: 50% !important;
    background: transparent !important; /* TRANSPARENT SO ::BEFORE IS THE ONLY PURPLE CIRCLE */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFFFFF !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
    border: none !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .nav-links .header-nav-btn .icon-purple-circle svg,
  .nav-links .hero-white-pill-btn .icon-purple-circle svg {
    width: 15px !important;
    height: 15px !important;
    stroke: #FFFFFF !important;
    display: block !important;
    position: relative !important;
    z-index: 3 !important;
    transition: transform 0.3s ease !important;
  }

  .nav-links .header-nav-btn:hover .icon-purple-circle svg,
  .nav-links .header-nav-btn:active .icon-purple-circle svg,
  .nav-links .hero-white-pill-btn:hover .icon-purple-circle svg,
  .nav-links .hero-white-pill-btn:active .icon-purple-circle svg {
    transform: translateX(4px) !important;
  }
}

.nav-name,
header.header.scrolled .nav-name {
  color: #180926 !important;
  font-weight: 800 !important;
}

.nav-sub,
header.header.scrolled .nav-sub {
  color: #801b7c !important;
  font-weight: 700 !important;
}

@media (min-width: 993px) {
  .nav-link {
    color: #801b7c !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    opacity: 1 !important;
    text-shadow: none !important;
  }

  .nav-link:hover {
    color: #93268f !important;
    opacity: 1 !important;
  }

  header.header.scrolled .nav-name {
    color: #180926 !important;
  }

  header.header.scrolled .nav-sub {
    color: #801b7c !important;
  }

  header.header.scrolled .nav-link {
    color: #801b7c !important;
    opacity: 1 !important;
    text-shadow: none !important;
  }

  header.header.scrolled .nav-link:hover {
    color: #93268f !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   GLOBAL SIGNATURE LIQUID HOVER BUTTON SYSTEM (100% UNIFIED)
   ============================================================ */
.hero-white-pill-btn,
.cylinder-action-btn,
.faq-telegram-btn,
.form-submit-btn-wrapper,
.btn-primary {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  background: #FFFFFF !important;
  color: #180926 !important;
  border: 1px solid rgba(147, 38, 143, 0.22) !important;
  box-shadow: 0 4px 18px rgba(147, 38, 143, 0.12) !important;
  padding: 5px 24px 5px 5px !important;
  border-radius: 9999px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-white-pill-btn::before,
.cylinder-action-btn::before,
.faq-telegram-btn::before,
.form-submit-btn-wrapper::before,
.btn-primary::before {
  content: '' !important;
  position: absolute !important;
  left: 5px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #93268f !important;
  z-index: 1 !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block !important;
}

.hero-white-pill-btn:hover::before,
.hero-white-pill-btn:active::before,
.cylinder-action-btn:hover::before,
.cylinder-action-btn:active::before,
.faq-telegram-btn:hover::before,
.faq-telegram-btn:active::before,
.form-submit-btn-wrapper:hover::before,
.form-submit-btn-wrapper:active::before,
.btn-primary:hover::before,
.btn-primary:active::before {
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 9999px !important;
  background: #93268f !important;
}

.hero-white-pill-btn:hover,
.hero-white-pill-btn:active,
.cylinder-action-btn:hover,
.cylinder-action-btn:active,
.faq-telegram-btn:hover,
.faq-telegram-btn:active,
.form-submit-btn-wrapper:hover,
.form-submit-btn-wrapper:active,
.btn-primary:hover,
.btn-primary:active {
  color: #FFFFFF !important;
  border-color: #93268f !important;
  box-shadow: 0 8px 25px rgba(147, 38, 143, 0.35) !important;
}

.hero-white-pill-btn span,
.cylinder-action-btn span,
.faq-telegram-btn span,
.form-submit-btn-wrapper span,
.btn-primary span {
  position: relative !important;
  z-index: 2 !important;
  color: #180926 !important;
  transition: color 0.35s ease !important;
}

.hero-white-pill-btn:hover span,
.hero-white-pill-btn:active span,
.cylinder-action-btn:hover span,
.cylinder-action-btn:active span,
.faq-telegram-btn:hover span,
.faq-telegram-btn:active span,
.form-submit-btn-wrapper:hover span,
.form-submit-btn-wrapper:active span,
.btn-primary:hover span,
.btn-primary:active span {
  color: #FFFFFF !important;
}

.hero-white-pill-btn .icon-purple-circle,
.cylinder-action-btn .btn-icon-circle,
.faq-telegram-btn .icon-purple-circle,
.form-submit-btn-wrapper .icon-purple-circle,
.btn-primary .icon-purple-circle {
  position: relative !important;
  z-index: 2 !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  border-radius: 50% !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.hero-white-pill-btn .icon-purple-circle svg,
.cylinder-action-btn .btn-icon-circle svg,
.faq-telegram-btn .icon-purple-circle svg,
.form-submit-btn-wrapper .icon-purple-circle svg,
.btn-primary .icon-purple-circle svg {
  width: 15px !important;
  height: 15px !important;
  stroke: #FFFFFF !important;
  display: block !important;
  transition: transform 0.35s ease !important;
}

.hero-white-pill-btn:hover .icon-purple-circle svg,
.hero-white-pill-btn:active .icon-purple-circle svg,
.cylinder-action-btn:hover .btn-icon-circle svg,
.cylinder-action-btn:active .btn-icon-circle svg,
.faq-telegram-btn:hover .icon-purple-circle svg,
.faq-telegram-btn:active .icon-purple-circle svg,
.form-submit-btn-wrapper:hover .icon-purple-circle svg,
.form-submit-btn-wrapper:active .icon-purple-circle svg,
.btn-primary:hover .icon-purple-circle svg,
.btn-primary:active .icon-purple-circle svg {
  transform: translateX(4px) !important;
}

/* ============================================================
   ENTERPRISE FILE UPLOAD BOX STYLING
   ============================================================ */
.file-upload-wrapper {
  width: 100% !important;
  margin-top: 4px !important;
}

.file-upload-box {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 18px !important;
  background: #FAF8FC !important;
  border: 2px dashed rgba(147, 38, 143, 0.3) !important;
  border-radius: 16px !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.file-upload-box:hover {
  background: #F5EDF7 !important;
  border-color: #93268f !important;
  transform: translateY(-1px) !important;
}

.file-upload-box.file-selected {
  background: #E8F5E9 !important;
  border: 2px solid #2e7d32 !important;
}

.file-upload-icon-circle {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 50% !important;
  background: rgba(147, 38, 143, 0.1) !important;
  color: #93268f !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.file-upload-box.file-selected .file-upload-icon-circle {
  background: #2e7d32 !important;
  color: #FFFFFF !important;
}

#fileUploadBox svg,
#fileIconCircle svg,
.file-upload-icon-circle svg,
.file-upload-box svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex-shrink: 0 !important;
  stroke: currentColor !important;
  display: block !important;
}

.file-upload-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.file-main-label {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #180926 !important;
  line-height: 1.3 !important;
}

.file-upload-box.file-selected .file-main-label {
  color: #1b5e20 !important;
}

.file-sub-label {
  font-size: 0.78rem !important;
  color: #666666 !important;
}
