/* ==========================================================================
   الوليد للإنسانية - Alwaleed Philanthropies Design System & Core Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --primary-green: #00833d;
  --primary-green-dark: #00602c;
  --primary-green-light: #10a353;
  --accent-gold: #c5a059;
  --bg-dark: #0b130e;
  --bg-card-dark: #121d16;
  --bg-light: #f8faf9;
  --bg-white: #ffffff;
  --text-dark: #1a221e;
  --text-muted: #5e6d64;
  --text-light: #e2e8e4;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.12);
  --gradient-blue: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  --gradient-purple: linear-gradient(135deg, #471069 0%, #7b1fa2 100%);
  --gradient-green: linear-gradient(135deg, #00833d 0%, #00b050 100%);
  --gradient-yellow: linear-gradient(135deg, #d48806 0%, #f5222d 100%);
  --gradient-pink: linear-gradient(135deg, #c41d7f 0%, #e91e63 100%);
  --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
  
  --font-primary: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-secondary: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 131, 61, 0.15);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl;
  text-align: right;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-primary);
  background-color: #0d1611;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, video {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-space {
  padding: 6rem 0;
}

/* Utility Classes */
/* Subpage Banner & Header */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: linear-gradient(180deg, rgba(0, 131, 61, 0.25) 0%, rgba(13, 22, 17, 0.95) 100%), #0d1611;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--primary-green-light);
  font-family: var(--font-secondary);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a:hover {
  color: #ffffff;
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
}


/* Floating Ambient Orbs */
.orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.orb-green {
  background: #00833d;
}

.orb-blue {
  background: #3498db;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition-medium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35); /* Full width white line across header */
}

.header.scrolled {
  background: rgba(13, 22, 17, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.9rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.header-logo img, .header-logo svg {
  height: 48px;
  width: auto;
  transition: transform var(--transition-fast);
}

.header-logo:hover img {
  transform: scale(1.02);
}

/* Header Navigation Bar */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.header-links-top {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.header-links-top a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.header-links-top a:hover {
  color: var(--primary-green-light);
}

/* Language Switcher (EN | AR) */
.header-lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-secondary);
  user-select: none;
}

.header-lang-switch .lang-option {
  cursor: pointer;
  transition: color var(--transition-fast);
}

.header-lang-switch .lang-option:hover,
.header-lang-switch .lang-option.active {
  color: #ffffff;
  font-weight: 800;
}

.header-lang-switch .lang-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Staggered 3-Line Burger Menu Icon (Long, Medium, Short) */
.burger-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  cursor: pointer;
  padding: 6px 2px;
  background: transparent;
  border: none;
  outline: none;
}

.burger-icon-btn span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-icon-btn span:nth-child(1) {
  width: 28px; /* Top line: Long */
}

.burger-icon-btn span:nth-child(2) {
  width: 18px; /* Middle line: Medium */
}

.burger-icon-btn span:nth-child(3) {
  width: 10px; /* Bottom line: Short */
}

.burger-icon-btn:hover span {
  width: 28px;
  background: var(--primary-green-light);
}


/* Green Side Drawer (Exact Alwaleed Design) */
.side-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 440px;
  max-width: 90vw;
  height: 100vh;
  background: linear-gradient(160deg, rgba(0, 131, 61, 0.97) 0%, rgba(0, 75, 36, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2500;
  padding: 2.5rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.side-drawer.open {
  right: 0;
}

.drawer-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.drawer-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-secondary);
}

.drawer-lang span.active {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}

.drawer-lang span.inactive {
  opacity: 0.6;
  cursor: pointer;
}

.btn-close-side-drawer {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.btn-close-side-drawer:hover {
  opacity: 1;
}

/* Drawer Live Search Input */
.drawer-search-box {
  position: relative;
  margin-bottom: 2rem;
}

.drawer-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 1.1rem;
  font-family: inherit;
  outline: none;
  border-radius: 4px;
}

.drawer-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.drawer-search-input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-bottom-color: #ffffff;
}

/* Drawer Navigation List */
.drawer-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.drawer-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.drawer-menu-item a {
  display: block;
  padding: 1.2rem 0.5rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.drawer-menu-item a:hover {
  padding-right: 1.5rem;
  color: #e0ffd9;
  background: rgba(255, 255, 255, 0.05);
}


/* Hero Section Exact Alwaleed Styling */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 80px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(13, 22, 17, 0.3) 0%, rgba(13, 22, 17, 0.85) 100%),
              linear-gradient(to bottom, rgba(13, 22, 17, 0.6) 0%, transparent 40%, rgba(13, 22, 17, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: right;
  max-width: 780px;
  margin-right: 10%;
  margin-left: auto;
  color: #ffffff;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-family: var(--font-secondary);
}

.scroll-dot {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary-green-light);
  border-radius: 4px;
  animation: scrollAnim 1.8s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0.4; transform: translate(-50%, 12px); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}

/* Latest Campaign Highlighting Section */
.latest-report-section {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding-bottom: 5rem;
}

.report-card {
  background: linear-gradient(135deg, rgba(0, 131, 61, 0.95), rgba(9, 61, 31, 0.98));
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.report-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.report-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.report-subtitle {
  font-size: 1.15rem;
  font-family: var(--font-secondary);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.report-desc {
  font-size: 0.95rem;
  font-family: var(--font-secondary);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.report-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  color: var(--primary-green-dark);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.report-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.report-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.report-img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.report-card:hover .report-img-wrapper img {
  transform: scale(1.04);
}

/* Section Header Component */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.section-title-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.section-tag {
  color: var(--primary-green-light);
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

.section-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to left, rgba(255,255,255,0.15), transparent);
  min-width: 120px;
}

.section-year {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  font-family: var(--font-secondary);
}

/* Cards & Grid Systems */
.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card-project {
  background: #132219;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.card-project:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 131, 61, 0.5);
  box-shadow: var(--shadow-hover);
}

.card-image-box {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.card-badge-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 131, 61, 0.85);
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
  font-family: var(--font-secondary);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.card-category {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--primary-green-light);
  font-family: var(--font-secondary);
  font-style: italic;
}

/* News Slider Controls & Items */
.news-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.news-grid {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card {
  min-width: calc(33.333% - 1.35rem);
  background: #132219;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-medium);
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 131, 61, 0.4);
}

.news-card-img {
  height: 200px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.news-card-body {
  padding: 1.5rem;
}

.news-tag {
  font-size: 0.8rem;
  color: var(--primary-green-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.news-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.8rem;
}

.carousel-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.carousel-controls {
  display: flex;
  gap: 1rem;
}

/* Statistics Section */
.stats-section {
  position: relative;
  background: linear-gradient(180deg, #09120c 0%, #0d1a12 100%);
  padding: 7rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-intro-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 131, 61, 0.08);
  border-color: rgba(0, 131, 61, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-green-light);
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
  direction: ltr;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-secondary);
  line-height: 1.5;
}

.stats-link {
  text-align: center;
  margin-top: 3.5rem;
}

.stats-link a {
  color: var(--primary-green-light);
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--primary-green-light);
}

/* Focus Areas Interactive Component */
.focus-areas-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.focus-area-card {
  padding: 2.5rem 3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.focus-area-card:hover, .focus-area-card.active {
  background: rgba(255, 255, 255, 0.07);
  padding-right: 4rem;
  border-color: rgba(255, 255, 255, 0.2);
}

.focus-area-title {
  font-size: 2rem;
  font-weight: 800;
}

.focus-area-card:nth-child(1) .focus-area-title {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.focus-area-card:nth-child(2) .focus-area-title {
  background: linear-gradient(135deg, #b8cbb8, #e8a7a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.focus-area-card:nth-child(3) .focus-area-title {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.focus-area-card:nth-child(4) .focus-area-title {
  background: linear-gradient(135deg, #fa709a, #fee140);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.focus-area-card:nth-child(5) .focus-area-title {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.focus-area-arrow {
  color: #fff;
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.focus-area-card:hover .focus-area-arrow {
  transform: translateX(-10px);
}

/* HRH Founder Message Section */
.founder-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 4rem 0;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.founder-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(9, 20, 13, 0.95) 0%, rgba(9, 20, 13, 0.75) 50%, rgba(9, 20, 13, 0.2) 100%);
}

.founder-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 4rem;
  color: #ffffff;
}

.founder-quote {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-family: var(--font-secondary);
}

.founder-info h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

.founder-info p {
  font-size: 0.95rem;
  color: var(--primary-green-light);
  font-family: var(--font-secondary);
}

/* Call To Action Banner */
.cta-banner {
  background: linear-gradient(135deg, #13271a, #0b1a10);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  border: 1px solid rgba(0, 131, 61, 0.3);
  margin-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.btn-cta-primary {
  background: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 131, 61, 0.4);
}

.btn-cta-primary:hover {
  background: var(--primary-green-light);
  transform: translateY(-3px);
}

.btn-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Light Gray Official Footer Styling - Enlarged Premium Typography & Badges */
.footer {
  background: #ebebeb;
  color: #2b352f;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  align-items: start;
}

.footer-col-left {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.footer-main-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-newsletter-wrapper {
  margin-bottom: 3rem;
  width: 100%;
}

.footer-newsletter-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: #1c2520;
  margin-bottom: 1.2rem;
}

.official-newsletter-form {
  display: flex;
  align-items: center;
  border: 2px solid #1c2520;
  background: transparent;
  width: 100%;
  max-width: 100%;
}

.official-newsletter-btn {
  background: transparent;
  border: none;
  border-left: 2px solid #1c2520;
  color: #1c2520;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background var(--transition-fast);
}

.official-newsletter-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.official-newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.2rem;
  font-size: 1.15rem;
  color: #1c2520;
  outline: none;
  font-family: inherit;
}

.footer-subcolumns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
}

.footer-nav-heading {
  color: #00833d;
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 1.6rem;
  margin-bottom: 0.7rem;
}

.footer-nav-col .footer-nav-heading:first-child {
  margin-top: 0;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-col a {
  color: #3a4740;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-secondary);
  transition: color var(--transition-fast);
}

.footer-nav-col a:hover {
  color: #00833d;
}

.footer-col-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-label {
  color: #5a6760;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: block;
}

.footer-contact-phone {
  color: #1c2520;
  font-size: 1.35rem;
  font-family: sans-serif;
  direction: ltr;
  text-align: right;
  display: block;
  margin-bottom: 0.6rem;
  text-decoration: none;
  font-weight: 700;
}

.footer-contact-email {
  color: #1c2520;
  font-size: 1.15rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1.2rem;
  text-decoration: none;
  word-break: break-all;
}

.footer-green-link {
  color: #00833d !important;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  display: inline-block;
  text-decoration: none;
}

.footer-badges-wrapper {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 1rem;
}

.iso-seal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.iso-seal-svg {
  width: 125px;
  height: 125px;
}

.iso-seal-text {
  font-size: 0.82rem;
  color: #00833d;
  font-weight: 800;
  margin-top: 6px;
  font-family: var(--font-secondary);
  line-height: 1.3;
}

/* Great Place To Work Badge Card - Enlarged */
.gptw-badge-box {
  display: flex;
  align-items: center;
}

.gptw-card {
  width: 115px;
  background: #E31837;
  color: #ffffff;
  font-family: Arial, sans-serif;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.gptw-top {
  padding: 10px 8px;
  background: #E31837;
  line-height: 1.08;
}

.gptw-title {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.3px;
  color: #ffffff;
}

.gptw-title span {
  font-size: 9px;
  vertical-align: super;
}

.gptw-bottom {
  background: #002B49;
  padding: 6px 8px;
  text-align: center;
}

.gptw-cert {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.gptw-date {
  font-size: 7px;
  opacity: 0.95;
  color: #ffffff;
  margin-top: 2px;
}

.gptw-loc {
  font-size: 9.5px;
  font-weight: 900;
  color: #ffffff;
  margin-top: 2px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.2rem;
}

.copyright-text {
  font-size: 1rem;
  color: #777777;
  font-weight: 500;
}

.official-social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.official-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1c2520;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.official-social-icon:hover {
  background: #00833d;
  transform: translateY(-3px);
}

.copyright-text {
  font-size: 0.85rem;
  color: #7b8881;
  font-family: var(--font-secondary);
}


/* Floating Chatbot Widget */
.chat-widget-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 131, 61, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chat-widget-btn:hover {
  transform: scale(1.1);
  background: var(--primary-green-light);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #121f17;
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.btn-close-modal {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
}

.btn-close-modal:hover {
  color: #fff;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive System (iOS, Android, Mobile Browsers)
   ========================================================================== */

@media (max-width: 992px) {
  .header-links-top {
    display: none !important; /* Hide text nav links on mobile/tablets */
  }
  .header-lang-switch {
    display: none !important; /* Hide header lang switch from top bar (inside side drawer) */
  }
  .header-container {
    padding: 0 1.2rem;
  }
  .header-logo img {
    height: 38px;
  }

  .footer-grid {
    flex-direction: column !important;
    gap: 3rem !important;
  }
  .footer-col-left {
    width: 100% !important;
  }
  .footer-main-right {
    width: 100% !important;
  }
  .footer-subcolumns {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem !important;
    max-width: 100% !important;
  }
  .section-space {
    padding: 3.5rem 0 !important;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: 80vh !important;
    padding: 7rem 1.2rem 3rem !important;
  }
  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.8rem !important;
  }
  .hero-subtitle {
    font-size: 1.1rem !important;
  }
  .scroll-down {
    display: none !important;
  }

  /* Report Card Mobile */
  .report-card {
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
    gap: 1.5rem !important;
    border-radius: 16px !important;
  }
  .report-title {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
  }
  .report-subtitle {
    font-size: 1rem !important;
  }
  .report-desc {
    font-size: 0.9rem !important;
    margin-bottom: 1.2rem !important;
  }
  .report-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.8rem 1.5rem !important;
  }
  .report-img-wrapper img {
    height: 230px !important;
  }

  /* Projects & News Grid Mobile */
  .grid-2x2 {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .news-carousel-container {
    overflow-x: hidden !important;
    padding: 0 !important;
  }
  .news-grid {
    flex-direction: column !important;
    gap: 1.2rem !important;
    transform: none !important;
    width: 100% !important;
  }
  .news-card {
    min-width: 100% !important;
    width: 100% !important;
  }
  .news-controls {
    display: none !important;
  }
  .section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
    margin-bottom: 1.8rem !important;
  }
  .section-line {
    display: none !important;
  }

  /* Stats & Focus Areas Mobile */
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
  .stat-number {
    font-size: 1.8rem !important;
  }
  .stat-label {
    font-size: 0.8rem !important;
  }
  .focus-areas-wrapper {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }

  /* Founder Message Mobile */
  .founder-card {
    grid-template-columns: 1fr !important;
    border-radius: 16px !important;
  }
  .founder-bg {
    height: 250px !important;
  }
  .founder-content {
    padding: 1.5rem !important;
  }
  .founder-quote {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }

  /* Footer Mobile */
  .footer {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
  }
  .footer-newsletter-title {
    font-size: 1.5rem !important;
  }
  .official-newsletter-form {
    flex-direction: column !important;
    border: none !important;
    gap: 0.8rem !important;
  }
  .official-newsletter-input {
    border: 2px solid #1c2520 !important;
    width: 100% !important;
    border-radius: 4px;
  }
  .official-newsletter-btn {
    width: 100% !important;
    border: 2px solid #1c2520 !important;
    background: #1c2520 !important;
    color: #ffffff !important;
    text-align: center !important;
    border-radius: 4px;
  }
  .footer-subcolumns {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }
  .footer-badges-wrapper {
    justify-content: flex-start !important;
    gap: 1.2rem !important;
  }
  .footer-bottom-bar {
    flex-direction: column-reverse !important;
    gap: 1.2rem !important;
    align-items: center !important;
    text-align: center !important;
  }
  .official-social-icons {
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .side-drawer {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 2rem 1.2rem !important;
  }
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
}

