/* CSS Variables - Brand Colors */
:root {
  /* Brand Colors - Parish Church Inspired */
  --primary-color: #073b7a;
  --secondary-color: #1d3131;
  --accent-color: #f2c36b;
  --background-warm: #fbf6ed;
  --text-dark: #1d3131;
  --success-color: #073b7a;
  --warning-color: #f2c36b;
  --error-color: #822e2e;
  --text-primary: #1d3131;
  --text-secondary: #777c7b;
  --text-muted: #b39671;
  --bg-primary: #ffffff;
  --bg-secondary: #fbf6ed;
  --bg-tertiary: #eee6db;
  --border-color: #eee6db;
  --shadow-color: rgba(29, 49, 49, 0.1);
  /* Typography */
  --font-family-heading: "Cairo", sans-serif;
  --font-family-body: "Cairo", sans-serif;
  /* Brand Colors - Solid Colors Only */
  --gradient-primary: #3f6b6c;
  --gradient-secondary: #f2c36b;
  --gradient-accent: #fbf6ed;
  --gradient-warm: #fbf6ed;
  --gradient-hero: #3f6b6c;
  /* Typography */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-warm: 0 8px 32px rgba(231, 76, 60, 0.15);
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Typography Utility Classes */
.text-xs {
  font-size: var(--font-size-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-base {
  font-size: var(--font-size-base);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

.text-2xl {
  font-size: var(--font-size-2xl);
}

.text-3xl {
  font-size: var(--font-size-3xl);
}

.text-4xl {
  font-size: var(--font-size-4xl);
}

.text-5xl {
  font-size: var(--font-size-5xl);
}

.text-6xl {
  font-size: var(--font-size-6xl);
}

/* Spacing Utility Classes */
.p-xs {
  padding: var(--spacing-xs);
}

.p-sm {
  padding: var(--spacing-sm);
}

.p-md {
  padding: var(--spacing-md);
}

.p-lg {
  padding: var(--spacing-lg);
}

.p-xl {
  padding: var(--spacing-xl);
}

.p-2xl {
  padding: var(--spacing-2xl);
}

.p-3xl {
  padding: var(--spacing-3xl);
}

.p-4xl {
  padding: var(--spacing-4xl);
}

.px-xs {
  padding-left: var(--spacing-xs);
  padding-right: var(--spacing-xs);
}

.px-sm {
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
}

.px-md {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.px-lg {
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

.px-xl {
  padding-left: var(--spacing-xl);
  padding-right: var(--spacing-xl);
}

.py-xs {
  padding-top: var(--spacing-xs);
  padding-bottom: var(--spacing-xs);
}

.py-sm {
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}

.py-md {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.py-lg {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.py-xl {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

/* Responsive Design */
@media (max-width: 768px) {
  .verses-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .verses-title {
    font-size: var(--font-size-3xl);
  }
  .verse-card {
    padding: var(--spacing-lg);
  }
}
/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-body);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  overflow-x: hidden;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--primary-color);
  z-index: 1000;
  transition: width 0.1s ease;
}

.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .mobile-br {
    display: block;
  }
}
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-6xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}
@media (max-width: 768px) {
  .section-title {
    font-size: var(--font-size-3xl);
  }
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
}

/* Text Animations */
.warm-text-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-text {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Shared Components */
/* Statistics Components */
.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

.stat-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--font-size-xl);
  margin: 0 auto var(--spacing-md);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

/* Impact Numbers (used in projects and impact sections) */
.impact-number {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.impact-label {
  font-size: var(--font-size-lg);
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.impact-description {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
}

/* Responsive Design for Stats */
@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat-number {
    font-size: var(--font-size-3xl);
  }
  .stat-label {
    font-size: var(--font-size-base);
  }
}
@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: var(--font-size-2xl);
  }
  .stat-label {
    font-size: var(--font-size-sm);
  }
}
/* Modern Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(1, 53, 119, 0.1);
  z-index: 1000;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.navbar {
  padding: 1rem 0;
  position: relative;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-direction: row-reverse; /* RTL layout */
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.logo-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 0.5rem; /* Add padding to maintain original logo colors */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.logo-text h1 {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: 2px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.logo-text p {
  font-size: 0.875rem;
  color: var(--bg-primary);
  font-weight: 500;
  line-height: 1.5;
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--bg-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-text {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bg-primary);
  border-radius: 1px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover .nav-text {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.nav-link:active .nav-text {
  transform: translateY(0);
}

/* Active Navigation State */
.nav-link.active .nav-text {
  color: var(--bg-primary);
  font-weight: 600;
}

.nav-link.active .nav-indicator {
  width: 100%;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  margin-left: 1rem; /* RTL: margin-left instead of margin-right */
}

.lang-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(1, 53, 119, 0.1);
  border: 1px solid rgba(1, 53, 119, 0.2);
  border-radius: 12px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-link:hover {
  background: rgba(1, 53, 119, 0.15);
  border-color: rgba(1, 53, 119, 0.3);
  transform: translateY(-2px);
}

.lang-link i {
  font-size: 0.8rem;
}

/* Call to Action Button */
.header-cta {
  display: flex;
  align-items: center;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
  transform: scale(1.1);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-toggle.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 18px;
  position: relative;
}

.bar {
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.bar-1 {
  transform-origin: top left;
}

.bar-3 {
  transform-origin: bottom left;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-radius: 0 0 0 20px;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: white;
  position: relative;
  overflow: hidden;
}

.mobile-nav-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

/* Mobile Navigation Close Button */
.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

html[dir="rtl"] .mobile-nav-close {
  left: 1rem;
  right: auto;
}

.mobile-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.mobile-close-btn:active {
  transform: scale(0.95);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-logo-img {
  width: auto;
  height: 60px;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
  background: white; /* White background for mobile logo */
  padding: 6px; /* Add padding to maintain original logo colors */
}

.mobile-logo-text h2 {
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  line-height: 1.2;
}

.mobile-logo-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.mobile-nav-menu {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(1, 53, 119, 0.05);
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}

.mobile-nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover .mobile-nav-icon {
  color: var(--primary-color);
}

.mobile-nav-text {
  font-size: 1rem;
}

.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(1, 53, 119, 0.2);
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
}

.mobile-lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  margin-top: 1rem;
  background: rgba(1, 53, 119, 0.1);
  border: 1px solid rgba(1, 53, 119, 0.2);
  border-radius: 12px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.mobile-lang-link:hover {
  background: rgba(1, 53, 119, 0.15);
  border-color: rgba(1, 53, 119, 0.3);
  transform: translateY(-2px);
}

.mobile-lang-link i {
  font-size: 0.8rem;
}

.mobile-cta-icon {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  .nav-menu {
    gap: 2rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .cta-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .logo-text h1 {
    font-size: 1rem;
  }
  .logo-text p {
    font-size: 0.75rem;
  }
  .logo-img {
    width: 60px;
    height: 60px;
  }
  /* Mobile Navigation Active States - Hamburger to X */
  .mobile-nav-overlay.active .bar-1 {
    transform: rotate(45deg) translate(6px, 6px);
    background: white;
  }
  .mobile-nav-overlay.active .bar-2 {
    opacity: 0;
    transform: scaleX(0);
  }
  .mobile-nav-overlay.active .bar-3 {
    transform: rotate(-45deg) translate(6px, -6px);
    background: white;
  }
  /* Mobile toggle active state */
  .mobile-nav-overlay.active .mobile-toggle {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
  }
  /* Mobile Navigation Content Adjustments */
  .mobile-nav-content {
    width: 100%;
    max-width: 400px;
  }
  .mobile-nav-header {
    padding: 1.5rem 1rem 1rem;
  }
  .mobile-nav-menu {
    padding: 0.5rem 0;
  }
  .mobile-nav-link {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  .mobile-nav-icon {
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }
  .mobile-nav-footer {
    padding: 1rem;
  }
  .mobile-cta-button {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
}
/* Hero Section - Used Styles Only */
/* Hero Link Styles */
.hero-link {
  color: var(--bg-primary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.hero-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Hero Section Styles - Actual Implementation */
section#home.hero-section {
  background: linear-gradient(135deg, #073b7a 0%, #073b7a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

section#home.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  background: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

section#home .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fbf6ed;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: block;
  grid-template-columns: none;
}

section#home .hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #fbf6ed;
}

@media (max-width: 567px) {
  section#home .hero-title {
    font-size: 2.125rem;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  section#home .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  section#home .hero-title {
    font-size: 4rem;
  }
}
section#home .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #fbf6ed;
}

@media (min-width: 768px) {
  section#home .hero-subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 567px) {
  section#home .hero-subtitle {
    font-size: 1rem;
  }
}
section#home .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  section#home .hero-buttons {
    justify-content: center;
  }
}
section#home .btn-primary {
  background-color: var(--bg-primary);
  color: #1d3131;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

section#home .btn-primary:hover {
  background-color: #f6d092;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(29, 49, 49, 0.2);
}

section#home .btn-secondary {
  background-color: transparent;
  color: #fbf6ed;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #fbf6ed;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

section#home .btn-secondary:hover {
  background-color: #fbf6ed;
  color: #1d3131;
  transform: translateY(-1px);
}

section#home .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

section#home .floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(251, 246, 237, 0.1);
  animation: float 6s ease-in-out infinite;
}

section#home .floating-circle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

section#home .floating-circle:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

section#home .floating-circle:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
/* Quranic Verse Section */
.quranic-verse-section {
  padding: var(--spacing-2xl) 0;
  background: #fbf6ed;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 567px) {
  .quranic-verse-section {
    padding: var(--spacing-xl) 0 0;
  }
}

.verse-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.arabic-text {
  font-family: "Amiri", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #2c1810;
  line-height: 1.8;
  margin: 0 0 var(--spacing-lg) 0;
  font-style: normal;
  direction: rtl;
  text-align: center;
}

.verse-reference {
  font-family: "Amiri", "Times New Roman", serif;
  font-size: 1.2rem;
  color: #8b4513;
  font-style: italic;
  font-weight: 300;
  display: block;
  margin-top: var(--spacing-md);
}

.verse-english {
  margin-top: var(--spacing-xl);
}

.english-text {
  font-family: var(--font-family-body);
  font-size: 1.5rem;
  color: #2c1810;
  line-height: 1.6;
  margin: 0 0 var(--spacing-lg) 0;
  font-weight: 400;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.verse-tagline {
  font-family: var(--font-family-body);
  font-size: var(--font-size-base);
  color: #8b4513;
  font-style: italic;
  font-weight: 300;
  margin: var(--spacing-md) 0 0 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .arabic-text {
    font-size: 2rem;
    line-height: 1.6;
  }
  .english-text {
    font-size: 1.1rem;
  }
  .verse-content {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .arabic-text {
    font-size: 1.7rem;
  }
  .english-text {
    font-size: 1rem;
  }
}
/* About Section */
.about {
  padding: var(--spacing-2xl) 0 var(--spacing-4xl) 0;
}
@media (max-width: 567px) {
  .about {
    padding: var(--spacing-xl) 0;
  }
}

.about-content {
  gap: var(--spacing-4xl);
  align-items: start;
  position: relative;
  z-index: 1;
  /* Responsive Design */
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

.about-text {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-xl);
}
@media (max-width: 768px) {
  .about-text {
    flex-direction: column;
  }
}

.vision-card,
.mission-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--background-warm);
  flex: 1;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: #f5f0e6;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.vision-card h3,
.mission-card h3 {
  font-family: var(--font-family-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.vision-card p,
.mission-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

/* Projects Section */
.projects {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
}
@media (max-width: 567px) {
  .projects {
    padding: var(--spacing-xl) 0;
  }
}

/* Projects grid removed - now using GSAP slider */
.project-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: white;
  font-size: var(--font-size-2xl);
  box-shadow: var(--shadow-md);
}

.project-card h3 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.project-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}
@media (max-width: 567px) {
  .project-card p {
    text-align: center;
  }
}

.project-impact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-color);
}

.impact-number {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.impact-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
}

/* Projects Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.projects-grid .project-card {
  width: 100%;
  margin-right: 0;
}

.project-card {
  background: var(--background-warm);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  text-align: center;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: white;
  font-size: var(--font-size-2xl);
  flex-shrink: 0; /* Prevent icon container from shrinking */
  min-width: 80px; /* Ensure minimum width */
  min-height: 80px; /* Ensure minimum height */
}

.project-icon i {
  font-size: 2rem; /* Fixed icon size */
  line-height: 1; /* Prevent line-height from affecting icon */
}

/* Ensure FontAwesome icons are visible */
.project-icon .fas,
.project-icon .fa {
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.project-card p {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--spacing-lg) 0;
  text-align: center;
}

.project-impact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-color);
}

.impact-number {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.impact-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
}

/* Simple Flickity styling - let it use defaults */
/* Simple responsive - let Flickity handle it */
.projects-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 600px;
}

/* Left Column - Text Content */
.projects-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.projects-text .section-title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.projects-text .section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.projects-subtitle {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.projects-title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.view-more-btn {
  align-self: flex-start;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.view-more-btn:hover {
  background: var(--primary-color);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--bg-primary);
  position: relative;
}

.image-placeholder i {
  z-index: 2;
  position: relative;
}

/* Background colors for each project */
.sacrifice-bg {
  background: #ff6b6b;
}

.school-bg {
  background: #74b9ff;
}

.winter-bg {
  background: #a29bfe;
}

.charity-bg {
  background: #fd79a8;
}

.clothing-bg {
  background: #fdcb6e;
}

.carousel-content {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.carousel-content h3 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}

.carousel-content p {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .projects-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .projects-title {
    font-size: var(--font-size-3xl);
  }
}
@media screen and (max-width: 767px) {
  .projects-content {
    gap: 2rem;
  }
  .image-placeholder {
    font-size: 3rem;
  }
}
/* Impact Card Specific */
.impact-card .impact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.impact-card .impact-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.impact-card .impact-text {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.impact-card .progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
}

.impact-card .progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  width: 85%;
  border-radius: 4px;
}

.impact-card .admin-breakdown {
  width: 100%;
}

.impact-card .admin-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  font-size: 0.875rem;
}

.impact-card .admin-item span:first-child {
  color: var(--text-secondary);
}

.impact-card .admin-item span:last-child {
  color: var(--primary-color);
  font-weight: 700;
}

/* Impact & Total Investment Row */
.impact-total-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 0;
  height: auto;
}

/* GSAP Horizontal Slider Base Styles */
.section-resource.is--dark {
  background-color: #000;
  position: relative;
  min-height: 32em;
}

.button-arrow {
  flex: none;
  width: 1em;
  height: 0.75em;
}

.button-arrow.next {
  transform: rotate(180deg);
}

.count-heading {
  width: 2ch;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
}

.overlay-count-row {
  grid-column-gap: 0.2em;
  grid-row-gap: 0.2em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 5.625em;
  font-weight: 700;
  display: flex;
}

.overlay {
  z-index: 2;
  color: #fff;
  background-image: linear-gradient(90deg, #000 85%, rgba(0, 0, 0, 0));
  justify-content: flex-start;
  align-items: center;
  width: 37.5em;
  height: 100%;
  padding-left: 2em;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.overlay-nav-row {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.button-overlay {
  z-index: 2;
  position: absolute;
  inset: -1px;
}

.overlay-corner {
  border-top: 1px solid #efeeec;
  border-left: 1px solid #efeeec;
  border-top-left-radius: 0.4em;
  width: 1em;
  height: 1em;
}

.overlay-corner.top-right {
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotate(90deg);
}

.overlay-corner.bottom-right {
  position: absolute;
  inset: auto 0% 0% auto;
  transform: rotate(180deg);
}

.overlay-corner.bottom-left {
  position: absolute;
  inset: auto auto 0% 0%;
  transform: rotate(-90deg);
}

.count-row-divider {
  background-color: #efeeec;
  width: 2px;
  height: 0.75em;
  transform: rotate(15deg);
}

.button {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.4em;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 4em;
  padding: 0;
  display: flex;
  position: relative;
}

.overlay-inner {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 28.125em;
  display: flex;
}

.count-column {
  height: 1em;
  overflow: hidden;
}

.slide-inner {
  border-radius: 0.5em;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.caption-dot {
  background-color: #131313;
  border-radius: 10em;
  flex: none;
  width: 0.5em;
  height: 0.5em;
}

.slider-list {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: relative;
}

.caption {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.75em;
}

.slider-slide {
  flex: none;
  width: 42.5em;
  height: 28em;
  padding-left: 1.25em;
  padding-right: 1.25em;
  transition: opacity 0.4s;
  position: relative;
}

.main {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.slider-wrap {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.slide-caption {
  z-index: 2;
  grid-column-gap: 0.4em;
  grid-row-gap: 0.4em;
  color: #131313;
  white-space: nowrap;
  background-color: #efeeec;
  border-radius: 0.25em;
  justify-content: flex-start;
  align-items: center;
  padding: 0.4em 0.75em 0.4em 0.5em;
  display: flex;
  position: absolute;
  top: 1.25em;
  left: 1.25em;
  overflow: hidden;
}

.slide-img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* GSAP Horizontal Slider Custom Effects */
.button,
.button-overlay {
  transition: transform 0.475s cubic-bezier(0.625, 0.05, 0, 1),
    opacity 0.475s cubic-bezier(0.625, 0.05, 0, 1);
}

.button:hover .button-overlay {
  transform: scale(1.4);
}

.overlay-nav-row:hover:has(.button:hover) .button {
  opacity: 0.4;
}

.button:hover {
  transform: scale(0.85);
  opacity: 1;
}

.slide-caption {
  transition: transform 0.525s cubic-bezier(0.625, 0.05, 0, 1),
    opacity 0.525s cubic-bezier(0.625, 0.05, 0, 1);
  transition-delay: 0s;
}

html:not(.wf-design-mode) .slide-caption {
  opacity: 0;
  transform: translate(-25%, 0px);
}

html:not(.wf-design-mode) [data-slider="slide"].active .slide-caption {
  opacity: 1;
  transform: translate(0%, 0px);
}

html:not(.wf-design-mode) [data-slider="slide"] {
  opacity: 0.2;
}

html:not(.wf-design-mode) [data-slider="slide"].active {
  opacity: 1;
}

html:not(.wf-design-mode) [data-slider="slide"].active .slide-caption {
  transition-delay: 0.3s;
}

/* Impact Section */
.impact {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
}
@media (max-width: 567px) {
  .impact {
    padding: var(--spacing-xl) 0;
  }
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}
@media (max-width: 768px) {
  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}
@media (max-width: 480px) {
  .impact-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.impact-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

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

.impact-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--font-size-2xl);
  box-shadow: var(--shadow-md);
}

.impact-number {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.impact-label {
  font-size: var(--font-size-lg);
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.impact-description {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 480px) {
  .impact-card {
    padding: var(--spacing-xl);
  }
  .impact-icon {
    width: 60px;
    height: 60px;
    font-size: var(--font-size-xl);
  }
  .impact-number {
    font-size: var(--font-size-3xl);
  }
  .impact-label {
    font-size: var(--font-size-base);
  }
  .impact-description {
    font-size: var(--font-size-xs);
  }
}
/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

/* Contact Information Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-intro h3 {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 567px) {
  .contact-intro h3 {
    text-align: center;
  }
}

.contact-intro p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 567px) {
  .contact-intro p {
    text-align: center;
  }
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  transition: transform 0.2s ease;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-details {
  flex: 1;
}

.contact-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.contact-details p {
  direction: ltr;
  text-align: right;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-details p a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details p a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.contact-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 400;
  font-style: italic;
}

/* Quick Actions */
.quick-actions h4 {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.action-btn:hover::before {
  left: 0;
}

.action-btn.primary {
  background: var(--primary-color);
  color: white;
}

.action-btn.primary:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

.action-btn.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.action-btn.secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

/* Contact Form Section */
.form-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dee2e6;
}

.form-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.form-title h3 {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.form-title p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1.25rem;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

/* Checkbox Styling */
.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ced4da;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Submit Button */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 2.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.submit-btn:hover::before {
  left: 0;
}

.submit-btn:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-section {
    padding: 5rem 0;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }
  .contact-grid {
    gap: 3rem;
    margin-top: 2.5rem;
  }
  .contact-info {
    gap: 2.5rem;
  }
  .contact-methods {
    gap: 2rem;
  }
  .form-row {
    gap: 1.5rem;
  }
  .form-card {
    padding: 2.5rem;
  }
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 2rem 0;
  }
  .contact-icon {
    width: 52px;
    height: 52px;
  }
  .form-header {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  .form-icon {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 3rem 0;
  }
  .form-card {
    padding: 1.5rem;
  }
  .action-buttons {
    gap: 1rem;
  }
  .action-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .submit-btn {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }
}
/* Focus-visible accessibility */
.contact-section a:focus-visible,
.contact-section button:focus-visible,
.contact-section input:focus-visible,
.contact-section select:focus-visible,
.contact-section textarea:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Footer v2 (modern, clean) */
.footer-info .info-title,
.footer-nav .nav-title {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.info-list .label {
  display: inline-block;
  min-width: 88px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.info-list .value {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
}

.info-list a.value:hover {
  color: var(--primary-color);
}

.footer-nav .nav-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-nav .nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast);
}

.footer-nav .nav-list a:hover {
  color: var(--primary-color);
  background: rgba(1, 53, 119, 0.06);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-secondary);
}

.to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
}

.to-top:hover {
  text-decoration: underline;
}

/* Footer mini links */
.footer-mini-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mini-links .mini-link {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-mini-links .mini-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Focus-visible accessibility */
.footer-minimal a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Footer Styles - Clean Design */
.footer {
  background: #fbf6ed;
  color: #2c3e50;
  padding: 3rem 0 2rem;
  font-family: "Ubuntu", sans-serif;
  position: relative;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* Footer Brand - Logo at Bottom */
.footer-brand {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}

footer .logo-icon {
  background: transparent;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
}

.location-details p {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  color: #2c3e50;
  line-height: 1.6;
  font-weight: 600;
}

.location-details p:last-child {
  margin-bottom: 1rem;
}

.directions-btn {
  display: inline-block;
  background: #013577;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  margin-top: 0.5rem;
}

.directions-btn:hover {
  background: #002a5c;
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.footer-nav a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.footer-nav a:hover {
  color: #013577;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #013577;
  transition: width 0.3s ease;
}

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

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-bottom: 2rem;
}

.copyright {
  font-size: 0.9rem;
  color: #2c3e50;
  margin: 0 auto;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  /* Footer Tablet Styles */
  .footer-main {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .footer-links,
  .footer-contact {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: auto;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  .scroll-to-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
  .footer-contact,
  .footer-location {
    padding: 1.5rem;
  }
  /* Bold Footer Mobile Styles */
  .footer-main-content {
    padding: 30px 0;
  }
  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-main-heading {
    font-size: 36px;
    text-align: center;
  }
  .footer-description {
    text-align: center;
    max-width: 100%;
  }
  .footer-social-icons {
    justify-content: center;
  }
  .footer-contact-info {
    gap: 8px;
  }
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 6px 0;
  }
  .contact-label {
    font-size: 12px;
    min-width: auto;
  }
  .contact-value {
    font-size: 13px;
    text-align: left;
  }
  .footer-navigation {
    gap: 8px;
  }
  .nav-item {
    padding: 6px 0;
  }
  .nav-icon {
    font-size: 12px;
    width: 14px;
  }
  .nav-text {
    font-size: 13px;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .copyright-text {
    font-size: 11px;
  }
  .back-to-top {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .contact-section .contact-item {
    text-align: center;
  }
}
/* Expenses Section - Used Styles Only */
/* HYBRID APPROACH STYLES */
.hybrid-section {
  padding: 120px 0;
}

.hybrid-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.hybrid-section .section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Summary Table */
.summary-table-container {
  margin-bottom: 30px;
}

.summary-table {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  overflow: visible;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  gap: 20px;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e7eb;
}

.table-title {
  flex: 1;
}

.table-title h3 {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.table-title p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

/* Layout Controls Container */
.layout-controls-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.view-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.view-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.view-toggle-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

.view-toggle-btn i {
  font-size: 14px;
}

/* Layout Controls Center */
.layout-controls-center {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.layout-toggle-btn-center {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.layout-toggle-btn-center:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

.layout-toggle-btn-center i {
  font-size: 16px;
}

.table-content {
  display: flex;
  flex-direction: column;
}

.table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  transition: none;
  border-bottom: 1px solid #f3f4f6;
  min-width: 0;
  overflow: hidden;
}

.table-row:last-child {
  border-bottom: none;
}

.header-row {
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
  margin: 0; /* Remove negative margin to prevent clipping */
  padding: 12px 20px;
  border-radius: 6px;
  border-bottom: none;
}

.total-row {
  background: #f9fafb;
  margin: 0; /* Remove negative margin to prevent clipping */
  padding: 16px 20px;
  border-radius: 6px;
  font-weight: 600;
  color: #111827;
}

/* Breakdown rows styling */
.table-row.breakdown-row {
  background: transparent;
  border-left: none;
  margin-left: 0;
  padding-left: 0;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.table-row.breakdown-row .table-cell.category {
  font-size: 0.95rem;
  color: #374151;
  font-weight: 400;
  padding-left: 24px;
}

.table-row.breakdown-row .table-cell.percentage {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 400;
}

.table-row.breakdown-row .table-cell.type {
  font-size: 0.85rem;
  color: #9ca3af;
  font-weight: 400;
}

.table-row.breakdown-row .table-cell.amount {
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
}

.table-cell {
  flex: 1;
  padding: 0 8px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table-cell.category {
  color: #1f2937;
  font-weight: 600;
  flex: 2;
  text-align: left;
  min-width: 120px;
}

.table-cell.amount {
  color: var(--primary-color);
  font-weight: 700;
  flex: 1;
  text-align: right;
  font-size: 1.2rem;
  min-width: 100px;
}

.table-cell.percentage {
  color: #6b7280;
  flex: 0.8;
  text-align: center;
  font-weight: 600;
  min-width: 80px;
}

.table-cell.type {
  color: #9ca3af;
  flex: 1;
  text-align: right;
  font-size: 0.95rem;
  font-weight: 500;
  min-width: 80px;
}

/* Hybrid Grid */
.hybrid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.hybrid-grid-container {
  display: none; /* Default: Hidden on desktop */
}

/* Investment Card Section - Used in Expenses Section */
.investment-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  flex: auto;
}

.investment-card .card-content {
  flex: 1;
  z-index: 2;
  position: relative;
}

.investment-card .card-header {
  margin-bottom: 20px;
  display: block;
  align-items: unset;
  gap: unset;
}

.investment-card .card-title {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.investment-card .card-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  font-weight: 400;
}

.investment-card .card-amount .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #013577;
  line-height: 1;
  letter-spacing: -0.02em;
}

.investment-card .card-amount .currency {
  font-size: 1.5rem;
  color: #6b7280;
  font-weight: 600;
}

.investment-card .card-description p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  max-width: 300px;
}

.investment-card .card-icon {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #013577;
  font-size: 3rem;
  z-index: 2;
  position: relative;
  flex-shrink: 0;
  margin-left: 32px;
}

.investment-card .card-icon i {
  opacity: 0.9;
}

/* Impact Details Styling */
.investment-card .impact-details {
  margin-top: 20px;
}

.investment-card .progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.investment-card .progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  width: 85%;
  border-radius: 4px;
}

.investment-card .admin-breakdown {
  width: 100%;
}

.investment-card .admin-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  font-size: 0.875rem;
}

.investment-card .admin-item span:first-child {
  color: var(--text-secondary);
}

.investment-card .admin-item span:last-child {
  color: var(--primary-color);
  font-weight: 700;
}

/* Investment Card Responsive */
@media (max-width: 768px) {
  .investment-card {
    flex-direction: column-reverse;
    padding: 24px;
    max-width: 100%;
  }
  .investment-card .card-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-left: 0;
  }
  .investment-card .card-amount .amount {
    font-size: 2.5rem;
  }
  .investment-card .card-amount .currency {
    font-size: 1.25rem;
  }
  .investment-card .card-title {
    font-size: 1.25rem;
  }
  .investment-card .card-subtitle {
    font-size: 0.875rem;
  }
  .investment-card .card-description p {
    font-size: 0.875rem;
    max-width: 100%;
  }
}
/* Hybrid Card Components */
.hybrid-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  word-wrap: break-word;
  transition: all 0.3s ease;
}

.hybrid-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hybrid-card .card-icon {
  width: 48px;
  height: 48px;
  background: #013577;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.header-content {
  flex: 1;
}

.header-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.header-content p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

.expand-indicator {
  width: 32px;
  height: 32px;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 14px;
  flex-shrink: 0;
}

.card-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .card-amount {
    justify-content: flex-start;
  }
}

.card-amount .amount {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1;
  letter-spacing: -0.02em;
  word-break: break-all;
  overflow-wrap: break-word;
  hyphens: auto;
}

.card-amount .currency {
  font-size: 20px;
  color: #6b7280;
  font-weight: 600;
  line-height: 1;
}

.card-breakdown {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 20px;
}

.hybrid-card .breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  transition: all 0.2s ease;
  border-bottom: 1px dashed #d1d5db;
}

.hybrid-card .breakdown-item:last-child {
  border-bottom: none;
}

.hybrid-card .breakdown-item:hover {
  background: #f8fafc;
  margin: 0 -24px;
  padding: 18px 24px;
}

.item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.item-name {
  color: #1f2937;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}

.item-desc {
  color: #6b7280;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}

.item-amount {
  color: #1f2937;
  font-weight: 700;
  font-size: 16px;
  margin-left: 16px;
  flex-shrink: 0;
}

/* Mobile Responsive Fixes for Expenses Section */
@media (max-width: 768px) {
  .hybrid-section .section-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  .hybrid-section .section-header p {
    font-size: 1rem;
  }
  /* Layout controls mobile fixes */
  .layout-controls-container {
    justify-content: center;
    margin-bottom: 20px;
  }
  /* Layout controls center mobile */
  .layout-controls-center {
    margin: 25px 0;
  }
  .layout-toggle-btn-center {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  /* Summary table mobile fixes */
  .summary-table-container {
    margin-bottom: 40px;
  }
  .summary-table {
    padding: 16px;
  }
  .table-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .table-title h3 {
    font-size: 1.25rem;
  }
  .table-title p {
    font-size: 0.875rem;
  }
  .view-toggle-btn {
    align-self: center;
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  .table-cell.category {
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem; /* Larger for category names */
  }
  .table-cell.amount {
    text-align: right;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem; /* Match desktop font size */
  }
  .table-cell.percentage {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
  }
  .table-cell.type {
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem; /* Slightly smaller for type labels */
  }
  /* Override base table-cell styles for mobile to prevent ellipsis */
  .table-content .table-cell {
    overflow: visible; /* Allow text to be fully visible */
    text-overflow: clip; /* Don't clip text with ellipsis */
    white-space: normal; /* Allow text to wrap if needed */
  }
  /* Amount cells should not wrap - keep currency on same line */
  .table-content .table-cell.amount {
    white-space: nowrap; /* Prevent currency from wrapping to next line */
    text-align: right; /* Ensure right alignment */
  }
  /* Improve touch interaction for table rows - exclude header row */
  .table-content .table-row:not(.header-row) {
    display: grid;
    grid-template-columns: 2fr 0.8fr 0.8fr 1.5fr; /* Match header grid layout - more space for amount */
    gap: 12px; /* Match header gap exactly */
    padding: 16px 16px 16px 20px; /* Match header padding exactly with extra left padding */
    border-bottom: 1px solid #f3f4f6;
    min-width: 500px; /* Enable horizontal scrolling */
    width: -moz-max-content;
    width: max-content; /* Allow content to expand */
    align-items: center;
    min-height: 48px; /* Match header height exactly */
    box-sizing: border-box; /* Ensure consistent box model */
  }
  /* Total row mobile styling - same as other rows */
  .table-content .total-row {
    display: grid;
    grid-template-columns: 2fr 0.8fr 0.8fr 1.5fr; /* Match header grid layout - more space for amount */
    gap: 12px; /* Match header gap exactly */
    padding: 16px 16px 16px 20px; /* Match header padding exactly with extra left padding */
    border-bottom: 1px solid #f3f4f6;
    min-width: 500px; /* Enable horizontal scrolling */
    width: -moz-max-content;
    width: max-content; /* Allow content to expand */
    align-items: center;
    min-height: 48px; /* Match header height exactly */
    box-sizing: border-box; /* Ensure consistent box model */
    background: #f9fafb;
    border-radius: 6px;
    font-weight: 600;
    color: #111827;
  }
  .table-row:active {
    background-color: #f8fafc;
  }
  /* Better mobile spacing for breakdown rows */
  .table-row.breakdown-row {
    padding: 12px 0;
  }
  .table-row.breakdown-row .table-cell.category {
    padding-left: 20px; /* Reduced from 24px */
  }
  /* Impact and Total Investment row mobile */
  .impact-total-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* Section spacing mobile */
  .expenses-section {
    padding: 40px 0;
    width: 100%;
    overflow-x: hidden;
  }
  .expenses-section .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hybrid-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hybrid-card .breakdown-item {
    padding: 12px 0;
    font-size: 0.875rem;
  }
  .item-name {
    font-size: 0.875rem;
  }
  .item-amount {
    font-size: 0.875rem;
  }
}
/* Mobile Drawer Styles - iPhone-like */
.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offcanvas-overlay.show {
  opacity: 1;
  visibility: visible;
}

.offcanvas-drawer {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  height: 85vh;
  max-height: 700px;
  min-height: 400px;
  background: white;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offcanvas-drawer.show {
  bottom: 0;
}

.drawer-handle {
  width: 40px;
  height: 4px;
  background: #d1d5db;
  border-radius: 2px;
  margin: 12px auto 8px auto;
  cursor: grab;
  transition: background 0.2s ease;
}

.drawer-handle:hover {
  background: #9ca3af;
}

.drawer-handle:active {
  cursor: grabbing;
}

.drawer-header {
  padding: 0 24px 24px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: white;
  position: relative;
  flex-shrink: 0;
}

.drawer-title {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

/* Mobile drawer title - break into two lines */
@media (max-width: 768px) {
  .drawer-title {
    font-size: 1.25rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    max-width: 100%;
  }
}
.drawer-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

.drawer-close {
  position: absolute;
  top: 0;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(107, 114, 128, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* RTL support for drawer close button */
[dir="rtl"] .drawer-close {
  right: auto !important;
  left: 20px !important;
}

.drawer-close:hover {
  background: rgba(107, 114, 128, 0.2);
  transform: scale(1.1);
}

.drawer-close i {
  font-size: 18px;
  color: #6b7280;
  transition: color 0.3s ease;
}

.drawer-close:hover i {
  color: #374151;
}

.drawer-content {
  padding: 6px 24px 24px 24px;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}

.drawer-content::-webkit-scrollbar {
  width: 4px;
}

.drawer-content::-webkit-scrollbar-track {
  background: transparent;
}

.drawer-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2px;
}

.drawer-content::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.drawer-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed #d1d5db;
  transition: all 0.3s ease;
}

.drawer-breakdown-item:last-child {
  border-bottom: none;
}

.drawer-item-details {
  flex: 1;
}

.drawer-item-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.drawer-item-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

.drawer-item-amount {
  font-size: 1rem;
  font-weight: 700;
  color: #10457e;
  margin-left: 16px;
  flex-shrink: 0;
}

.drawer-summary {
  margin-top: 24px;
  padding: 20px;
  background: #f5f0e6;
  border-radius: 12px;
}

.drawer-summary-title {
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #0c4a6e;
  margin: 0 0 12px 0;
}

.drawer-summary-total {
  font-size: 1.5rem;
  font-weight: 800;
  color: #013577;
  margin: 0;
}

/* Desktop behavior - slide from right */
@media (min-width: 769px) {
  .offcanvas-drawer {
    bottom: auto;
    top: 0;
    right: -400px;
    left: auto;
    width: 400px;
    height: 100vh;
    max-height: none;
    min-height: auto;
    border-radius: 0;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .offcanvas-drawer.show {
    bottom: auto;
    right: 0;
  }
  /* RTL support for desktop drawer */
  [dir="rtl"] .offcanvas-drawer {
    right: auto;
    left: -400px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  [dir="rtl"] .offcanvas-drawer.show {
    right: auto;
    left: 0;
  }
  .drawer-handle {
    display: none;
  }
  .drawer-header {
    padding: 24px;
  }
  .drawer-content {
    padding: 24px;
  }
}
/* Small mobile devices */
@media (max-width: 480px) {
  .offcanvas-drawer {
    height: 90vh;
    max-height: none;
    min-height: 350px;
    border-radius: 16px 16px 0 0;
  }
  .drawer-header {
    padding: 16px 20px 12px 20px;
  }
  .drawer-content {
    padding: 0 20px 20px 20px;
  }
  /* RTL support for small mobile drawer close button */
  [dir="rtl"] .drawer-close {
    right: auto !important;
    left: 20px !important;
  }
}
/* Very small screens */
@media (max-width: 360px) {
  .offcanvas-drawer {
    height: 95vh;
    min-height: 300px;
    border-radius: 12px 12px 0 0;
  }
  .drawer-header {
    padding: 12px 16px 8px 16px;
  }
  .drawer-content {
    padding: 0 16px 16px 16px;
  }
  /* RTL support for very small mobile drawer close button */
  [dir="rtl"] .drawer-close {
    right: auto !important;
    left: 16px !important;
  }
}
/* Tablet and Desktop: Show table view and toggle button */
@media (min-width: 769px) {
  /* Allow JavaScript to control display on tablet and desktop */
  .summary-table-container {
    display: block; /* Default table view on tablet and desktop */
  }
  .hybrid-grid-container {
    display: none; /* Default hidden on tablet and desktop */
  }
  .layout-controls-container {
    display: flex; /* Show toggle button on tablet and desktop */
  }
  .table-header {
    overflow-x: visible;
    -webkit-overflow-scrolling: auto;
  }
  .table-content {
    overflow-x: visible;
    -webkit-overflow-scrolling: auto;
  }
  .table-row {
    min-width: auto;
    width: auto;
    flex-shrink: 1;
  }
  .table-cell {
    min-width: auto;
  }
  .table-cell.category {
    flex: 2;
    min-width: 120px;
  }
  .table-cell.amount {
    flex: 1;
    min-width: 100px;
  }
  .table-cell.percentage {
    flex: 0.8;
    min-width: 80px;
  }
  .table-cell.type {
    flex: 1;
    min-width: 80px;
  }
  /* Restore original desktop header and total row styles */
  .header-row {
    margin: 0 -16px; /* Restore original negative margin */
    padding: 12px 20px; /* Keep original padding */
  }
  .total-row {
    margin: 0 -16px; /* Restore original negative margin */
    padding: 16px 20px; /* Keep original padding */
  }
}
.total-row .table-cell {
  font-size: 1.2rem;
  font-weight: 800;
}

.total-row .table-cell.amount {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Default responsive behavior */
.summary-table-container {
  display: block; /* Default: Table view on desktop */
}

.hybrid-grid-container {
  display: none; /* Default: Hidden on desktop */
}

/* Mobile: Allow JavaScript to control view switching */
@media (max-width: 768px) {
  /* Remove forced display rules to allow JavaScript control */
  /* Force card view on mobile - hide table */
  .summary-table-container {
    display: none; /* Force hide table on mobile */
  }
  .hybrid-grid-container {
    display: block; /* Force show cards on mobile */
  }
  /* Hide toggle button on mobile - only show cards */
  .layout-controls-container {
    display: none;
  }
  /* Mobile responsive table - Only content scrolls, header stays fixed */
  .summary-table {
    padding: 16px;
    overflow: hidden; /* Prevent container from scrolling */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .table-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    padding-bottom: 16px;
    margin-bottom: 0;
    border-bottom: 2px solid #e5e7eb;
    width: 100%; /* Header takes full width */
    overflow: hidden; /* Prevent header from scrolling */
  }
  /* Header row inside table-content - mobile optimized */
  .table-content .header-row {
    display: grid;
    grid-template-columns: 2fr 0.8fr 0.8fr 1.5fr; /* Give more space to amount column */
    gap: 12px; /* Increased gap for better spacing */
    padding: 16px 16px 16px 20px; /* Extra left padding to prevent clipping */
    background: #f9fafb;
    margin: 0; /* Remove negative margin */
    border-radius: 6px;
    font-weight: 600;
    color: #374151;
    min-width: 500px; /* Enable horizontal scrolling */
    width: -moz-max-content;
    width: max-content; /* Allow content to expand */
    align-items: center;
    min-height: 48px; /* Ensure minimum height */
    box-sizing: border-box; /* Ensure consistent box model */
    position: sticky; /* Make header sticky */
    top: 0; /* Stick to top */
    z-index: 5; /* Above other content */
  }
  /* Header row cells - mobile optimized */
  .table-content .header-row .table-cell.category {
    text-align: left;
    font-size: 1rem; /* Larger font for better readability */
    font-weight: 700;
  }
  .table-content .header-row .table-cell.percentage {
    text-align: center;
    font-size: 0.9rem; /* Larger font */
    font-weight: 600;
  }
  .table-content .header-row .table-cell.type {
    text-align: center;
    font-size: 0.9rem; /* Larger font */
    font-weight: 600;
  }
  .table-content .header-row .table-cell.amount {
    text-align: right;
    font-size: 1rem; /* Larger font */
    font-weight: 700;
  }
  .table-content {
    overflow-x: auto; /* Enable horizontal scrolling for content only */
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* Content rows will have min-width to enable scrolling */
  }
  /* Improve table scrolling indicators */
  .table-content::-webkit-scrollbar {
    height: 6px;
  }
  .table-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
  }
  .table-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
  }
  .table-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }
}
html[lang="ar"] {
  --font-family-heading: "Cairo", sans-serif;
  --font-family-body: "Cairo", sans-serif;
}

html[lang="ar"] body,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] p,
html[lang="ar"] span,
html[lang="ar"] div,
html[lang="ar"] a,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select,
html[lang="ar"] label {
  font-family: "Cairo", sans-serif !important;
}

html[lang="ar"] .mobile-nav-icon {
  margin-left: 0.75rem;
  margin-right: 0;
}
html[lang="ar"] .contact-icon {
  margin-left: 1rem;
  margin-right: 0;
}
html[lang="ar"] .checkmark {
  margin-left: 0.5rem;
  margin-right: 0;
}
html[lang="ar"] .view-controls {
  margin-left: 0;
  margin-right: auto;
}
html[lang="ar"] .nav-indicator {
  left: auto;
  right: 0;
}
html[lang="ar"] .language-switcher {
  margin-right: 0;
  margin-left: 1rem;
}
html[lang="ar"] .hero-buttons {
  flex-direction: row-reverse;
}
html[lang="ar"] .about-text {
  flex-direction: row-reverse;
}
html[lang="ar"] .projects-grid {
  direction: rtl;
}
html[lang="ar"] .impact-stats {
  direction: rtl;
}
html[lang="ar"] .footer-nav {
  flex-direction: row-reverse;
}
html[lang="ar"] .table-cell {
  text-align: right;
}
html[lang="ar"] .table-cell.amount {
  text-align: left;
}
html[lang="ar"] .hybrid-card {
  direction: rtl;
}
html[lang="ar"] .header-content {
  text-align: right;
}
html[lang="ar"] .mobile-nav-menu {
  direction: rtl;
}
html[lang="ar"] .mobile-nav-icon {
  margin-left: 0.75rem;
  margin-right: 0;
}
html[lang="ar"] .form-group {
  text-align: right;
}
html[lang="ar"] .form-group input,
html[lang="ar"] .form-group textarea,
html[lang="ar"] .form-group select {
  text-align: right;
}
html[lang="ar"] .contact-icon {
  margin-left: 1rem;
  margin-right: 0;
}
html[lang="ar"] .section-header {
  text-align: center;
}
html[lang="ar"] .btn-primary,
html[lang="ar"] .hero-link,
html[lang="ar"] .cta-button,
html[lang="ar"] .mobile-cta-button {
  text-align: center;
}
html[lang="ar"] .summary-table-container {
  direction: rtl;
}
html[lang="ar"] .view-controls {
  margin-left: 0;
  margin-right: auto;
}
html[lang="ar"] .layout-controls-center {
  text-align: center;
}
html[lang="ar"] .investment-card {
  direction: rtl;
}
html[lang="ar"] .investment-card .card-content {
  text-align: right;
}
html[lang="ar"] .breakdown-item {
  flex-direction: row-reverse;
}
html[lang="ar"] .item-details {
  text-align: right;
}
@media (max-width: 768px) {
  html[lang="ar"] .about-text {
    flex-direction: column;
  }
  html[lang="ar"] .form-row {
    flex-direction: column;
  }
  html[lang="ar"] .hero-buttons {
    flex-direction: column;
  }
}
html[lang="ar"] .nav-menu {
  flex-direction: row-reverse;
}
html[lang="ar"] .nav-container {
  flex-direction: row-reverse;
}
html[lang="ar"] .logo-text {
  text-align: right;
}
html[lang="ar"] .mobile-logo {
  flex-direction: row-reverse;
}
html[lang="ar"] .mobile-logo-text {
  text-align: right;
}
html[lang="ar"] .footer-brand {
  flex-direction: row-reverse;
}
html[lang="ar"] .footer-logo {
  flex-direction: row-reverse;
}
html[lang="ar"] .form-title {
  text-align: right;
}
html[lang="ar"] .checkbox-group {
  text-align: right;
}
html[lang="ar"] .project-card {
  text-align: right;
}
html[lang="ar"] .impact-card {
  text-align: right;
}
html[lang="ar"] .card-breakdown {
  direction: rtl;
}
html[lang="ar"] .item-amount {
  text-align: left;
}
html[lang="ar"] .btn-primary,
html[lang="ar"] .hero-link {
  margin-left: 0.5rem;
  margin-right: 0;
}
html[lang="ar"] .btn-primary:first-child,
html[lang="ar"] .hero-link:first-child {
  margin-left: 0;
  margin-right: 0.5rem;
}
html[lang="ar"] .item-details {
  margin-left: 0;
  margin-right: 0.5rem;
}
html[lang="ar"] .item-amount {
  margin-left: 0.5rem;
  margin-right: 0;
}
html[lang="ar"] .investment-card .card-icon {
  margin-left: 0;
  margin-right: 1rem;
}
html[lang="ar"] .drawer-close {
  margin-left: 0;
  margin-right: auto;
}
html[lang="ar"] .form-icon {
  margin-left: 0;
  margin-right: 0.75rem;
}
html[lang="ar"] .footer-nav a {
  margin-left: 0;
  margin-right: 1rem;
}
html[lang="ar"] .brand-name {
  margin-left: 0;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  html[lang="ar"] .nav-container {
    flex-direction: row;
  }
  html[lang="ar"] .logo {
    flex-direction: row;
  }
  html[lang="ar"] .mobile-logo {
    flex-direction: row;
  }
  html[lang="ar"] .footer-brand {
    flex-direction: row;
  }
  html[lang="ar"] .footer-logo {
    flex-direction: row;
  }
}
