:root {
  --primary-color: #8ea70d;
  --secondary-color: #00d2e2;
  --accent-color: #f5a414;
  --dark-bg: #1a1a1a;
  --darker-bg: #0f0f0f;
  --light-bg: #ffffff;
  --gray-bg: #f8f9fa;
  --text-light: #ffffff;
  --text-gray: #6c757d;
  --text-dark: #2c3e50;
  --border-color: #e9ecef;
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--light-bg);
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: all 0.8s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.preloader-logo {
  margin-bottom: 2rem;
}

.logo-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-text-preloader {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: 3rem;
  color: white;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  animation: logoGlow 2s ease-in-out infinite alternate;
}

.brand-subtitle-preloader {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  animation: subtitleFade 2s ease-in-out infinite alternate;
}

.preloader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 2rem auto;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
  animation-delay: -0.5s;
  border-top-color: var(--accent-color);
}

.spinner-ring:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 20px;
  left: 20px;
  animation-delay: -1s;
  border-top-color: rgba(255, 255, 255, 0.7);
}

.preloader-text {
  margin: 2rem 0;
}

.loading-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  animation: textPulse 2s ease-in-out infinite;
}

.progress-container {
  width: 300px;
  margin: 2rem auto 0;
}

.progress-bar-preloader {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, white, var(--accent-color));
  border-radius: 2px;
  width: 0%;
  animation: progressFill 3s ease-out forwards;
}

.progress-percentage {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  text-align: center;
}

.preloader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 6s linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 30%;
  animation-delay: -2s;
}

.particle:nth-child(3) {
  left: 50%;
  animation-delay: -4s;
}

.particle:nth-child(4) {
  left: 70%;
  animation-delay: -1s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: -3s;
}

/* Preloader Animations */
@keyframes logoGlow {
  0% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(245, 164, 20, 0.5);
  }
}

@keyframes subtitleFade {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

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

@keyframes textPulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: -350px;
  width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  z-index: 9999;
  transition: all 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
}

.sidebar.active {
  left: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand {
  display: flex;
  flex-direction: column;
}

.sidebar-brand .brand-text {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.sidebar-brand .brand-subtitle {
  font-size: 0.7rem;
  color: var(--text-gray);
  letter-spacing: 1px;
  margin-top: -5px;
}

.sidebar-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
}

.sidebar-content {
  padding: 1rem 0;
}

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

.sidebar-nav .nav-item {
  margin-bottom: 0.5rem;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  color: white;
  background: rgba(142, 167, 13, 0.1);
  border-left-color: var(--primary-color);
}

.sidebar-nav .nav-link i {
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

.sidebar-nav .nav-link span {
  flex: 1;
}

.sidebar-nav .dropdown-arrow {
  margin-left: auto;
  margin-right: 0;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.sidebar-nav .nav-link[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.sidebar-dropdown {
  background: rgba(0, 0, 0, 0.2);
}

.sidebar-dropdown .dropdown-menu {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  position: static;
  width: 100%;
  display: block;
}

.sidebar-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.8rem 3rem;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-dropdown .dropdown-item:hover {
  color: white;
  background: rgba(142, 167, 13, 0.1);
  border-left-color: var(--secondary-color);
}

.sidebar-nav .btn-donate {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  margin: 1rem 2rem;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
}

.sidebar-nav .btn-donate:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(142, 167, 13, 0.3);
}

.sidebar-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.sidebar-footer .social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sidebar-footer .social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Navigation Styles */
.futuristic-nav {
  background: linear-gradient(135deg, var(--light-bg) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(142, 167, 13, 0.1);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-text {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--text-gray);
  letter-spacing: 1px;
  margin-top: -5px;
}

/* Custom Navbar Toggler */
.sidebar-toggle {
  border: none;
  background: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.navbar-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
}

.navbar-toggler-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.sidebar-toggle.active .navbar-toggler-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.sidebar-toggle.active .navbar-toggler-icon span:nth-child(2) {
  opacity: 0;
}

.sidebar-toggle.active .navbar-toggler-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

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

/* Dropdown Styles */
.futuristic-dropdown {
  background: var(--light-bg);
  border: 2px solid var(--primary-color);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(142, 167, 13, 0.2);
  margin-top: 10px;
}

.futuristic-dropdown .dropdown-item {
  color: var(--text-dark);
  padding: 10px 20px;
  transition: all 0.3s ease;
  border-radius: 0;
}

.futuristic-dropdown .dropdown-item:hover,
.futuristic-dropdown .dropdown-item.active {
  background: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

/* Enhanced hero slider with creative background images and advanced blur effects */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.prev {
  transform: translateX(-100%);
}

/* Advanced slide overlay with gradient and selective blur effects */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 25%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 75%,
    rgba(0, 0, 0, 0.7) 100%
  );
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Creative background image effects with partial blur */
.hero-slide::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(4px) brightness(0.7) contrast(1.2);
  z-index: -2;
  transition: all 0.8s ease;
  opacity: 0.8;
}

.hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: right center;
  background-attachment: fixed;
  filter: blur(0px) brightness(1.1) contrast(1.3) saturate(1.2);
  z-index: -1;
  transition: all 0.8s ease;
  opacity: 0.6;
  mask: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
}

.hero-slide.active::before {
  transform: scale(1.02);
  filter: blur(3px) brightness(0.8) contrast(1.1);
}

.hero-slide.active::after {
  opacity: 0.8;
  filter: blur(0px) brightness(1.2) contrast(1.4) saturate(1.3);
}

/* Enhanced hero content positioning with better text shadows */
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  color: #8ea70d;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 0, 0, 0.4);
}

/* Enhanced hero image container with dynamic blur and glow effects */
.hero-image-container {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
  border-radius: 27px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-slide.active .hero-image-container::before {
  opacity: 1;
}

.hero-subtitle{
    color:#00d2e2;
}

.hero-image {
  transition: all 0.8s ease;
  filter: blur(0px) brightness(1.1) contrast(1.2) saturate(1.1);
  transform: scale(1);
}

.hero-slide:not(.active) .hero-image {
  filter: blur(3px) brightness(0.7) contrast(0.8) saturate(0.9);
  transform: scale(0.95);
}

.hero-slide.active .hero-image {
  filter: blur(0px) brightness(1.2) contrast(1.3) saturate(1.2);
  transform: scale(1.02);
}

/* Enhanced slider navigation with glassmorphism and hover animations */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
  pointer-events: none;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(15px);
  pointer-events: all;
  font-size: 1.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.slider-btn::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;
}

.slider-btn:hover::before {
  left: 100%;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.slider-btn:active {
  transform: scale(0.9) rotate(-2deg);
}

.slider-btn i {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.slider-btn:hover i {
  transform: translateX(3px) scale(1.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.prev-btn:hover i {
  transform: translateX(-3px) scale(1.1);
}

/* Enhanced slider indicators with animated progress rings */
.hero-slider-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  z-index: 10;
}

.indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.indicator::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 255, 255, 0.6) 0deg, transparent 360deg);
  opacity: 0;
  transition: all 0.4s ease;
}

.indicator.active {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.indicator.active::before {
  width: 100%;
  height: 100%;
}

.indicator.active::after {
  opacity: 1;
  animation: rotate 6s linear infinite;
}

.indicator:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Mobile responsive enhancements for slider */
@media (max-width: 768px) {
  .hero-slide::after {
    width: 60%;
    opacity: 0.4;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .hero-slider-nav {
    padding: 0 1rem;
  }

  .indicator {
    width: 12px;
    height: 12px;
  }

  .hero-slider-indicators {
    gap: 1rem;
    bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-slider-nav {
    padding: 0 1rem;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .hero-slider-indicators {
    bottom: 1rem;
    gap: 0.5rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .slide-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }

  .hero-slide::before {
    background-attachment: scroll;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--gray-bg) 0%, var(--light-bg) 100%);
  padding: 120px 0 60px;
  border-bottom: 3px solid var(--primary-color);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-gray);
}

.page-title {
  font-family: "Orbitron", monospace;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
}

/* Section Styles */
.content-section {
  padding: 80px 0;
}

.overview-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.focus-preview-section {
  padding: 80px 0;
  background: var(--gray-bg);
}

.impact-preview-section {
  padding: 80px 0;
  background: var(--light-bg);
}

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

.section-title {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
}

/* Mission Section */
.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.mission-image img {
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Focus Preview Cards */
.focus-preview-card {
  background: var(--light-bg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  border-top: 4px solid var(--primary-color);
  height: 100%;
}

.focus-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(142, 167, 13, 0.2);
}

.focus-preview-card .focus-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 0;
}

.focus-preview-card .focus-icon i {
  font-size: 1.5rem;
  color: white;
}

.focus-preview-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.focus-preview-card p {
  color: var(--text-gray);
}

/* Impact Preview Cards */
.impact-preview-card {
  background: var(--light-bg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  border-left: 4px solid var(--secondary-color);
  height: 100%;
}

.impact-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 210, 226, 0.2);
}

.impact-number {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.impact-label {
  font-weight: 600;
  color: var(--text-dark);
}

/* Content Blocks */
.content-main {
  background: var(--light-bg);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.content-block {
  margin-bottom: 3rem;
}

.content-block h2 {
  font-family: "Orbitron", monospace;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.content-block p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Vision Mission Cards */
.vm-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vm-card {
  background: var(--gray-bg);
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 0;
}

.vm-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 0;
}

.vm-icon i {
  color: white;
  font-size: 1.2rem;
}

.vm-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--gray-bg);
  padding: 1.5rem;
  text-align: center;
  border-radius: 0;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(142, 167, 13, 0.1);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 0;
}

.value-icon i {
  color: white;
  font-size: 1.2rem;
}

.value-item h5 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Sidebar */
.sidebar {
  padding-left: 2rem;
}

.sidebar-widget {
  background: var(--light-bg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  border-top: 3px solid var(--primary-color);
}

.sidebar-widget h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.fact-list {
  list-style: none;
  padding: 0;
}

.fact-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

/* Team Cards */
.team-card {
  background: var(--light-bg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  border-top: 4px solid var(--primary-color);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(142, 167, 13, 0.2);
}

.team-image {
  margin-bottom: 1.5rem;
}

.team-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 0;
  border: 3px solid var(--primary-color);
}

.team-info h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-desc {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 0;
}

.team-social a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Team Stats */
.team-stats-section {
  background: var(--gray-bg);
  padding: 3rem 0;
  border-radius: 0;
}

.stat-card {
  background: var(--light-bg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  border-left: 4px solid var(--primary-color);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 0;
}

.stat-icon i {
  color: white;
  font-size: 1.5rem;
}

.stat-number {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  color: var(--text-dark);
}

/* Department Cards */
.department-card {
  background: var(--light-bg);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  border-top: 4px solid var(--primary-color);
  height: 100%;
}

.department-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(142, 167, 13, 0.2);
}

.dept-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 0;
}

.dept-icon i {
  font-size: 1.5rem;
  color: white;
}

.department-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.dept-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.dept-list li {
  padding: 0.3rem 0;
  color: var(--text-gray);
  position: relative;
  padding-left: 1.5rem;
}

.dept-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.8rem;
}

/* Join Team Section */
.join-team-section {
  background: var(--gray-bg);
  padding: 3rem;
  margin-top: 3rem;
  border-radius: 0;
  text-align: center;
}

.join-team-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Gallery Styles */
.gallery-filter {
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  margin: 0 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
}

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

.gallery-item {
  transition: all 0.3s ease;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(142, 167, 13, 0.9), rgba(0, 210, 226, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-info {
  text-align: center;
  color: white;
  padding: 2rem;
}

.gallery-info h5 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.gallery-info p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: var(--text-light);
  padding: 4rem 0 0;
}

.footer-main {
  padding-bottom: 2rem;
}

.footer-section h4.footer-title {
  font-family: "Orbitron", monospace;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-section h5.footer-subtitle {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-desc {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 0;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
}

.newsletter-signup {
  margin-top: 1.5rem;
}

.newsletter-signup h6 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.newsletter-form .form-control {
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--text-light);
  border-radius: 0;
}

.newsletter-form .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: none;
  background: transparent;
  color: var(--text-light);
}

.newsletter-form .form-control::placeholder {
  color: var(--text-gray);
}

.newsletter-form .btn {
  border-radius: 0;
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
}

.newsletter-form .btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-bottom p {
  color: var(--text-gray);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Our Work Page Styles */
.work-overview-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.work-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--gray-bg);
  border-left: 3px solid var(--primary-color);
  border-radius: 0;
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.highlight-item span {
  font-weight: 600;
  color: var(--text-dark);
}

.program-filter-section {
  padding: 2rem 0;
  background: var(--gray-bg);
}

.program-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-programs-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

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

.program-card {
  background: var(--light-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  overflow: hidden;
  border-top: 4px solid var(--primary-color);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(142, 167, 13, 0.2);
}

.program-image {
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.program-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.program-status {
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0;
}

.program-content {
  padding: 2rem;
}

.program-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.program-category i {
  font-size: 1rem;
}

.program-content h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.3rem;
}

.program-content p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--gray-bg);
  border-radius: 0;
}

.program-highlights .highlight {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.program-highlights .highlight strong {
  color: var(--primary-color);
  font-weight: 700;
}

.program-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.current-projects-section {
  padding: 4rem 0;
  background: var(--gray-bg);
}

.project-card {
  background: var(--light-bg);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  border-left: 4px solid var(--primary-color);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(142, 167, 13, 0.2);
}

.project-header {
  margin-bottom: 1.5rem;
}

.project-status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0;
  margin-bottom: 1rem;
}

.project-status-badge.active {
  background: var(--primary-color);
  color: white;
}

.project-status-badge.planning {
  background: var(--accent-color);
  color: white;
}

.project-header h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.project-duration {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 0;
}

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

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.progress {
  height: 8px;
  background: var(--border-color);
  border-radius: 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.project-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.project-stats .stat {
  text-align: center;
  padding: 1rem;
  background: var(--gray-bg);
  border-radius: 0;
}

.project-stats .stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-family: "Orbitron", monospace;
  margin-bottom: 0.3rem;
}

.project-stats .stat span {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.partnerships-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

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

.partner-category h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  align-items: center;
}

.partner-logo {
  background: var(--light-bg);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
}

.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(142, 167, 13, 0.2);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logo:hover img {
  opacity: 1;
}

.work-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
}

.work-cta-section h2 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.work-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  margin-top: 2rem;
}

/* Modal Styles */
.modal-content {
  border-radius: 0;
  border: 2px solid var(--primary-color);
}

.modal-header {
  background: var(--primary-color);
  color: white;
  border-bottom: none;
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-title {
  font-weight: 600;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: 1px solid var(--border-color);
  padding: 1rem 2rem;
}

/* Contact Page Styles */
.contact-form-section {
  background: var(--light-bg);
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 2rem;
}

.contact-info-section {
  padding-left: 2rem;
}

.contact-info-card {
  background: var(--light-bg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  border-left: 4px solid var(--primary-color);
}

.contact-info-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.social-links-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.social-link:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.map-section {
  margin: 4rem 0;
}

.map-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(142, 167, 13, 0.8), rgba(0, 210, 226, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.map-container:hover .map-overlay {
  opacity: 1;
}

.map-info {
  text-align: center;
  color: white;
}

.map-info h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-section {
  background: var(--gray-bg);
  padding: 4rem 0;
}

.cta-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-buttons {
  margin-top: 2rem;
}

/* Donate Page Styles */
.donate-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.donate-header .page-title,
.donate-header .page-subtitle {
  color: white;
}

.donate-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

.donate-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}

.donation-impact-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.donation-form-section {
  padding: 4rem 0;
  background: var(--gray-bg);
}

.donation-form-card {
  background: var(--light-bg);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.donation-type-options,
.payment-options {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.amount-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 0;
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--primary-color);
  color: white;
}

.donation-summary {
  background: var(--gray-bg);
  padding: 2rem;
  border-radius: 0;
  border-left: 4px solid var(--primary-color);
}

.donation-summary h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
  border-bottom: none;
  font-weight: 600;
}

.other-ways-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.help-card {
  background: var(--light-bg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  border-top: 4px solid var(--primary-color);
  height: 100%;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(142, 167, 13, 0.2);
}

.help-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 0;
}

.help-icon i {
  font-size: 1.5rem;
  color: white;
}

.help-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Impact Page Styles */
.impact-overview-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.impact-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.key-impact-section {
  padding: 4rem 0;
  background: var(--gray-bg);
}

.key-impact-card {
  background: var(--light-bg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  border-top: 4px solid var(--primary-color);
  height: 100%;
}

.key-impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(142, 167, 13, 0.2);
}

.program-impact-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.program-impact-block {
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.program-impact-block:nth-child(even) {
  background: var(--gray-bg);
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}

.program-impact-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.impact-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(142, 167, 13, 0.1);
  border-radius: 0;
}

.impact-stat .stat-number {
  font-family: "Orbitron", monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.impact-stat .stat-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.impact-stat .stat-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.success-stories-section {
  padding: 4rem 0;
  background: var(--gray-bg);
}

.story-card {
  background: var(--light-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(142, 167, 13, 0.2);
}

.story-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-content {
  padding: 2rem;
}

.story-content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.story-category {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.story-author {
  color: var(--text-gray);
  font-style: italic;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.impact-timeline-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

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

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: var(--light-bg);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  flex: 1;
  margin: 0 2rem;
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.impact-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
}

.impact-cta-section h2 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.impact-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Publications Page Styles */
.publications-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.publication-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--gray-bg);
  border-radius: 0;
}

.publication-filter {
  margin-bottom: 2rem;
}

.publication-filter .filter-btn {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}

.publications-section {
  padding: 4rem 0;
}

.publication-card {
  background: var(--light-bg);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 0;
  height: 100%;
}

.publication-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(142, 167, 13, 0.2);
}

.publication-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 0;
}

.publication-icon i {
  font-size: 1.5rem;
  color: white;
}

.publication-card h4,
.publication-card h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.publication-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.publication-meta {
  margin-bottom: 1.5rem;
}

.publication-meta span {
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0;
  margin-right: 0.5rem;
}

.publication-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.publication-actions .btn {
  font-size: 0.9rem;
  padding: 8px 16px;
}

.publication-card.impact {
  border-top: 4px solid var(--primary-color);
}

.publication-card.newsletter {
  border-left: 4px solid var(--secondary-color);
}

.publication-card.policy {
  border-top: 4px solid var(--accent-color);
}

.publication-card.program {
  border-top: 4px solid var(--primary-color);
}

.request-form-card {
  background: var(--light-bg);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  border-left: 4px solid var(--primary-color);
}

/* Form Styles */
.form-control {
  border: 2px solid var(--border-color);
  border-radius: 0;
  padding: 12px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(142, 167, 13, 0.25);
}

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

/* Notification Styles */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  border-radius: 0;
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Animation keyframes */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sidebar {
    width: 300px;
    left: -300px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .sidebar {
    padding-left: 0;
    margin-top: 2rem;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .vm-cards {
    grid-template-columns: 1fr;
  }

  .contact-info-section {
    padding-left: 0;
    margin-top: 2rem;
  }

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

  .donation-type-options,
  .payment-options {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }

  .timeline-item:nth-child(even) {
    flex-direction: row !important;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .timeline-content {
    margin: 0;
    margin-left: 1rem;
  }

  .impact-stats-grid {
    grid-template-columns: 1fr;
  }

  .publication-stats {
    grid-template-columns: 1fr;
  }

  .publication-actions {
    flex-direction: column;
  }

  .publication-actions .btn {
    width: 100%;
  }

  .brand-text-preloader {
    font-size: 2rem;
  }

  .brand-subtitle-preloader {
    font-size: 0.8rem;
  }

  .progress-container {
    width: 250px;
  }
}

@media (max-width: 576px) {
  .sidebar {
    width: 280px;
    left: -280px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .brand-text {
    font-size: 1.2rem;
  }

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

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .request-form-card {
    padding: 2rem;
  }

  .brand-text-preloader {
    font-size: 1.8rem;
  }

  .brand-subtitle-preloader {
    font-size: 0.7rem;
  }

  .progress-container {
    width: 200px;
  }

  .preloader-spinner {
    width: 60px;
    height: 60px;
  }

  .spinner-ring:nth-child(2) {
    width: 45px;
    height: 45px;
    top: 7.5px;
    left: 7.5px;
  }

  .spinner-ring:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 15px;
    left: 15px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}
