:root {
  --primary-color:  #ffd806;
  --primary-dark: #0a0a12;
    /* --primary-dark: #e55a2e; */
  --primary-light: #ff8052;
  --secondary-color: #0a0a12;
  /* --secondary-color: #1a1a2e; */
  --accent-color: #16213e;
  --accent-2: #2c5aa0;
  --dark-bg: #0f0f1a;
  --darker-bg: #0a0a12;
  --text-light: #ffffff;
  --text-gray: #b0b3b8;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --gradient-1: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  --gradient-2: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  --gradient-3: linear-gradient(45deg, var(--dark-bg), var(--secondary-color));
  --gradient-4: linear-gradient(135deg, var(--accent-2), var(--primary-color));
  --shadow-primary: 0 10px 30px rgba(255, 107, 53, 0.3);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Libertinus Sans", sans-serif;
}

body {
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Enhanced Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--gradient-3);
}

.bg-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(44, 90, 160, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(245, 158, 11, 0.08) 0%,
      transparent 50%
    );
  animation: float 25s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(1deg);
  }
  50% {
    transform: translateY(15px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

/* Enhanced Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 2rem;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo::before {
  content: "⚡";
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-1);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(255, 107, 53, 0.1);
}

/* Enhanced Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.hero-content {
  max-width: 1000px;
  padding: 0 2rem;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  animation: slideInDown 1s ease-out;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 1.5rem;
  background: var(--gradient-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  line-height: 1.1;
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-pillars {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.4s both;
}

.pillar-tag {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  color: var(--success-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin: 2.5rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeIn 1s ease-out 0.6s both;
}

.vision-credit {
  font-style: italic;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-out 0.7s both;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: slideInUp 1s ease-out 0.8s both;
}

.btn {
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.btn-primary {
  background: var(--gradient-1);
  color: var(--text-light);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* Enhanced Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-block {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.08);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  animation: floatingBlocks 18s infinite linear;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.floating-block:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.floating-block:nth-child(1)::before {
  content: "🗳️";
}
.floating-block:nth-child(2) {
  top: 70%;
  left: 88%;
  animation-delay: -6s;
}
.floating-block:nth-child(2)::before {
  content: "⚡";
}
.floating-block:nth-child(3) {
  top: 85%;
  left: 15%;
  animation-delay: -12s;
}
.floating-block:nth-child(3)::before {
  content: "🔗";
}
.floating-block:nth-child(4) {
  top: 25%;
  left: 85%;
  animation-delay: -9s;
}
.floating-block:nth-child(4)::before {
  content: "🌱";
}

@keyframes floatingBlocks {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.8;
  }
}

/* Key Pillars Section */
.pillars {
  padding: 8rem 2rem;
  background: var(--secondary-color);
  position: relative;
}

.pillars-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  background: var(--gradient-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.section-subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: var(--text-gray);
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.pillar-card {
  background: var(--gradient-2);
  padding: 3.5rem 2.5rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

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

.pillar-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-dark);
  border-color: var(--primary-color);
}

.pillar-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: block;
}

.pillar-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-weight: 700;
}

.pillar-card p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* About Section */
.about {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.about-card {
  background: var(--gradient-2);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.about-card p,
.about-card ul {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-card ul {
  list-style: none;
  padding-left: 0;
}

.about-card li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.about-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Community Section */
.community {
  padding: 8rem 2rem;
  background: var(--secondary-color);
  text-align: center;
}

.community-container {
  max-width: 1200px;
  margin: 0 auto;
}

.community-description {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.involvement-card {
  background: var(--gradient-2);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.involvement-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.involvement-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.involvement-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

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

.involvement-btn {
  background: var(--gradient-1);
  color: var(--text-light);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.involvement-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Stats Section */
.stats {
  padding: 6rem 2rem;
  background: var(--dark-bg);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.stat-item {
  padding: 2rem;
  background: var(--gradient-2);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.stat-item p {
  font-size: 1.2rem;
  color: var(--text-gray);
  font-weight: 600;
}

/* Enhanced Footer */
.footer {
  background: var(--darker-bg);
  padding: 5rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(44, 90, 160, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-section {
  padding: 2rem;
  background: rgba(26, 26, 46, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.footer-section:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.footer-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-title::before {
  content: "✨";
  font-size: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(15, 15, 26, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: var(--primary-color);
  transform: translateX(10px);
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-light);
  text-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--gradient-2);
  border-radius: 12px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.social-link:hover {
  background: var(--gradient-1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary-color);
}

.social-link i {
  font-size: 1.3rem;
  min-width: 20px;
}

.social-link span {
  font-weight: 600;
}

.footer-cta {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-align: center;
}

.footer-cta h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

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

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-1);
  color: var(--text-light);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.footer-divider {
  height: 2px;
  background: var(--gradient-1);
  border-radius: 1px;
  margin: 3rem 0;
  position: relative;
}

.footer-divider::before {
  content: "⚡";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--darker-bg);
  padding: 0 1rem;
  font-size: 1.2rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.footer-text {
  text-align: left;
}

.footer-text p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-text strong {
  color: var(--text-light);
}

.footer-quotes {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

.footer-quotes p {
  color: var(--primary-color);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.powered-by {
  text-align: center;
  padding: 2rem;
  background: var(--gradient-2);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.powered-by:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.powered-text {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.love-basket-link {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.love-basket-link:hover {
  transform: translateY(-3px);
}

.love-basket-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.love-basket-logo i {
  font-size: 2rem;
  color: #e91e63;
  animation: heartbeat 2s ease-in-out infinite;
}

.love-basket-logo span {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e91e63, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.foundation-tagline {
  color: var(--text-gray);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1rem 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .contact-item {
    padding: 1rem;
  }

  .footer-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 1.5rem;
  }

  .footer-title {
    font-size: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .contact-item i {
    margin-top: 0;
  }
}

/* Enhanced Animations */
@keyframes slideInDown {
  from {
    transform: translateY(-80px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    gap: 1.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

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

  .hero-pillars {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .pillars,
  .about,
  .community,
  .stats {
    padding: 4rem 1rem;
  }

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

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

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

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }

  .logo {
    font-size: 1.8rem;
  }

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

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

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gradient-1);
  z-index: 1001;
  transition: width 0.1s ease;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--gradient-1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}