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

:root {
  --primary-color: #ffc107;
  --primary-light: #ffd54f;
  --dark-bg: #1a1a2e;
  --darker-bg: #16213e;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-dim: rgba(255, 255, 255, 0.7);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background: var(--dark-bg);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  pointer-events: none !important;
}

.member-photo-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #fff;
  border: 4px solid var(--primary-color);
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page Loader Styles */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  animation: fadeInScale 0.6s ease;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.logo-image-large {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: logoFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(255, 193, 7, 0.3));
}

.logo-text-large {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loader-animation {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.loader-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 193, 7, 0.1);
  border-top-color: #ffc107;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* .loader-spinner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 4px solid rgba(255, 193, 7, 0.2);
  border-top-color: #ffd54f;
  border-radius: 50%;
  animation: spin 1.5s linear infinite reverse;
} */

.loader-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInOut 1.5s ease-in-out infinite;
}

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

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 640px) {
  .logo-image-large {
    width: 80px;
    height: 80px;
  }

  .logo-text-large {
    font-size: 24px;
  }

  .loader-animation {
    width: 60px;
    height: 60px;
  }

  .loader-text {
    font-size: 14px;
  }
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  /* gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color); */
}

.nav-logo a,
.footer-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

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

.donate-link {
  display: none;
}

.donate-btn,
.donate-link {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--dark-bg);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.donate-btn:hover,
.donate-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Hero Slider */
.hero-slider {
  margin-top: 75px;
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  padding: 0 !important;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.75) 0%,
    rgba(22, 33, 62, 0.6) 100%
  );
  z-index: 1;
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease forwards;
}

/* Swiper Navigation Buttons - Modern Style */
.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 60px;
  background: rgba(255, 193, 7, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 193, 7, 0.5);
  border-radius: 50%;
  color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: 900;
}

.heroSwiper:hover .swiper-button-next,
.heroSwiper:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
}

/* Swiper Pagination - Modern Style */
.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 10px;
  background: var(--primary-color);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

/* Ken Burns Effect on Images */
.swiper-slide-active .slide-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Progress Bar (Optional) */
.swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.2);
}

.swiper-pagination-progressbar-fill {
  background: var(--primary-color);
}

/* Responsive */
@media (max-width: 968px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 45px;
    height: 45px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    margin-top: 70px;
    height: 100vh;
    min-height: 500px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.2);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #fff;
}

.hero-content h1 span {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--dark-bg);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

.btn-secondary {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 18px 40px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
}

.btn-secondary:hover {
  background: rgba(255, 193, 7, 0.1);
  gap: 12px;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 2;
}

.slider-btn {
  background: rgba(255, 193, 7, 0.3);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 10px;
}

/* Stats Section */
.stats-section {
  background: var(--dark-bg);
  padding: 80px 0;
  border-top: 1px solid rgba(255, 193, 7, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.stat-number {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-dim);
  font-size: 16px;
}

/* Page Header */
.page-header {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  margin-top: 70px;
  overflow: hidden;
}

/* .page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("slider-3.jpg") center/cover;
  opacity: 0.2;
} */

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.5) 0%,
    rgba(22, 33, 62, 0.3) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header h1 {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.page-header h2 {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.page-header p {
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb span:last-child {
  color: var(--primary-color);
}

/* Section Styles */
section {
  padding: 100px 0;
}

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

.section-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.2);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-image-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.about-image-main img,
.about-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.about-image-main img:hover,
.about-image-grid img:hover {
  transform: scale(1.05);
}

.about-image-main img {
  height: 500px;
}

.about-image-grid img {
  height: 235px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 193, 7, 0.1);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 32px;
}

.feature-item h4 {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 5px;
}

.feature-item p {
  color: var(--text-dim);
  margin: 0;
  font-size: 14px;
}

.about-team {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 15px;
}

.team-member img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}

.team-member h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 3px;
}

.team-member p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
}

.learn-more-btn {
  display: inline-block;
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
}

/* Mission Section */
.mission-section {
  background: var(--dark-bg);
  position: relative;
}

.mission-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mission-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: all 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
}

.mission-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.mission-card h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 15px;
}

.mission-card p {
  color: var(--text-dim);
  line-height: 1.6;
}

/* Donation CTA Section */
.donation-cta-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.donation-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.donation-cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

.cta-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-left h2 {
  font-size: 56px;
  margin-bottom: 25px;
}

.cta-left .highlight {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-left p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: var(--text-light);
}

.cta-right {
  position: relative;
  animation: fadeInRight 1s ease;
}

.impact-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.highlight-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 193, 7, 0.1);
  transform: translateY(-5px);
}

.highlight-item .icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.highlight-item .number {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
}

.highlight-item .label {
  color: var(--text-dim);
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.collage-item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
}

.collage-item:hover {
  transform: scale(1.05) rotate(2deg);
}

.collage-item:first-child {
  grid-row: span 2;
}

.collage-item:nth-child(2) {
  margin-top: 30px;
}

.collage-item:nth-child(3) {
  margin-bottom: 30px;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
}

.collage-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 25px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.collage-item:hover .collage-overlay {
  transform: translateY(0);
}

.collage-overlay h4 {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: 700;
}

.collage-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
  top: 15%;
  right: -10%;
  width: 220px;
}

.floating-card-2 {
  bottom: 10%;
  left: -15%;
  width: 200px;
}

.floating-card .card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.floating-card .card-title {
  color: var(--dark-bg);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.floating-card .card-text {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
}

/* Projects Section */
.projects-section {
  background: var(--dark-bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 193, 7, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
  border-color: var(--primary-color);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-content {
  padding: 30px;
}

.project-category {
  display: inline-block;
  background: rgba(255, 193, 7, 0.2);
  color: var(--primary-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.project-content h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.project-content p {
  color: var(--text-dim);
  line-height: 1.6;
}

/* Events Section */
.events-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: all 0.4s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
}

.event-date {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  min-width: 80px;
  height: fit-content;
}

.date-day {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--dark-bg);
  line-height: 1;
}

.date-month {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-bg);
  margin-top: 5px;
}

.event-content h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.event-content p {
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 15px;
}

.event-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-dim);
}

.event-btn {
  display: inline-block;
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.event-btn:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
}

/* Blog Section */
.blog-section {
  background: var(--dark-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 193, 7, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
  border-color: var(--primary-color);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--dark-bg);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-dim);
}

.blog-content h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 8px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f0f1e 0%, var(--dark-bg) 100%);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  /* gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color); */
  margin-bottom: 20px;
}
.footer-col p {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-3px);
}
.footer-col h4 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: var(--text-dim);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer-col strong {
  color: var(--primary-color);
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 193, 7, 0.1);
  color: var(--text-dim);
}
/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--dark-bg);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.6);
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* Responsive Design */
@media (max-width: 1200px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .floating-card {
    display: none;
  }
}
@media (max-width: 968px) {
  .slide-content {
    align-items: flex-start;
    padding-top: 100px;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: rgba(26, 26, 46, 0.98);
    flex-direction: column;
    padding: 30px;
    transition: left 0.3s ease;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .donate-link {
    display: block;
  }

  .page-header {
    height: 300px;
  }

  .page-header h1 {
    font-size: 42px;
  }

  .page-header h2 {
    font-size: 24px;
    font-weight: 500;
  }

  .donate-btn {
    display: none;
  }

  .hero-content h1 {
    font-size: 42px;
  }

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

  .about-content,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .team-member {
    flex-direction: column;
    text-align: center;
  }

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

  .projects-grid,
  .events-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .section-header h2 {
    font-size: 36px;
  }

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

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-image-main {
    grid-column: 1;
    grid-row: 1;
  }

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

  .cta-buttons,
  .hero-buttons {
    flex-direction: column;
  }

  .event-card {
    flex-direction: column;
  }
}
