/* Subhashree Groups NGO Portfolio Website - Main Stylesheet */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Color Palette */
:root {
  --primary-green: #007f5f;
  --primary-blue: #004e89;
  --accent-gold: #fcbf49;
  --neutral-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --background-light: #f8f9fa;
  --card-border: #e0e0e0;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-speed: 0.3s;
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--neutral-white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header/Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled nav {
  padding: 0.875rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  border-radius: 8px;
}

header.scrolled .logo-icon {
  width: 44px;
  height: 44px;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition-speed);
}

header.scrolled .logo-text strong {
  color: var(--text-dark);
}

.logo-text small {
  font-size: 0.75rem;
  color: var(--text-light);
  transition: color var(--transition-speed);
}

header.scrolled .logo-text small {
  color: var(--text-light);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.625rem 1rem;
  position: relative;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links a.active::after {
  width: 100%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
}

header.scrolled .nav-links a {
  color: var(--text-dark);
  text-shadow: none;
}

header.scrolled .nav-links a::after {
  background: var(--primary-green);
  box-shadow: 0 0 8px rgba(0, 127, 95, 0.4);
}

header.scrolled .nav-links a.active::after {
  background: var(--primary-green);
  box-shadow: 0 0 8px rgba(0, 127, 95, 0.4);
}

.nav-links a:hover {
  color: var(--primary-green);
}

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

.nav-links a.active {
  color: var(--primary-green);
  font-weight: 600;
}

header.scrolled .nav-links a.active {
  color: var(--primary-green);
  font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--neutral-white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header.scrolled .menu-toggle span {
  background-color: var(--text-dark);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
  background-color: var(--primary-green);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
  background-color: var(--primary-green);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--neutral-white);
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--neutral-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-family: var(--font-heading);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-speed);
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-blue);
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background-color: #e0a82e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 191, 73, 0.3);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--neutral-white);
  border-color: var(--neutral-white);
  backdrop-filter: blur(10px);
}

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

.btn-secondary {
  background-color: var(--primary-green);
  color: var(--neutral-white);
  border-color: var(--primary-green);
}

.btn-secondary:hover {
  background-color: #006B4F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 127, 95, 0.3);
}

/* Sections */
section {
  padding: 5rem 0;
}

section.bg-light {
  background-color: var(--background-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.card {
  background: var(--neutral-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-speed);
  border: 1px solid var(--card-border);
  height: 100%;
  animation: float 3s ease-in-out infinite;
}

.card:nth-child(1) {
  animation-delay: 0s;
}

.card:nth-child(2) {
  animation-delay: 0.5s;
}

.card:nth-child(3) {
  animation-delay: 1s;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 127, 95, 0.1), rgba(0, 78, 137, 0.1));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  font-size: 2rem;
}

.card-icon img,
.entity-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.entity-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  display: block;
}

.card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-card .card-icon {
  margin: 0 auto 1rem;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-light);
  font-size: 1rem;
}

/* Division Cards */
.division-card {
  position: relative;
}

.division-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.division-content {
  margin-bottom: 1.5rem;
}

.division-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.division-details.active {
  max-height: 1000px;
}

.division-detail {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
}

.division-detail h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.expand-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-family: var(--font-heading);
}

.expand-btn:hover {
  background-color: var(--primary-green);
  color: var(--neutral-white);
}

/* Leadership Cards */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.leadership-card {
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.leadership-card:nth-child(2) {
  animation-delay: 0.5s;
}

.leadership-card:nth-child(3) {
  animation-delay: 1s;
}

.leadership-card:nth-child(4) {
  animation-delay: 1.5s;
}

.leadership-image {
  width: 100%;
  max-width: 300px;
  height: 350px;
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 127, 95, 0.2);
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.leadership-card:hover .leadership-image {
  box-shadow: 0 15px 40px rgba(0, 127, 95, 0.3);
}

.leadership-card h3 {
  margin-bottom: 0.5rem;
}

.leadership-role {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--card-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Contact Info */
.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-item div h4 {
  margin-bottom: 0.25rem;
  color: var(--primary-blue);
}

.contact-item div p {
  color: var(--text-light);
  margin: 0;
}

/* Footer */
footer {
  background-color: var(--primary-blue);
  color: var(--neutral-white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-speed);
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: var(--accent-gold);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
/* Large Tablets and Medium Desktops */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .leadership-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .response-time-banner {
    gap: 1.5rem;
  }
  
  .response-time-stats {
    gap: 1.5rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 0.25rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }
  
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
  
  .nav-links a {
    color: var(--text-dark) !important;
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
  }
  
  .nav-links a::before {
    background: var(--primary-green);
    bottom: 12px;
  }
  
  .nav-links a:hover {
    background-color: rgba(0, 127, 95, 0.1);
    color: var(--primary-green) !important;
    transform: translateX(5px);
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .leadership-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .social-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  /* Responsive updates for new sections */
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .newsletter-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter-input,
  .newsletter-form .btn {
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .quote-icon {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-value {
    font-size: 2.5rem;
  }
}

/* Mission & Vision Cards */
.mission-vision-card {
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}

/* Latest Updates Cards */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.update-card {
  position: relative;
  display: flex;
  flex-direction: column;
  animation: float 3s ease-in-out infinite;
}

.update-card:nth-child(1) {
  animation-delay: 0s;
}

.update-card:nth-child(2) {
  animation-delay: 0.5s;
}

.update-card:nth-child(3) {
  animation-delay: 1s;
}

.update-date {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.update-link {
  color: var(--primary-blue);
  font-weight: 600;
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-speed);
}

.update-link:hover {
  color: var(--primary-green);
  gap: 0.75rem;
}

/* Testimonials Section */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--neutral-white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-speed);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.5s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 1s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
  position: relative;
  margin-bottom: 1.5rem;
}

.quote-icon {
  color: var(--accent-gold);
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--card-border);
}

.author-info h4 {
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(252, 191, 73, 0.2), transparent);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  color: var(--neutral-white);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-content h2 {
  color: var(--neutral-white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Newsletter Section */
.newsletter-section {
  background-color: var(--background-light);
  padding: 4rem 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.newsletter-text {
  flex: 1;
  min-width: 280px;
}

.newsletter-text h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.newsletter-text p {
  color: var(--text-light);
  margin: 0;
}

.newsletter-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  gap: 0.75rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--card-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-speed);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-green);
}

.newsletter-form .btn {
  white-space: nowrap;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: var(--neutral-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 127, 95, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 127, 95, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

/* Hero Parallax Effect */
.hero {
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
  pointer-events: none;
}

/* Stat Counter Animation */
.stat-value {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stat-value.counted {
  opacity: 1;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Projects Page Enhanced Features */

/* Search and Filter Controls */
.projects-controls {
  background: var(--neutral-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  position: sticky;
  top: 80px;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98);
}

.search-filter-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}

.search-box {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 2px solid var(--card-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-speed);
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 127, 95, 0.1);
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.view-toggle {
  display: flex;
  gap: 0.5rem;
  background: var(--background-light);
  padding: 0.375rem;
  border-radius: var(--border-radius);
}

.view-btn {
  padding: 0.625rem 1rem;
  background: transparent;
  border: none;
  border-radius: calc(var(--border-radius) - 2px);
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-speed);
  font-size: 1rem;
}

.view-btn.active {
  background: var(--neutral-white);
  color: var(--primary-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.view-btn:hover:not(.active) {
  color: var(--primary-green);
}

.filter-categories {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  background: var(--background-light);
  border: 2px solid transparent;
  border-radius: 25px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-family: var(--font-heading);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: rgba(0, 127, 95, 0.05);
}

.filter-btn.active {
  background: var(--primary-green);
  color: var(--neutral-white);
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(0, 127, 95, 0.3);
}

.filter-btn .count {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.125rem 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 0.875rem;
}

.filter-btn.active .count {
  background: rgba(255, 255, 255, 0.3);
}

/* Project Cards Enhanced */
.projects-grid {
  transition: all 0.3s ease;
}

.projects-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.projects-grid.list-view .card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
}

.projects-grid.list-view .card-icon {
  margin-bottom: 0;
}

.projects-grid.list-view .card-content {
  flex: 1;
}

.project-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(0, 127, 95, 0.1);
  color: var(--primary-green);
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all var(--transition-speed);
}

.project-tag i {
  font-size: 0.75rem;
}

.project-tag.status {
  background: rgba(252, 191, 73, 0.15);
  color: #d4940b;
}

.project-tag.status.active {
  background: rgba(0, 200, 83, 0.15);
  color: #00853b;
}

.project-tag:hover {
  transform: scale(1.05);
}

.project-progress {
  margin-top: 1.5rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 600;
}

.progress-bar-wrapper {
  height: 8px;
  background: var(--background-light);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  border-radius: 25px;
  transition: width 1s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Quick View Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  background: var(--neutral-white);
  border-radius: 16px;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--background-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: all var(--transition-speed);
}

.modal-close:hover {
  background: var(--primary-green);
  color: var(--neutral-white);
  transform: rotate(90deg);
}

.modal-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 127, 95, 0.1), rgba(0, 78, 137, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 2.5rem;
  flex-shrink: 0;
}

.modal-title h2 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.modal-body {
  margin-bottom: 2rem;
}

.modal-section {
  margin-bottom: 2rem;
}

.modal-section h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.modal-section ul {
  list-style: none;
  padding-left: 0;
}

.modal-section li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
}

.modal-section li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-green);
}

.modal-footer {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding-top: 2rem;
  border-top: 2px solid var(--card-border);
}

/* Timeline Section */
.timeline-section {
  position: relative;
  padding: 5rem 0;
  background: var(--background-light);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-green), var(--primary-blue));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 3rem;
}

.timeline-content {
  flex: 1;
  background: var(--neutral-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-speed);
}

.timeline-content:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: scale(1.02);
}

.timeline-date {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-green);
  color: var(--neutral-white);
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--accent-gold);
  border: 4px solid var(--neutral-white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(252, 191, 73, 0.2);
  z-index: 10;
}

.timeline-content h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* Social Share Buttons */
.share-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  background: var(--neutral-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-size: 1rem;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
}

.share-btn.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: white;
}

.share-btn.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: white;
}

.share-btn.email:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

/* No Results Message */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.no-results.visible {
  opacity: 1;
  transform: translateY(0);
}

.no-results i {
  font-size: 4rem;
  color: var(--card-border);
  margin-bottom: 1.5rem;
}

.no-results h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.no-results p {
  color: var(--text-light);
}

/* Project Card Hidden State */
.card.hidden {
  display: none;
}

/* Responsive for Projects Features */
@media (max-width: 768px) {
  .projects-controls {
    position: relative;
    top: 0;
    padding: 1.5rem;
  }
  
  .search-filter-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-box {
    min-width: 100%;
  }
  
  .view-toggle {
    width: 100%;
    justify-content: center;
  }
  
  .filter-categories {
    justify-content: center;
  }
  
  .projects-grid.list-view .card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: left;
  }
  
  .timeline-item .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 3rem;
    margin-right: 0;
  }
  
  .timeline-marker {
    left: 20px;
  }
  
  .modal-content {
    padding: 2rem;
    margin: 1rem;
    max-height: 95vh;
  }
  
  .modal-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .modal-footer {
    flex-direction: column;
  }
  
  .modal-footer .btn {
    width: 100%;
  }
}

/* Leadership Page Enhanced Features */

/* Enhanced Leadership Cards */
.leadership-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.leadership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold), var(--primary-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.leadership-card:hover {
  transform: translateY(-10px);
}

.leadership-image-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.leadership-image {
  transition: transform 0.4s ease;
}

.leadership-card:hover .leadership-image {
  transform: scale(1.05);
}

.leadership-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 127, 95, 0.95), transparent);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.leadership-card:hover .leadership-overlay {
  transform: translateY(0);
}

.leadership-quick-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.quick-action-btn {
  flex: 1;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  color: var(--neutral-white);
  cursor: pointer;
  transition: all var(--transition-speed);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.quick-action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.leader-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.leader-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 127, 95, 0.1);
  color: var(--primary-green);
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
}

.leader-tag i {
  font-size: 0.7rem;
}

/* Leadership Filter Controls */
.leadership-filters {
  background: var(--neutral-white);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  text-align: center;
}

.leadership-filters h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.filter-chips {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-chip {
  padding: 0.5rem 1.25rem;
  background: var(--background-light);
  border: 2px solid transparent;
  border-radius: 25px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.filter-chip:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: rgba(0, 127, 95, 0.05);
}

.filter-chip.active {
  background: var(--primary-green);
  color: var(--neutral-white);
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(0, 127, 95, 0.3);
}

/* Leadership Stats */
.leadership-stats {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.leadership-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(252, 191, 73, 0.2), transparent);
  pointer-events: none;
}

.leadership-stats .container {
  position: relative;
  z-index: 10;
}

.leadership-stats h2 {
  color: var(--neutral-white);
  text-align: center;
  margin-bottom: 3rem;
}

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

.leadership-stat {
  text-align: center;
  color: var(--neutral-white);
}

.leadership-stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  backdrop-filter: blur(10px);
}

.leadership-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.leadership-stat-label {
  font-size: 1rem;
  opacity: 0.95;
}

/* Organizational Chart */
.org-chart-section {
  background: var(--background-light);
  padding: 5rem 0;
}

.org-chart {
  max-width: 1000px;
  margin: 3rem auto 0;
}

.org-level {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
}

.org-level::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 1.5rem;
  background: var(--primary-green);
  opacity: 0.3;
}

.org-level:last-child::after {
  display: none;
}

.org-node {
  background: var(--neutral-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-width: 200px;
  position: relative;
  transition: all var(--transition-speed);
}

.org-node:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.org-node-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 3px solid var(--primary-green);
}

.org-node h4 {
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.org-node p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}

/* Leadership Values */
.leadership-values {
  padding: 5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--neutral-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

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

.value-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 127, 95, 0.1), rgba(0, 78, 137, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-green);
  font-size: 2rem;
}

.value-card h4 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* Leadership Quotes */
.leadership-quotes {
  background: var(--background-light);
  padding: 5rem 0;
}

.quotes-slider {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
}

.quote-card {
  background: var(--neutral-white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  display: none;
  animation: fadeInScale 0.5s ease;
}

.quote-card.active {
  display: block;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.quote-icon-large {
  color: var(--accent-gold);
  font-size: 3rem;
  opacity: 0.2;
  margin-bottom: 1rem;
}

.quote-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 2rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 2px solid var(--card-border);
}

.quote-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-green);
}

.quote-author-info h4 {
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.quote-author-info p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}

.quote-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.quote-nav-btn {
  width: 45px;
  height: 45px;
  background: var(--primary-green);
  color: var(--neutral-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: all var(--transition-speed);
}

.quote-nav-btn:hover {
  background: var(--primary-blue);
  transform: scale(1.1);
}

.quote-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.quote-dot {
  width: 10px;
  height: 10px;
  background: var(--card-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.quote-dot.active {
  background: var(--primary-green);
  transform: scale(1.3);
}

/* Leader Profile Modal */
.leader-modal .modal-content {
  max-width: 900px;
}

.leader-modal-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--card-border);
}

.leader-modal-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-green);
  flex-shrink: 0;
}

.leader-modal-info {
  flex: 1;
}

.leader-modal-info h2 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.leader-modal-role {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.leader-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.leader-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  background: var(--neutral-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.leader-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.leader-social-btn.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: white;
}

.leader-social-btn.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: white;
}

.leader-social-btn.email:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

.leader-achievements {
  background: var(--background-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
  border-bottom: 1px solid var(--card-border);
}

.achievement-list li:last-child {
  border-bottom: none;
}

.achievement-list li::before {
  content: '\f091';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 1.125rem;
}

/* Responsive for Leadership Features */
@media (max-width: 768px) {
  .leadership-filters {
    padding: 1.5rem;
  }
  
  .filter-chips {
    justify-content: flex-start;
  }
  
  .leadership-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .org-chart {
    padding: 0 1rem;
  }
  
  .org-level {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .org-node {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .quote-card {
    padding: 2rem;
  }
  
  .quote-text {
    font-size: 1.125rem;
  }
  
  .leader-modal-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .leader-social-links {
    justify-content: center;
  }
  
  .leadership-quick-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .leadership-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT PAGE ENHANCED FEATURES ===== */

/* Response Time Banner */
.response-time-banner {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--neutral-white);
  box-shadow: 0 10px 40px rgba(0, 127, 95, 0.2);
  position: relative;
  overflow: hidden;
}

.response-time-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.response-time-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.response-time-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.response-time-content h3 {
  color: var(--neutral-white);
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.response-time-content p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-size: 1rem;
}

.response-time-stats {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.response-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 100px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.response-stat .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Department Cards */
.department-card {
  background: var(--neutral-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.department-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.department-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.department-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 127, 95, 0.1), rgba(0, 78, 137, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-green);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.department-card:hover .department-icon {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: var(--neutral-white);
  transform: scale(1.1) rotate(10deg);
}

.department-card h4 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.department-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.department-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-green);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-green);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}

.department-link:hover {
  background: var(--primary-green);
  color: var(--neutral-white);
  transform: translateX(5px);
}

/* Social Contact Grid */
.social-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.social-contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--neutral-white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.social-contact-card:hover::before {
  left: 100%;
}

.social-contact-card i {
  font-size: 2rem;
}

.social-contact-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.social-contact-card.facebook {
  background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.social-contact-card.twitter {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.social-contact-card.linkedin {
  background: linear-gradient(135deg, #0a66c2, #084d92);
}

.social-contact-card.whatsapp {
  background: linear-gradient(135deg, #25d366, #1da851);
}

/* Enhanced Form Styles */
.form-control {
  position: relative;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(0, 127, 95, 0.1);
  transform: translateY(-2px);
}

.form-control.error {
  border-color: #dc3545;
  animation: shake 0.3s ease;
}

.form-control.success {
  border-color: #28a745;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.form-feedback {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.form-feedback.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-feedback.error {
  color: #dc3545;
}

.form-feedback.success {
  color: #28a745;
}

.character-count {
  text-align: right;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  font-weight: 500;
}

.character-count.warning {
  color: #ff9800;
}

.character-count.error {
  color: #dc3545;
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--neutral-white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}

.faq-question:hover {
  color: var(--primary-green);
  background: rgba(0, 127, 95, 0.03);
}

.faq-question i {
  font-size: 1rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 100px;
  right: 2rem;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: var(--neutral-white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(40, 167, 69, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-message.show {
  opacity: 1;
  transform: translateX(0);
}

.success-message i {
  font-size: 1.5rem;
}

.success-message-content h4 {
  color: var(--neutral-white);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.success-message-content p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-size: 0.95rem;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .response-time-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .response-time-stats {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  .response-stat {
    padding: 1rem;
    min-width: auto;
    flex: 1;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .department-card {
    padding: 1.5rem;
  }
  
  .social-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }
  
  .success-message {
    right: 1rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
  }
}

@media (max-width: 480px) {
  .response-time-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .response-stat {
    width: 100%;
  }
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */

/* Extra responsive fixes for very small screens */
@media (max-width: 480px) {
  /* Better container padding */
  .container {
    padding: 0 0.75rem;
  }
  
  /* Logo adjustments */
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .logo-text strong {
    font-size: 1rem;
  }
  
  .logo-text small {
    font-size: 0.7rem;
  }
  
  /* Hero section improvements */
  .hero {
    min-height: 70vh;
  }
  
  .hero-content {
    padding: 1.5rem 1rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  /* Card improvements */
  .card {
    padding: 1.5rem;
  }
  
  .card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }
  
  /* Section padding */
  section {
    padding: 2.5rem 0;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  /* Entity logos */
  .entity-logo {
    width: 100px;
    height: 100px;
  }
  
  /* Leadership images */
  .leadership-image {
    max-width: 250px;
    height: 250px;
  }
  
  /* Form improvements */
  .form-control {
    font-size: 16px;
  }
  
  /* Better button sizing */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Fix floating animation on mobile (can cause jitter) */
  .card {
    animation: none;
  }
  
  .testimonial-card,
  .update-card {
    animation: none;
  }
}

/* Tablet and medium screen improvements */
@media (max-width: 768px) {
  /* Better image responsiveness */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Container improvements */
  .container {
    padding: 0 1rem;
  }
  
  /* Hero adjustments */
  .hero-content {
    padding: 1.5rem;
  }
  
  /* Card spacing */
  .card {
    margin-bottom: 1rem;
  }
  
  /* Better form layout */
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  /* Ensure images don't overflow */
  .leadership-image,
  .entity-logo,
  img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* ===== SDG SECTION RESPONSIVE FIXES ===== */

@media (max-width: 768px) {
  /* SDG Icons Section - Better mobile layout */
  .section-header .sdg-badge {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  
  /* UN Logo container - responsive */
  div[style*="display: inline-block"][style*="background: white"] {
    padding: 0.75rem 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  div[style*="display: inline-block"][style*="background: white"] img {
    height: 60px !important;
  }
  
  /* SDG images - responsive sizing */
  img[alt*="UN Sustainable Development Goals"],
  img[alt*="SDG Categories"],
  img[src*="sdg-poster"],
  img[src*="sdg-categories"] {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    border-radius: 8px !important;
  }
  
  /* SDG container padding */
  div[style*="background: white"][style*="padding: 2rem"] {
    padding: 1rem !important;
  }
  
  /* SDG disclaimer box */
  div[style*="background: rgba(0, 127, 95, 0.05)"] {
    padding: 1rem !important;
    font-size: 0.85rem !important;
  }
  
  div[style*="background: rgba(0, 127, 95, 0.05)"] p {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  /* Even smaller screens - SDG section */
  div[style*="display: inline-block"][style*="background: white"] {
    padding: 0.5rem 1rem !important;
  }
  
  div[style*="display: inline-block"][style*="background: white"] img {
    height: 50px !important;
  }
  
  /* SDG heading */
  h3[style*="color: var(--primary-blue)"] {
    font-size: 1.25rem !important;
  }
  
  /* SDG container */
  div[style*="background: white"][style*="padding: 2rem"] {
    padding: 0.75rem !important;
    border-radius: 8px !important;
  }
  
  /* SDG disclaimer */
  div[style*="background: rgba(0, 127, 95, 0.05)"] {
    padding: 0.75rem !important;
    margin-top: 1rem !important;
  }
}

/* ===== GENERAL RESPONSIVE IMPROVEMENTS ===== */

/* Prevent horizontal overflow */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  * {
    max-width: 100%;
  }
  
  /* Fix any potential overflow issues */
  .container,
  .container-wide,
  section {
    overflow-x: hidden;
  }
  
  /* Better image handling */
  img:not([style*="width"]):not([style*="height"]) {
    max-width: 100%;
    height: auto;
  }
  
  /* Responsive tables if any */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  /* Better text wrapping */
  h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Ensure buttons don't overflow */
  .btn {
    max-width: 100%;
    white-space: normal;
  }
}

/* Core Values Grid - mobile responsive */
@media (max-width: 768px) {
  .core-values-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .core-value-item {
    padding: 1.5rem !important;
  }
  
  .core-value-icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
  }
}

/* Powers Grid - mobile responsive */
@media (max-width: 768px) {
  .powers-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .power-item {
    padding: 1.5rem !important;
    text-align: center !important;
  }
  
  .power-icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 1.75rem !important;
    margin: 0 auto 1rem !important;
  }
}

/* Highlight boxes - mobile responsive */
@media (max-width: 768px) {
  .highlight-box {
    padding: 1.25rem !important;
    margin-top: 1.5rem !important;
  }
  
  .highlight-box p {
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .highlight-box {
    padding: 1rem !important;
  }
  
  .highlight-box p {
    font-size: 0.9rem !important;
  }
}

/* ===== FINAL COMPREHENSIVE RESPONSIVE FIXES ===== */

/* Ensure all elements respect viewport */
@media (max-width: 768px) {
  /* Force all fixed/absolute elements to be responsive */
  [style*="width: "],
  [style*="min-width: "] {
    max-width: 100% !important;
  }

  /* Ensure no element causes horizontal scroll */
  .row,
  .column,
  .flex,
  .grid,
  [class*="grid"],
  [class*="col"] {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Better spacing for mobile */
  .section-header {
    padding: 0 0.5rem;
  }

  /* Ensure cards are properly spaced */
  .grid.grid-2,
  .grid.grid-3,
  .grid.grid-4 {
    gap: 1rem !important;
  }

  /* Better handling of long text */
  p, li, span, div {
    word-break: break-word;
    hyphens: auto;
  }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 360px) {
  .container {
    padding: 0 0.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .card {
    padding: 1rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Landscape orientation fixes for phones */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 60vh !important;
  }

  section {
    padding: 2rem 0;
  }
}

/* Print styles for better printing */
@media print {
  header {
    position: static;
  }

  .menu-toggle,
  .mobile-menu-overlay,
  .scroll-to-top,
  .btn {
    display: none;
  }

  .card {
    break-inside: avoid;
  }
}

/* High DPI display support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
