* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif, "Ekush";
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
/* responsive */

/* ============================================
   MOBILE RESPONSIVE - REPLACE EXISTING @media
   ============================================ */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
    font-family: "Ekush", serif;
    font-weight: 400;
  }

  .section-title {
    font-size: 42px;
  }

  .hero-content,
  .about-content,
  .env-card,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .services-grid,
  .video-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (768px and below) - MAIN MOBILE STYLES */
@media (max-width: 768px) {
  /* Hide custom cursor on mobile */
  .custom-cursor,
  .cursor-dot {
    display: none !important;
  }

  /* Navigation - Mobile Menu */
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px 0 0 20px;
    gap: 25px;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    width: 250px;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  body.light-mode .nav-links {
    background: rgba(255, 255, 255, 0.98);
  }

  /* Logo smaller */
  .logo {
    font-size: 18px;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 16px 35px;
    font-size: 16px;
  }

  .hero-image {
    order: -1;
    max-width: 100%;
  }

  .hero-card {
    margin-top: 60px;
    padding: 20px;
  }

  .person-image {
    height: 400px;
  }

  .hero-info-card {
    position: static;
    margin: 15px auto;
    display: inline-block;
    width: auto;
  }

  .info-card-1,
  .info-card-2 {
    position: static;
    transform: none !important;
    margin: 10px;
  }

  /* Section Titles */
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  /* ALL GRIDS - Single Column on Mobile */
  .services-grid,
  .video-grid,
  .news-grid,
  .gallery-grid,
  .testimonials-grid,
  .stats-grid,
  .why-choose-grid,
  .values-grid,
  .donation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Cards Padding */
  .service-card,
  .video-card,
  .news-card,
  .testimonial-card,
  .stat-card,
  .why-card,
  .value-card,
  .donation-card {
    padding: 25px;
    
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  /* Gallery Mobile */
  .gallery-slider-container {
    height: 450px;
  }

  .gallery-slide {
    width: 300px;
    height: 400px;
  }

  .gallery-slide.active {
    transform: translateX(0) translateZ(0) scale(1);
  }

  .gallery-slide.prev-1,
  .gallery-slide.next-1,
  .gallery-slide.prev-2,
  .gallery-slide.next-2 {
    opacity: 0;
    pointer-events: none;
  }

  .gallery-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .gallery-nav.prev {
    left: 10px;
  }

  .gallery-nav.next {
    right: 10px;
  }

  /* Contact Form */
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  /* CTA Section */
  .cta-container {
    padding: 40px 25px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 16px;
  }

  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 32px;
  }

  /* Theme Toggle & Back to Top */
  .theme-toggle,
  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
  }

  .theme-toggle {
    right: 20px;
  }

  .back-to-top {
    left: 20px;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  /* Sections Padding */
  section {
    padding: 60px 5%;
  }

  .services,
  .about,
  .why-choose-section,
  .values-section,
  .donation-section,
  .environmental,
  .video-section,
  .news-section,
  .stats-section,
  .gallery-section,
  .testimonials-section,
  .contact-section,
  .cta-section {
    padding: 60px 5%;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .person-image {
    height: 350px;
  }

  .gallery-slide {
    width: 280px;
    height: 370px;
  }

  .stat-number {
    font-size: 42px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 30px;
    font-size: 15px;
  }

  .service-card,
  .video-card,
  .news-card,
  .testimonial-card,
  .stat-card,
  .why-card,
  .value-card,
  .donation-card {
    padding: 20px;
  }

  .contact-form-wrapper {
    padding: 25px 15px;
  }

  .cta-container {
    padding: 35px 20px;
  }
}

/* Custom Cursor */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #51ff00;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease, background-color 0.25s ease;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: #ff0022;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.8);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-out, background-color 0.2s ease;
}

.custom-cursor.hover {
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 135, 0.1);
  border-color: #60efff;
}

.cursor-dot.hover {
  width: 8px;
  height: 8px;
  background: #60efff;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: rgba(0, 255, 135, 0.3);
  color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00ff87, #60efff);
  border-radius: 10px;
  border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #60efff, #00ff87);
}

body.light-mode ::-webkit-scrollbar-track {
  background: #f5f5f5;
}

body.light-mode ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00b366, #0099cc);
  border-color: #f5f5f5;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff87, #60efff);
  z-index: 9999;
  transform-origin: left;
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.5);
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s, visibility 0.5s;
  pointer-events: none;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 255, 135, 0.1);
  border-top-color: #00ff87;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  font-size: 18px;
  color: #00ff87;
  font-weight: bold;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 255, 135, 0.5);
  border-radius: 50%;
  color: #00ff87;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 40px rgba(0, 255, 135, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: rgba(0, 255, 135, 0.2);
  border-color: #00ff87;
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 255, 135, 0.5);
}

body.light-mode .back-to-top {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 180, 102, 0.5);
  color: #00b366;
  box-shadow: 0 10px 40px rgba(0, 180, 102, 0.2);
}

body.light-mode .back-to-top:hover {
  background: rgba(0, 180, 102, 0.1);
  border-color: #00b366;
  box-shadow: 0 15px 50px rgba(0, 180, 102, 0.3);
}

/* Light Mode Styles */
body.light-mode {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  color: #1a1a1a;
}

body.light-mode nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 180, 102, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .logo {
  background: linear-gradient(135deg, #00b366, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-mode .nav-links a {
  color: #2d3748;
}

body.light-mode .nav-links a:hover {
  color: #00b366;
}

body.light-mode .nav-links a::after {
  background: linear-gradient(90deg, #00b366, #0099cc);
}

/* Light Mode Hero Section */
body.light-mode .hero-background {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

body.light-mode .hero-background::before {
  background-image: linear-gradient(rgba(0, 106, 78, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 106, 78, 0.06) 1px, transparent 1px);
}

body.light-mode .bd-flag-orb-green {
  background: radial-gradient(
    circle,
    rgba(0, 106, 78, 0.08) 0%,
    transparent 70%
  );
}

body.light-mode .bd-flag-orb-red {
  background: radial-gradient(
    circle,
    rgba(244, 42, 65, 0.08) 0%,
    transparent 70%
  );
}

body.light-mode .hero-orb-2 {
  background: radial-gradient(
    circle,
    rgba(244, 42, 65, 0.06) 0%,
    transparent 70%
  );
}

body.light-mode .hero-orb-3 {
  background: radial-gradient(
    circle,
    rgba(0, 106, 78, 0.06) 0%,
    transparent 70%
  );
}

body.light-mode .particle {
  background: #00b366;
  opacity: 0.4;
}

body.light-mode .hero-title {
  background: linear-gradient(135deg, #1a202c 0%, #00b366 50%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: brightness(1) drop-shadow(0 0 10px rgba(0, 180, 102, 0.2));
}

body.light-mode .hero-subtitle {
  color: #4a5568;
}

body.light-mode .btn-primary {
  background: linear-gradient(135deg, #00b366, #0099cc);
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 180, 102, 0.25);
}

body.light-mode .btn-primary:hover {
  box-shadow: 0 20px 60px rgba(0, 180, 102, 0.4);
}

body.light-mode .btn-secondary {
  background: rgba(0, 180, 102, 0.05);
  border-color: rgba(0, 180, 102, 0.3);
  color: #00b366;
}

body.light-mode .btn-secondary:hover {
  background: rgba(0, 180, 102, 0.1);
  border-color: #00b366;
  box-shadow: 0 15px 50px rgba(0, 180, 102, 0.2);
}

body.light-mode .hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 180, 102, 0.15);
  box-shadow: 0 30px 80px rgba(0, 180, 102, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

body.light-mode .hero-card::before {
  background: radial-gradient(
    circle,
    rgba(0, 180, 102, 0.08) 0%,
    transparent 70%
  );
}

body.light-mode .person-image {
  box-shadow: 0 30px 80px rgba(0, 180, 102, 0.2);
}

body.light-mode .hero-info-card {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 180, 102, 0.2);
  box-shadow: 0 15px 50px rgba(0, 180, 102, 0.15);
}

body.light-mode .info-card-value {
  background: linear-gradient(135deg, #00b366, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-mode .info-card-label {
  color: #718096;
}

/* Light Mode Cards */
body.light-mode .service-card,
body.light-mode .video-card,
body.light-mode .news-card,
body.light-mode .news-list-item,
body.light-mode .testimonial-card,
body.light-mode .stat-card,
body.light-mode .why-card,
body.light-mode .value-card,
body.light-mode .donation-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 180, 102, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

body.light-mode .service-card:hover,
body.light-mode .video-card:hover,
body.light-mode .news-card:hover,
body.light-mode .testimonial-card:hover,
body.light-mode .stat-card:hover,
body.light-mode .news-list-item:hover,
body.light-mode .why-card:hover,
body.light-mode .value-card:hover,
body.light-mode .donation-card:hover {
  border-color: #00b366;
  box-shadow: 0 20px 60px rgba(0, 180, 102, 0.15);
  transform: translateY(-10px);
}

body.light-mode .service-icon {
  background: linear-gradient(135deg, #00b366, #0099cc);
  box-shadow: 0 10px 30px rgba(0, 180, 102, 0.2);
}

body.light-mode .service-title,
body.light-mode .video-title,
body.light-mode .news-title,
body.light-mode .donation-title,
body.light-mode .why-title,
body.light-mode .news-list-title,
body.light-mode .news-list-item,
body.light-mode .value-title,
body.light-mode .author-name {
  color: #1a202c;
}

body.light-mode .service-description,
body.light-mode .news-description,
body.light-mode .testimonial-text,
body.light-mode .why-description,
body.light-mode .value-description,
body.light-mode .donation-description {
  color: #4a5568;
}

body.light-mode .service-link {
  color: #00b366;
}

body.light-mode .section-title {
  background: linear-gradient(135deg, #1a202c 0%, #00b366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-mode .sidebar-title {
  background: linear-gradient(135deg, #1a202c 0%, #00b366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-mode .section-subtitle {
  color: #718096;
}

/* Light Mode Sections */
body.light-mode .services {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

body.light-mode .about {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

body.light-mode .about-image {
  box-shadow: 0 30px 80px rgba(0, 180, 102, 0.15);
}

body.light-mode .about-text h2 {
  background: linear-gradient(135deg, #1a202c 0%, #00b366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-mode .about-text p {
  color: #4a5568;
}

body.light-mode .why-choose-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

body.light-mode .why-number {
  color: rgba(0, 180, 102, 0.1);
}

body.light-mode .values-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

body.light-mode .value-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(0, 180, 102, 0.15),
    rgba(0, 153, 204, 0.15)
  );
}

body.light-mode .value-line {
  background: linear-gradient(90deg, #00b366, #0099cc);
}

body.light-mode .donation-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

body.light-mode .donation-badge {
  background: linear-gradient(135deg, #00b366, #0099cc);
  box-shadow: 0 5px 15px rgba(0, 180, 102, 0.3);
}

body.light-mode .donation-category {
  background: rgba(0, 180, 102, 0.1);
  color: #00b366;
}

body.light-mode .feature-item {
  background: rgba(0, 180, 102, 0.05);
  border-color: rgba(0, 180, 102, 0.2);
  color: #00b366;
}

body.light-mode .environmental {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

body.light-mode .env-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 180, 102, 0.1);
  box-shadow: 0 25px 70px rgba(0, 180, 102, 0.1);
}

body.light-mode .env-text h2 {
  color: #0099cc;
}

body.light-mode .env-text p {
  color: #4a5568;
}

body.light-mode .env-image {
  box-shadow: 0 25px 70px rgba(0, 180, 102, 0.2);
}

body.light-mode .stats-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

body.light-mode .stat-number {
  background: linear-gradient(135deg, #00b366, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Light Mode - Vote Progress Card */
body.light-mode .vote-progress-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 180, 102, 0.15);
  box-shadow: 0 10px 40px rgba(0, 180, 102, 0.1);
}

body.light-mode .vote-progress-card:hover {
  border-color: #00b366;
  box-shadow: 0 20px 60px rgba(0, 180, 102, 0.2);
}

body.light-mode .card-header {
  border-bottom-color: rgba(0, 180, 102, 0.15);
}

body.light-mode .card-title {
  background: linear-gradient(135deg, #00b366, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-mode .circle-bg {
  stroke: rgba(0, 180, 102, 0.1);
}

body.light-mode .circle-fill {
  stroke: #00b366;
  filter: drop-shadow(0 0 10px rgba(0, 180, 102, 0.4));
}

body.light-mode .percentage {
  background: linear-gradient(135deg, #00b366, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-mode .label {
  color: #00b366;
}

body.light-mode .card-description {
  color: #4a5568;
  background: rgba(0, 180, 102, 0.05);
  border-color: rgba(0, 180, 102, 0.1);
}

body.light-mode .gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

body.light-mode .gallery-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

body.light-mode .gallery-overlay p {
  color: #00ff87;
}

body.light-mode .testimonials-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

body.light-mode .testimonial-quote {
  color: #00b366;
}

body.light-mode .author-avatar {
  background: linear-gradient(135deg, #00b366, #0099cc);
}

body.light-mode .author-role {
  color: #00b366;
}

body.light-mode .video-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 50%, #ffffff 100%);
}

body.light-mode .video-icon {
  background: linear-gradient(135deg, #ff4757, #ff6b6b);
  box-shadow: 0 15px 40px rgba(255, 71, 87, 0.3);
}

body.light-mode .video-thumbnail {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
}

body.light-mode .play-button {
  background: rgba(255, 255, 255, 0.95);
  color: #00b366;
}

body.light-mode .video-date {
  background: linear-gradient(135deg, #ff4757, #ff6b6b);
}

body.light-mode .news-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

body.light-mode .news-image {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
}

body.light-mode .news-tag {
  background: rgba(0, 180, 102, 0.1);
  color: #00b366;
}
body.light-mode .news-list-date {
  color: #00b366;
}
body.light-mode .contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

body.light-mode .contact-icon {
  background: linear-gradient(135deg, #00b366, #0099cc);
  box-shadow: 0 10px 30px rgba(0, 180, 102, 0.2);
}

body.light-mode .contact-item h4 {
  color: #1a202c;
}

body.light-mode .contact-item p {
  color: #4a5568;
}

body.light-mode .contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 180, 102, 0.1);
  box-shadow: 0 20px 60px rgba(0, 180, 102, 0.1);
}

body.light-mode .form-input,
body.light-mode .form-textarea {
  background: rgba(0, 180, 102, 0.03);
  border-color: rgba(0, 180, 102, 0.15);
  color: #1a202c;
}

body.light-mode .form-input:focus,
body.light-mode .form-textarea:focus {
  border-color: #00b366;
  background: rgba(0, 180, 102, 0.05);
  box-shadow: 0 0 20px rgba(0, 180, 102, 0.15);
}

body.light-mode .form-input::placeholder,
body.light-mode .form-textarea::placeholder {
  color: #a0aec0;
}

body.light-mode .cta-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f7ff 100%);
}

body.light-mode .cta-container {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 180, 102, 0.15);
  box-shadow: 0 30px 80px rgba(0, 180, 102, 0.15);
}

body.light-mode .cta-title {
  background: linear-gradient(135deg, #1a202c 0%, #00b366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-mode .cta-description {
  color: #4a5568;
}

body.light-mode footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 180, 102, 0.1);
}

body.light-mode .footer-text {
  color: #a0aec0;
}

body.light-mode .footer-links a {
  color: #718096;
}

body.light-mode .footer-links a:hover {
  color: #00b366;
}
.chat-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* WhatsApp */
.chat-btn.whatsapp {
    background-color: #25D366;
}

/* Messenger */
.chat-btn.messenger {
    background-color: #0084FF;
}


/* Theme Toggle Button */
.theme-toggle {
  /* position: fixed;
  bottom: 30px;
  right: 30px; */
  /* width: 60px;
  height: 60px; */
  background: linear-gradient(135deg, #00ff87, #60efff);
  padding: 0.2rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 40px rgba(0, 255, 135, 0.4);
  z-index: 1000;
  transition: all 0.3s;
  
  
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 15px 50px rgba(0, 255, 135, 0.6);
}

body.light-mode .theme-toggle {
  background: linear-gradient(135deg, #00b366, #0099cc);
  box-shadow: 0 10px 40px rgba(0, 180, 102, 0.3);
}

body.light-mode .theme-toggle:hover {
  box-shadow: 0 15px 50px rgba(0, 180, 102, 0.5);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

nav.scrolled {
  padding: 15px 5%;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0% 2.5%;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(135deg, #00ff87, #60efff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s;
}

nav.scrolled .logo {
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items:center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover {
  color: #00ff87;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff87, #60efff);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background: #00ff87;
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px 0 0 20px;
    gap: 30px;
    transition: right 0.3s;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    width: 250px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 1000;
    display: flex;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0a;
  overflow: hidden;
}

/* Animated Waves Background */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 255, 135, 0.03) 0%,
    rgba(0, 255, 135, 0.05) 30%,
    transparent 70%
  );
  animation: waveMove 15s linear infinite;
}

.wave:nth-child(2) {
  background: linear-gradient(
    to top,
    rgba(96, 239, 255, 0.02) 0%,
    rgba(96, 239, 255, 0.04) 25%,
    transparent 60%
  );
  animation: waveMove 20s linear infinite reverse;
  opacity: 0.7;
}

.wave:nth-child(3) {
  background: linear-gradient(
    to top,
    rgba(255, 107, 107, 0.02) 0%,
    rgba(255, 107, 107, 0.03) 20%,
    transparent 50%
  );
  animation: waveMove 25s linear infinite;
  opacity: 0.5;
}

@keyframes waveMove {
  0% {
    transform: translateX(0) translateZ(0) scale(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scale(1.1);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scale(1);
  }
}

/* 3D Floating Elements - REMOVED */

/* Section Title Animations */
.section-title {
  text-align: center;
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #00ff87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleEntrance 1s ease-out, titleFloat 4s ease-in-out infinite 1s;
}

@keyframes titleEntrance {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 80px;
  animation: fadeInUp 1.2s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Depth Orbs with Glow */
.depth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbPulse 10s ease-in-out infinite;
}

.orb-1 {
  width: 800px;
  height: 800px;
  top: -20%;
  right: -10%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 135, 0.2) 0%,
    transparent 70%
  );
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  bottom: -15%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(96, 239, 255, 0.15) 0%,
    transparent 70%
  );
  animation-delay: 3s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.1) 0%,
    transparent 70%
  );
  animation-delay: 6s;
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

/* Animated Grid with Perspective */
.hero-background::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(
      rgba(0, 255, 135, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 255, 135, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  transform: perspective(500px) rotateX(60deg);
}

@keyframes gridMove {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(50px);
  }
}

body.light-mode .hero-background::before {
  background-image: linear-gradient(
      rgba(0, 180, 102, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 180, 102, 0.06) 1px, transparent 1px);
}

/* Particle System Enhanced */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ff87;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.8);
  animation: particleFloat 10s linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(10px) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) translateX(90px) scale(1);
  }
  100% {
    transform: translateY(-10vh) translateX(100px) scale(0);
    opacity: 0;
  }
}

/* Particle System */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #006a4e;
  border-radius: 50%;
  animation: particleFloat 10s linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* Bangladesh Cultural Elements */
.bd-pattern-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.02;
  z-index: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(0, 106, 78, 0.3) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(244, 42, 65, 0.3) 0%,
      transparent 25%
    );
  background-size: 800px 800px;
  animation: patternMove 30s ease-in-out infinite;
}

@keyframes patternMove {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 30px);
  }
}

body.light-mode .bd-pattern-bg {
  opacity: 0.04;
}

body.light-mode .particle {
  background: #006a4e;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content img {
 height: 70vh;

}
@media(max-width:1020px){
    .hero-content {
        display: flex;
        flex-direction: column-reverse;
        
    }
    .hero-content img{
        height:70vh;
       
    }
}
@media(max-width:590px){
    .hero-content img{
        object-fit: contain;
        object-position: center;
         height:50vh;
    }
}

.hero-text {
  animation: fadeInLeft 1.2s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Glitch Effect Title */
.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #00ff87 50%, #60efff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 20px rgba(0, 255, 135, 0.3));
  }
  50% {
    filter: brightness(1.2) drop-shadow(0 0 40px rgba(0, 255, 135, 0.6));
  }
}

.hero-title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
  animation: glitch 5s infinite;
}

@keyframes glitch {
  0%,
  90%,
  100% {
    transform: translate(0);
    opacity: 0;
  }
  91% {
    transform: translate(-2px, 2px);
    opacity: 0.5;
  }
  92% {
    transform: translate(2px, -2px);
    opacity: 0.5;
  }
  93% {
    transform: translate(-2px, -2px);
    opacity: 0.5;
  }
  94% {
    transform: translate(0);
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: 24px;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeIn 1.5s ease-out 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  animation: fadeIn 1.8s ease-out 0.6s both;
}

.btn-primary {
  padding: 20px 50px;
  background: linear-gradient(135deg, #00ff87, #60efff);
  border: none;
  border-radius: 50px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 10px 40px rgba(0, 255, 135, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 255, 135, 0.6);
}

.btn-secondary {
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 135, 0.5);
  border-radius: 50px;
  color: #00ff87;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 255, 135, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-secondary:hover {
  background: rgba(0, 255, 135, 0.1);
  border-color: #00ff87;
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 255, 135, 0.3);
}

/* Hero Image Section */
.hero-image {
  position: relative;
  animation: fadeInRight 1.2s ease-out;
  perspective: 1000px;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  border-radius: 40px;
  border: 2px solid rgba(0, 255, 135, 0.3);
  padding: 30px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 80px rgba(0, 255, 135, 0.2);
  position: relative;
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) rotateY(0deg) scale(1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 80px rgba(0, 255, 135, 0.2);
  }
  50% {
    transform: translateY(-20px) rotateY(2deg) scale(1.02);
    box-shadow: 0 70px 140px rgba(0, 0, 0, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 120px rgba(0, 255, 135, 0.4);
  }
}

/* Multiple Glow Layers */
.hero-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    rgba(0, 255, 135, 0.2),
    rgba(96, 239, 255, 0.2),
    rgba(255, 107, 107, 0.1),
    rgba(0, 255, 135, 0.2)
  );
  animation: cardGlow 8s linear infinite;
}

@keyframes cardGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Holographic Border Effect */
.hero-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 40px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    #00ff87 0%,
    #60efff 25%,
    #ff6b6b 50%,
    #00ff87 75%,
    #60efff 100%
  );
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderShine 6s linear infinite;
  opacity: 0.6;
}

@keyframes borderShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}

.person-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 100px rgba(0, 255, 135, 0.4),
    inset 0 0 40px rgba(0, 255, 135, 0.1);
  transition: transform 0.3s;
  filter: brightness(1.05) contrast(1.1);
}

.hero-card:hover .person-image {
  transform: scale(1.03);
  box-shadow: 0 50px 120px rgba(0, 255, 135, 0.5),
    inset 0 0 60px rgba(0, 255, 135, 0.2);
}

/* Floating Info Cards with Depth */
.hero-info-card {
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(0, 255, 135, 0.4);
  border-radius: 25px;
  padding: 25px 30px;
  z-index: 2;
  animation: infoFloat 4s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0, 255, 135, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
}

.info-card-1 {
  top: 15%;
  right: -10%;
  animation-delay: 0s;
  transform: translateZ(50px);
}

.info-card-2 {
  bottom: 20%;
  left: -8%;
  animation-delay: 2s;
  transform: translateZ(50px);
}

@keyframes infoFloat {
  0%,
  100% {
    transform: translateY(0) translateZ(50px);
    box-shadow: 0 20px 60px rgba(0, 255, 135, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: translateY(-20px) translateZ(80px);
    box-shadow: 0 30px 80px rgba(0, 255, 135, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

.info-card-icon {
  font-size: 40px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 135, 0.8));
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.info-card-value {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #00ff87, #60efff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 20px rgba(0, 255, 135, 0.6));
  animation: valueGlow 3s ease-in-out infinite;
}

@keyframes valueGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(0, 255, 135, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(0, 255, 135, 0.9));
  }
}

.info-card-label {
  font-size: 14px;
  color: #b0b0b0;
}

/* Services Section */
.services {
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 135, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(100px);
  animation: serviceFloat1 20s ease-in-out infinite;
}

.services::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(96, 239, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  animation: serviceFloat2 18s ease-in-out infinite;
}

@keyframes serviceFloat1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 50px);
  }
}

@keyframes serviceFloat2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-40px, -40px);
  }
}

body.light-mode .services::before {
  background: radial-gradient(
    circle,
    rgba(0, 180, 102, 0.06) 0%,
    transparent 70%
  );
}

body.light-mode .services::after {
  background: radial-gradient(
    circle,
    rgba(0, 153, 204, 0.05) 0%,
    transparent 70%
  );
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  animation: cardFadeIn 0.8s ease-out backwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 135, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 135, 0.03) 0%,
    transparent 50%
  );
  animation: cardPulse 6s ease-in-out infinite;
  opacity: 0;
}

@keyframes cardPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover::after {
  animation-duration: 2s;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: #00ff87;
  box-shadow: 0 30px 80px rgba(0, 255, 135, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-title {
  text-align: center;
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #00ff87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 135, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #00ff87;
  box-shadow: 0 20px 60px rgba(0, 255, 135, 0.3);
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 135, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-15px) translateZ(30px);
  border-color: #00ff87;
  box-shadow: 0 30px 80px rgba(0, 255, 135, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff87, #60efff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 25px;
  box-shadow: 0 20px 50px rgba(0, 255, 135, 0.4),
    inset 0 2px 10px rgba(255, 255, 255, 0.3);
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #00ff87, #60efff);
  border-radius: 23px;
  z-index: -1;
  filter: blur(15px);
  opacity: 0.7;
}

.service-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-description {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: #00ff87;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 15px;
}

/* About Section */
.about {
  padding: 120px 5%;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 106, 78, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
}

.about::after {
  content: "🏛️";
  position: absolute;
  bottom: 10%;
  left: 5%;
  font-size: 200px;
  opacity: 0;
  transform: rotate(-10deg);
}

body.light-mode .about::after {
  opacity: 0;
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 255, 135, 0.2);
}

.about-text h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #00ff87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 18px;
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 120px 5%;
  background: #0a0a0a;
  position: relative;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: cardZoomIn 0.8s ease-out backwards;
}

@keyframes cardZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.why-card:nth-child(1) {
  animation-delay: 0.1s;
}
.why-card:nth-child(2) {
  animation-delay: 0.2s;
}
.why-card:nth-child(3) {
  animation-delay: 0.3s;
}
.why-card:nth-child(4) {
  animation-delay: 0.4s;
}
.why-card:nth-child(5) {
  animation-delay: 0.5s;
}
.why-card:nth-child(6) {
  animation-delay: 0.6s;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00ff87, #60efff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent rgba(0, 255, 135, 0.1) transparent;
  transition: all 0.5s;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover::after {
  width: 100px;
  height: 100px;
  border-width: 0 0 100px 100px;
}

.why-card:hover {
  transform: translateY(-10px) rotate(1deg);
  border-color: #00ff87;
  box-shadow: 0 25px 70px rgba(0, 255, 135, 0.3);
}

.why-icon {
  font-size: 48px;
  margin-bottom: 25px;
  display: inline-block;
  animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.why-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.why-description {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US SECTION - RESPONSIVE
   "কেন আমাদের বেছে নেবেন?"
   ============================================ */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 100px 5%;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
  }

  .why-card {
    padding: 30px 25px;
  }

  .why-icon {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .why-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .why-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .why-number {
    font-size: 80px;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 5%;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 35px;
  }

  .why-card {
    padding: 25px 20px;
    border-radius: 18px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .why-card::before {
    height: 3px;
  }

  .why-icon {
    font-size: 36px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .why-card-content {
    flex: 1;
  }

  .why-number {
    display: none;
  }

  .why-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .why-description {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .why-choose-section {
    padding: 50px 4%;
  }

  .why-choose-grid {
    gap: 12px;
    margin-top: 30px;
  }

  .why-card {
    padding: 20px 15px;
    border-radius: 15px;
    gap: 12px;
  }

  .why-icon {
    font-size: 32px;
  }

  .why-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .why-description {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* Extra Small (360px) */
@media (max-width: 360px) {
  .why-choose-section {
    padding: 40px 4%;
  }

  .why-choose-grid {
    gap: 10px;
  }

  .why-card {
    padding: 15px 12px;
    border-radius: 12px;
    gap: 10px;
  }

  .why-icon {
    font-size: 28px;
  }

  .why-title {
    font-size: 15px;
  }

  .why-description {
    font-size: 12px;
  }
}

/* Core Values Section */
.values-section {
  padding: 120px 5%;
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  animation: cardFlipIn 0.8s ease-out backwards;
}

@keyframes cardFlipIn {
  from {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  to {
    opacity: 1;
    transform: rotateY(0);
  }
}

.value-card:nth-child(1) {
  animation-delay: 0.1s;
}
.value-card:nth-child(2) {
  animation-delay: 0.2s;
}
.value-card:nth-child(3) {
  animation-delay: 0.3s;
}
.value-card:nth-child(4) {
  animation-delay: 0.4s;
}
.value-card:nth-child(5) {
  animation-delay: 0.5s;
}
.value-card:nth-child(6) {
  animation-delay: 0.6s;
}

.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 135, 0.1));
  transition: height 0.5s;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 135, 0.5),
    rgba(96, 239, 255, 0.5)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #60efff;
  box-shadow: 0 25px 70px rgba(96, 239, 255, 0.3);
}

.value-card:hover::after {
  height: 100%;
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 135, 0.2),
    rgba(96, 239, 255, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: iconPulseScale 3s ease-in-out infinite;
}

@keyframes iconPulseScale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.value-icon {
  font-size: 48px;
  animation: iconSpin 4s ease-in-out infinite;
}

@keyframes iconSpin {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.value-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.value-description {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.value-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00ff87, #60efff);
  margin: 25px auto 0;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

/* Values Section - Tablet Responsive */
@media (max-width: 1024px) {
  .values-section {
    padding: 100px 5%;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
  }

  .value-card {
    padding: 35px 25px;
  }

  .value-icon-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }

  .value-icon {
    font-size: 42px;
  }

  .value-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .value-description {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Values Section - Mobile Responsive (768px and below) */
@media (max-width: 768px) {
  .values-section {
    padding: 60px 5%;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .value-card {
    padding: 30px 20px;
    border-radius: 20px;
    max-width: 100%;
    margin: 0 auto;
  }

  .value-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .value-icon {
    font-size: 40px;
  }

  .value-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .value-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .value-line {
    width: 40px;
    height: 2px;
  }
}

/* Values Section - Small Mobile (480px and below) */
@media (max-width: 480px) {
  .values-section {
    padding: 50px 5%;
  }

  .values-grid {
    gap: 15px;
    margin-top: 30px;
  }

  .value-card {
    padding: 25px 18px;
    border-radius: 18px;
  }

  .value-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .value-icon {
    font-size: 36px;
  }

  .value-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .value-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .value-line {
    width: 35px;
  }
}

/* Values Section - Extra Small (360px and below) */
@media (max-width: 360px) {
  .value-card {
    padding: 20px 15px;
  }

  .value-icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .value-icon {
    font-size: 32px;
  }

  .value-title {
    font-size: 17px;
  }

  .value-description {
    font-size: 13px;
  }
}

/* Donation Programs Section */
.donation-section {
  padding: 120px 5%;
  background: #0a0a0a;
}

.donation-container {
  max-width: 1400px;
  margin: 0 auto;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.donation-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
  animation: cardSlideUp 0.8s ease-out backwards;
}

@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.donation-card:nth-child(1) {
  animation-delay: 0.1s;
}
.donation-card:nth-child(2) {
  animation-delay: 0.2s;
}
.donation-card:nth-child(3) {
  animation-delay: 0.3s;
}
.donation-card:nth-child(4) {
  animation-delay: 0.4s;
}
.donation-card:nth-child(5) {
  animation-delay: 0.5s;
}
.donation-card:nth-child(6) {
  animation-delay: 0.6s;
}

.donation-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #00ff87;
  box-shadow: 0 30px 80px rgba(0, 255, 135, 0.3);
}

.donation-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.donation-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 255, 135, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.donation-card:hover .donation-image-wrapper::after {
  opacity: 1;
}

.donation-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.donation-card:hover .donation-image-wrapper img {
  transform: scale(1.15) rotate(2deg);
}

.donation-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #00ff87, #60efff);
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 255, 135, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.donation-content {
  padding: 35px;
}

.donation-category {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(0, 255, 135, 0.2);
  border-radius: 15px;
  font-size: 12px;
  color: #00ff87;
  font-weight: bold;
  margin-bottom: 15px;
}

.donation-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.donation-description {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 25px;
}

.donation-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  font-size: 14px;
  color: #60efff;
  border: 1px solid rgba(96, 239, 255, 0.3);
}

/* ============================================
   DONATION SECTION - RESPONSIVE
   "অনুদান প্রোগ্রামসমূহ"
   ============================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .donation-section {
    padding: 100px 5%;
  }

  .donation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
  }

  .donation-card {
    max-width: 100%;
  }

  .donation-image-wrapper {
    height: 220px;
  }

  .donation-content {
    padding: 30px;
  }

  .donation-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .donation-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .donation-features {
    gap: 12px;
    margin-bottom: 25px;
  }

  .feature-item {
    font-size: 13px;
    padding: 7px 12px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .donation-section {
    padding: 60px 5%;
  }

  .donation-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .donation-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .donation-image-wrapper {
    height: 200px;
  }

  .donation-badge {
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    font-size: 11px;
  }

  .donation-content {
    padding: 25px 20px;
  }

  .donation-category {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .donation-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .donation-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .donation-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 25px;
  }

  .feature-item {
    font-size: 13px;
    padding: 8px 12px;
    text-align: center;
  }

  .btn-primary {
    width: 100%;
    padding: 16px 35px;
    font-size: 16px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .donation-section {
    padding: 50px 5%;
  }

  .donation-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .donation-image-wrapper {
    height: 180px;
  }

  .donation-badge {
    top: 12px;
    right: 12px;
    padding: 5px 14px;
    font-size: 10px;
  }

  .donation-content {
    padding: 20px 18px;
  }

  .donation-category {
    font-size: 10px;
    padding: 4px 10px;
  }

  .donation-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .donation-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .donation-features {
    gap: 8px;
    margin-bottom: 20px;
  }

  .feature-item {
    font-size: 12px;
    padding: 7px 10px;
  }

  .btn-primary {
    padding: 14px 30px;
    font-size: 15px;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .donation-section {
    padding: 40px 4%;
  }

  .donation-image-wrapper {
    height: 160px;
  }

  .donation-content {
    padding: 18px 15px;
  }

  .donation-title {
    font-size: 17px;
  }

  .donation-description {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .feature-item {
    font-size: 11px;
    padding: 6px 8px;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 14px;
  }
}
/* Environmental Section */
.environmental {
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}

.environmental::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(96, 239, 255, 0.05) 0%,
    transparent 70%
  );
}

.env-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.env-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  border-radius: 40px;
  padding: 60px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.env-image {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(96, 239, 255, 0.3);
}

.env-text h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 25px;
  color: #60efff;
}

.env-text p {
  font-size: 18px;
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Video Section */
.video-section {
  padding: 120px 5%;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.video-header {
  text-align: center;
  margin-bottom: 60px;
}

.video-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff0050, #ff6b6b);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(255, 0, 80, 0.4);
}

.video-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
  cursor: pointer;
  animation: videoFadeIn 0.8s ease-out backwards;
}

@keyframes videoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) rotateX(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateX(0);
  }
}

.video-card:nth-child(1) {
  animation-delay: 0.1s;
}
.video-card:nth-child(2) {
  animation-delay: 0.2s;
}
.video-card:nth-child(3) {
  animation-delay: 0.3s;
}
.video-card:nth-child(4) {
  animation-delay: 0.4s;
}
.video-card:nth-child(5) {
  animation-delay: 0.5s;
}
.video-card:nth-child(6) {
  animation-delay: 0.6s;
}

.video-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #ff6b6b;
  box-shadow: 0 20px 60px rgba(255, 0, 80, 0.3);
}

.video-thumbnail {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #2d2d3a, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.video-thumbnail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.2) 0%,
    transparent 70%
  );
  animation: videoGlow 3s ease-in-out infinite;
}

@keyframes videoGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
  position: relative;
  z-index: 1;
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.video-info {
  padding: 25px;
}

.video-date {
  display: inline-block;
  padding: 8px 15px;
  background: linear-gradient(135deg, #ff0050, #ff6b6b);
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 15px;
}

.video-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

/* News Section */
.news-section {
  padding: 120px 5%;
}

.news-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.news-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
  animation: newsSlideIn 0.8s ease-out backwards;
}

@keyframes newsSlideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.news-card:nth-child(1) {
  animation-delay: 0.1s;
}
.news-card:nth-child(2) {
  animation-delay: 0.2s;
}
.news-card:nth-child(3) {
  animation-delay: 0.3s;
}
.news-card:nth-child(4) {
  animation-delay: 0.4s;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 135, 0.1),
    transparent
  );
  transition: left 0.6s;
  z-index: 1;
}

.news-card:hover::before {
  left: 100%;
}

.news-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #00ff87;
  box-shadow: 0 25px 70px rgba(0, 255, 135, 0.3);
}

.news-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #2d2d3a, #1a1a2e);
  transition: all 0.5s;
}
@media(max-width:775px){
.news-image-img{
    object-fit:fill !important;
}
}


.news-card:hover .news-image {
  
  transform: scale(1.05);
}

.news-tag {
  padding: 8px 15px;
  background: rgba(0, 255, 135, 0.2);
  border-radius: 20px;
  font-size: 12px;
  color: #00ff87;
  font-weight: bold;
  display: inline-block;
  animation: tagFloat 3s ease-in-out infinite;
}

@keyframes tagFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.news-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.news-description {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.6;
}

/* ============================================
   NEWS SECTION - CLEAN RESPONSIVE
   ============================================ */

/* Tablet (1024px) */
/*
@media (max-width: 1024px) {
    .news-container {
        grid-template-columns: 1fr;
        display: none;
        gap: 40px;
    }

    .news-card {
        grid-template-columns: 220px 1fr;
    }

    .news-title {
        font-size: 20px;
    }

    .news-sidebar {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile (768px) */
/*
@media (max-width: 768px) {
    .news-section {
        padding: 60px 5%;
    }

    .news-container {
        grid-template-columns: 1fr;
        display: none;
        gap: 25px;
        margin-top: 35px;
    }

    .news-main {
        gap: 15px;
    }

    /* News Card - Smaller & Compact */
/*
    .news-card {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .news-image {
        height: 150px;
        min-height: 150px;
    }

    .news-content {
        padding: 15px;
    }

    .news-meta {
        margin-bottom: 10px;
        gap: 8px;
    }

    .news-tag {
        padding: 4px 10px;
        font-size: 10px;
    }

    .news-title {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .news-description {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Sidebar - SINGLE COLUMN STACK */
/*
    .news-sidebar {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sidebar-title {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .news-list-item {
        padding: 12px 15px;
        border-radius: 12px;
    }

    .news-list-date {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .news-list-title {
        font-size: 14px;
        line-height: 1.3;
    }
}

/* Small Mobile (480px) */
/*
@media (max-width: 480px) {
    .news-section {
        padding: 50px 4%;
    }

    .news-container {
        grid-template-columns: 1fr;
        display: none;
    }
    .news-main {
        gap: 12px;
    }

    .news-card {
        border-radius: 14px;
    }

    .news-image {
        height: 130px;
        min-height: 130px;
    }

    .news-content {
        padding: 12px;
    }

    .news-title {
        font-size: 15px;
    }

    .news-description {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sidebar-title {
        font-size: 18px;
    }

    .news-list-item {
        padding: 10px 12px;
        border-radius: 10px;
    }

    .news-list-title {
        font-size: 13px;
    }
}

/* Extra Small (360px) */
/*
@media (max-width: 360px) {
    .news-image {
        height: 110px;
        min-height: 110px;
    }
    .news-container {
        grid-template-columns: 1fr;
        display: none;
    }
    .news-content {
        padding: 10px;
    }

    .news-title {
        font-size: 14px;
    }

    .news-description {
        font-size: 11px;
    }

    .news-list-item {
        padding: 8px 10px;
    }

    .news-list-title {
        font-size: 12px;
    }
} 
*/
/* Statistics Section */
.stats-section {
  padding: 120px 5%;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px 30px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  animation: statSlideIn 0.8s ease-out backwards;
}

@keyframes statSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}
.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}
.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}
.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff87, #60efff);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 135, 0.1),
    rgba(96, 239, 255, 0.1)
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #00ff87;
  box-shadow: 0 20px 60px rgba(0, 255, 135, 0.3);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #00ff87, #60efff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-number::after {
  content: "+";
  margin-left: 5px;
}

.stat-label {
  font-size: 18px;
  color: #b0b0b0;
}

/* Stats Content Wrapper */
.stats-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  align-items: center;
}

/* Vote Progress Card */
.vote-progress-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.vote-progress-card:hover {
  transform: translateY(-8px);
  border-color: #00ff87;
  box-shadow: 0 20px 60px rgba(0, 255, 135, 0.2);
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #00ff87, #60efff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.4;
}

.progress-circle-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 12;
}

.circle-fill {
  fill: none;
  stroke: url(#progressGradient);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 534.07;
  stroke-dashoffset: 534.07;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 12px rgba(0, 255, 135, 0.6));
}

.circle-fill.animate {
  stroke-dashoffset: 90.78;
}

.progress-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.percentage {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, #00ff87, #60efff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.label {
  font-size: 22px;
  font-weight: 600;
  color: #00ff87;
  letter-spacing: 2px;
}

.card-description {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 25px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}


.video-embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
}

.video-embed-container:hover {
  transform: translateY(-10px);
  border-color: #00ff87;
  box-shadow: 0 20px 60px rgba(0, 255, 135, 0.3);
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 25px;
}

/* Gallery Section */
.gallery-section {
  padding: 120px 5%;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(96, 239, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  animation: galleryFloat 15s ease-in-out infinite;
}

@keyframes galleryFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50px, 50px);
  }
}

/* Premium 3D Slider Container */
.gallery-slider-container {
  max-width: 1400px;
  margin: 60px auto 0;
  position: relative;
  perspective: 1500px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* Gallery Slide Cards */
.gallery-slide {
  position: absolute;
  width: 450px;
  height: 550px;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Active center slide */
.gallery-slide.active {
  transform: translateX(0) translateZ(100px) scale(1.1);
  z-index: 10;
  box-shadow: 0 50px 120px rgba(0, 255, 135, 0.4),
    0 0 80px rgba(0, 255, 135, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 255, 135, 0.5);
}

/* Left slides */
.gallery-slide.prev-1 {
  transform: translateX(-380px) translateZ(-50px) rotateY(25deg) scale(0.9);
  opacity: 0.7;
  z-index: 9;
}

.gallery-slide.prev-2 {
  transform: translateX(-680px) translateZ(-100px) rotateY(35deg) scale(0.75);
  opacity: 0.4;
  z-index: 8;
}

/* Right slides */
.gallery-slide.next-1 {
  transform: translateX(380px) translateZ(-50px) rotateY(-25deg) scale(0.9);
  opacity: 0.7;
  z-index: 9;
}

.gallery-slide.next-2 {
  transform: translateX(680px) translateZ(-100px) rotateY(-35deg) scale(0.75);
  opacity: 0.4;
  z-index: 8;
}

/* Hidden slides */
.gallery-slide.hidden {
  transform: translateX(0) translateZ(-200px) scale(0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* Slide Image */
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-slide.active img {
  transform: scale(1.05);
}

.gallery-slide:hover img {
  transform: scale(1.08);
}

/* Slide Overlay */
.gallery-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.5s;
}

.gallery-slide.active .gallery-slide-overlay {
  transform: translateY(0);
}

.gallery-slide-overlay h3 {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-slide-overlay p {
  font-size: 16px;
  color: #00ff87;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-slide-overlay p::before {
  content: "📍";
  font-size: 18px;
}

/* Badge */
.gallery-slide-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 255, 135, 0.6);
  border-radius: 30px;
  color: #00ff87;
  font-size: 13px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 255, 135, 0.3);
}

/* Navigation Buttons */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.gallery-nav.prev {
  left: 50px;
}

.gallery-nav.next {
  right: 50px;
}

.gallery-nav-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 255, 135, 0.5);
  color: #00ff87;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(0, 255, 135, 0.3);
}

.gallery-nav-btn:hover {
  background: rgba(0, 255, 135, 0.2);
  border-color: #00ff87;
  transform: scale(1.1);
  box-shadow: 0 15px 50px rgba(0, 255, 135, 0.5);
}

.gallery-nav-btn:active {
  transform: scale(0.95);
}

/* Pagination Dots */
.gallery-pagination {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.gallery-dot.active {
  width: 40px;
  border-radius: 10px;
  background: linear-gradient(90deg, #00ff87, #60efff);
  box-shadow: 0 5px 20px rgba(0, 255, 135, 0.5);
}

.gallery-dot:hover {
  background: rgba(0, 255, 135, 0.5);
  transform: scale(1.2);
}

/* Light Mode */
body.light-mode .gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

body.light-mode .gallery-slide {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 180, 102, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

body.light-mode .gallery-slide.active {
  box-shadow: 0 50px 120px rgba(0, 180, 102, 0.3),
    0 0 80px rgba(0, 180, 102, 0.15);
  border-color: rgba(0, 180, 102, 0.6);
}

body.light-mode .gallery-slide-overlay {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98), transparent);
}

body.light-mode .gallery-slide-overlay h3 {
  color: #1a202c;
}

body.light-mode .gallery-slide-overlay p {
  color: #00b366;
}

body.light-mode .gallery-slide-badge {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 180, 102, 0.6);
  color: #00b366;
}

body.light-mode .gallery-nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 180, 102, 0.5);
  color: #00b366;
  box-shadow: 0 10px 40px rgba(0, 180, 102, 0.2);
}

body.light-mode .gallery-nav-btn:hover {
  background: rgba(0, 180, 102, 0.1);
  border-color: #00b366;
  box-shadow: 0 15px 50px rgba(0, 180, 102, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-slider-container {
    height: 500px;
  }

  .gallery-slide {
    width: 380px;
    height: 480px;
  }

  .gallery-slide.active {
    transform: translateX(0) translateZ(50px) scale(1.05);
  }

  .gallery-slide.prev-1 {
    transform: translateX(-320px) translateZ(-30px) rotateY(20deg) scale(0.85);
  }

  .gallery-slide.next-1 {
    transform: translateX(320px) translateZ(-30px) rotateY(-20deg) scale(0.85);
  }

  .gallery-nav.prev {
    left: 20px;
  }

  .gallery-nav.next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-slider-container {
    height: 450px;
    perspective: 1000px;
  }

  .gallery-slide {
    width: 300px;
    height: 400px;
  }

  .gallery-slide.active {
    transform: translateX(0) translateZ(0) scale(1);
  }

  .gallery-slide.prev-1,
  .gallery-slide.next-1 {
    opacity: 0;
    pointer-events: none;
  }

  .gallery-slide.prev-2,
  .gallery-slide.next-2 {
    display: none;
  }

  .gallery-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .gallery-nav.prev {
    left: 10px;
  }

  .gallery-nav.next {
    right: 10px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 5%;
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
  text-align: center;
}

.testimonial-subtitle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 12px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
  text-align: center;
}

.testimonials-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  text-align: left;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #60efff;
  box-shadow: 0 20px 60px rgba(96, 239, 255, 0.3);
}

.testimonial-quote {
  font-size: 80px;
  line-height: 0.5;
  color: #00ff87;
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff87, #60efff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.author-name {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 5px;
}

.author-role {
  font-size: 14px;
  color: #00ff87;
}

/* Contact Section */
.contact-section {
  padding: 120px 5%;
  background: #0a0a0a;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff87, #60efff);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 16px;
  color: #b0b0b0;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 50px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input,
.form-textarea {
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00ff87;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #666;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

/* CTA Section */
.cta-section {
  padding: 120px 5%;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d3a 100%);
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  border-radius: 40px;
  padding: 80px 60px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 135, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 15s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #00ff87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  font-size: 20px;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Footer */
footer {
  padding: 60px 5%;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-text {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00ff87;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content,
  .about-content,
  .env-card,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .video-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vote-progress-card {
    padding: 30px;
  }

  .progress-circle-wrapper {
    width: 220px;
    height: 220px;
  }

  .percentage {
    font-size: 52px;
  }

  .label {
    font-size: 20px;
  }

  .hero-title {
    font-size: 56px;
    font-family: "Ekush", serif;
    font-weight: 400;
    font-style: normal;
  }

  .section-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
  }

  .services-grid,
  .video-grid,
  .news-grid,
  .gallery-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vote-progress-card {
    padding: 25px;
  }

  .card-title {
    font-size: 18px;
  }

  .progress-circle-wrapper {
    width: 200px;
    height: 200px;
  }

  .percentage {
    font-size: 48px;
  }

  .label {
    font-size: 18px;
  }

  .card-description {
    font-size: 14px;
    padding: 15px;
  }

  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 36px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }
}
/* News Section */
.news-section {
  padding: 120px 5%;
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.news-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
  display: grid;
  grid-template-columns: 400px 1fr;
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: #00ff87;
  box-shadow: 0 25px 70px rgba(0, 255, 135, 0.3);
}

.news-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d2d3a, #1a1a2e);
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.news-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image-img {
  transform: scale(1.1);
}

.news-content {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.news-tag {
  padding: 8px 15px;
  background: rgba(0, 255, 135, 0.2);
  border-radius: 20px;
  font-size: 12px;
  color: #00ff87;
  font-weight: bold;
}

.news-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.news-description {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.6;
}

/* News Sidebar */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-title {
  font-size: 28px;
  font-weight: bold;
  color: #00ff87;
  margin-bottom: 10px;
}

.news-list-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.news-list-item:hover {
  border-color: #00ff87;
  transform: translateX(5px);
}

.news-list-date {
  font-size: 12px;
  color: #00ff87;
  margin-bottom: 10px;
  font-weight: bold;
}

.news-list-title {
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
}

/*news section responsive*/

@media (max-width: 1024px) {
  .news-container {
    grid-template-columns: 1fr;
  }
  .news-card {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 768px) {
  .news-section {
    padding: 60px 5%;
  }

  .news-container {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 35px;
  }

  .news-main {
    gap: 15px;
  }

  .news-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .news-image {
    height: 150px;
    min-height: 150px;
  }

  .news-content {
    padding: 15px;
  }

  .news-meta {
    margin-bottom: 10px;
    gap: 8px;
  }

  .news-tag {
    padding: 4px 10px;
    font-size: 10px;
  }

  .news-title {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .news-description {
    font-size: 13px;
    line-height: 1.5;
  }
  .hero-info-card {
    position: static;
    margin: 15px auto;
    display: grid;
    width: auto;
  }
  .info-card-1,
  .info-card-2 {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Anonymous Form Mode Styles */
.personal-info-fields {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  opacity: 1;
  max-height: 500px;
}

.personal-info-fields > input {
  width: 100%;
  margin-bottom: 30px;
}

/* Form Row Split - Email and Phone side by side */
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 100%;
}

.form-row-split .form-input {
  margin-bottom: 0;
  width: 100%;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .form-row-split {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.form-mode-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.form-mode-buttons button {
  padding: 10px 15px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #00ff87;
  color: #ffffff;
  font-weight: bold;
}

.form-mode-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 135, 0.3);
}

.form-mode-buttons button.active {
  background-color: #00ff87;
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.5);
  color: #ffffff;
}

.form-mode-buttons button.inactive {
  background-color: #444;
  color: #ffffff;
}

.form-mode-buttons button.inactive:hover {
  background-color: #555;
  color: #ffffff;
}

.contact-form.anonymous-mode .personal-info-fields {
  display: none;
  opacity: 0;
  max-height: 0;
  margin: 0;
  overflow: hidden;
}

.contact-form.anonymous-mode #submitBtn {
  display: none;
}

.contact-form.anonymous-mode #backBtn {
  display: block !important;
}

.contact-form.anonymous-mode #formName {
  display: none;
}

.contact-form.anonymous-mode #formEmail {
  display: none;
}

.contact-form.anonymous-mode #formPhone {
  display: none;
}

.form-submit-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .form-mode-buttons {
    grid-template-columns: 1fr;
  }

  .form-mode-buttons button {
    font-size: 13px;
    padding: 12px 10px;
  }
}
