/* ============================================
   MANARA CHARITY ORGANIZATION
   Custom Styles
   ============================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Plus+Jakarta+Sans:wght@300..800&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap');

/* ---------- Variables ---------- */
:root {
  --primary: #183A8A;
  --primary-light: #4966C7;
  --primary-lighter: #78A6FF;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --text: #1B1B1B;
  --text-muted: #6B7280;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="rtl"] {
  --font-primary: 'IBM Plex Sans Arabic', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', sans-serif;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] body,
[dir="rtl"] .font-sans {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Smooth Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-lighter);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* ---------- Glass Effect ---------- */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(24, 58, 138, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary);
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-lighter);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-link::after {
  background: var(--primary-light);
}

.navbar.scrolled .logo-text {
  color: var(--text);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
  background: var(--text);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
  background: var(--text);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
  background: var(--text);
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(24, 58, 138, 0.85) 0%,
    rgba(24, 58, 138, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-lighter);
  top: -200px;
  right: -200px;
  animation: float 20s infinite ease-in-out;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--white);
  bottom: -100px;
  left: -100px;
  animation: float 25s infinite ease-in-out reverse;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary-lighter);
  top: 50%;
  left: 10%;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

/* ---------- Floating Stats ---------- */
.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  animation: floatStat 6s infinite ease-in-out;
  white-space: nowrap;
}

.floating-stat:nth-child(2) { animation-delay: -2s; }
.floating-stat:nth-child(3) { animation-delay: -4s; }

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

/* ---------- Counter Section ---------- */
.counter-number {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Value Cards ---------- */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  background: rgba(24, 58, 138, 0.08);
  color: var(--primary);
  transition: all var(--transition);
}

.value-card:hover .value-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

/* ---------- Program Cards ---------- */
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.program-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(24,58,138,0.04) 0%, transparent 70%);
  border-radius: 50%;
  transition: all var(--transition);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.program-card:hover::after {
  width: 200px;
  height: 200px;
}

.program-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(24, 58, 138, 0.08);
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.program-card:hover .program-icon {
  background: var(--primary);
  color: var(--white);
}

/* ---------- Project Cards ---------- */
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: var(--text);
}

/* ---------- Progress Bar ---------- */
.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: #E5E7EB;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
  border-radius: 9999px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Gallery / Masonry ---------- */
.masonry-grid {
  column-count: 3;
  column-gap: 1.25rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s;
}

.masonry-item:hover img {
  transform: scale(1.08);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 58, 138, 0.4);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
  border: none;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ---------- Partner Carousel ---------- */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 1rem 2rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.partner-logo:hover {
  border-color: var(--primary-lighter);
  box-shadow: var(--shadow);
  color: var(--primary);
}

/* ---------- Help Cards ---------- */
.help-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.help-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.help-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
  transition: all var(--transition);
}

.help-card:nth-child(1) .help-icon { background: rgba(24,58,138,0.1); color: var(--primary); }
.help-card:nth-child(2) .help-icon { background: rgba(73,102,199,0.1); color: var(--primary-light); }
.help-card:nth-child(3) .help-icon { background: rgba(120,166,255,0.15); color: var(--primary-lighter); }
.help-card:nth-child(4) .help-icon { background: rgba(24,58,138,0.08); color: var(--primary); }

.help-card:hover .help-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--white);
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: #0f2a66;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24, 58, 138, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--white);
  color: var(--primary);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* ---------- Section Titles ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

/* ---------- Mission & Vision Cards ---------- */
.mv-card {
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.mv-card-mission {
  background: linear-gradient(135deg, var(--primary) 0%, #1f4aad 100%);
  color: var(--white);
}

.mv-card-vision {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.mv-card-mission .mv-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.mv-card-vision .mv-icon {
  background: rgba(24,58,138,0.08);
  color: var(--primary);
}

/* ---------- News Cards ---------- */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

/* ---------- Footer ---------- */
.footer {
  background: #0f1f4a;
  color: rgba(255,255,255,0.8);
}

.footer a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--primary-lighter);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(24,58,138,0.3);
  transition: all var(--transition);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(24,58,138,0.4);
}

/* ---------- RTL Specific ---------- */
[dir="rtl"] .section-label::before {
  margin-left: 0.5rem;
  margin-right: 0;
}

[dir="rtl"] .navbar .container {
  direction: rtl;
}

[dir="rtl"] .mobile-menu {
  right: auto;
  left: -100%;
}

[dir="rtl"] .mobile-menu.open {
  right: auto;
  left: 0;
}

[dir="rtl"] .lightbox-close {
  right: auto;
  left: 1.5rem;
}

/* ---------- AOS Overrides ---------- */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .counter-number {
    font-size: 2.25rem;
  }

  .masonry-grid {
    column-count: 2;
    column-gap: 0.75rem;
  }

  .masonry-item {
    margin-bottom: 0.75rem;
  }

  .floating-stat {
    display: none;
  }

  .mv-card {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    column-count: 1;
  }

  .counter-number {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.7rem 1.5rem;
    font-size: 0.875rem;
  }

  .value-card,
  .program-card {
    padding: 1.5rem;
  }

  .help-card {
    padding: 1.75rem 1.25rem;
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ---------- Language Toggle ---------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  background: transparent;
}

.navbar.scrolled .lang-toggle {
  border-color: rgba(0,0,0,0.15);
  color: var(--text);
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .lang-toggle:hover {
  background: rgba(24,58,138,0.06);
}

/* ---------- Donate Button Pulse ---------- */
.donate-btn {
  position: relative;
}

.donate-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 9999px;
  background: conic-gradient(from 0deg, transparent, var(--primary-lighter), transparent, var(--primary-lighter), transparent);
  animation: rotate-border 3s linear infinite;
  z-index: -1;
  opacity: 0.6;
}

.donate-btn::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 9999px;
  background: var(--primary);
  z-index: -1;
}

@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---------- Mission/Vision Card Illustrations ---------- */
.mv-illustration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  font-size: 8rem;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.mv-card-vision .mv-illustration {
  color: var(--primary);
}

/* ---------- Partner Swiper ---------- */
.swiper-partner .swiper-wrapper {
  transition-timing-function: linear;
}
