/* === Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --white: #ffffff;
  --light-green: #f0f8f0;
  --soft-green: #e8f5e8;
  --medium-green: #4a7c59;
  --dark-green: #2d5a3d;
  --accent-green: #6b9c7a;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --border-light: #e9ecef;
  --gradient-green: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  opacity: 1;
}

/* === Animations (Standardized) === */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: slideUp 0.8s ease-out both;
}

/* Prevent horizontal scrolling and ensure proper page structure */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
}

body {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
}

/* Animated Elements */
.hero-box .gradient-text {
  animation: slideUp 0.8s ease-out;
}

.hero-box .subtitle {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-box .cta-button,
.hero-box .forum-button {
  animation: slideUp 0.8s ease-out 0.4s both;
}

.section-title {
  animation: slideUp 0.8s ease-out;
}

.section-description {
  animation: slideUp 0.8s ease-out 0.2s both;
}

/* Stats Animation */
.stat-box:nth-child(1) {
  animation: slideUp 0.8s ease-out 0.3s both;
}

.stat-box:nth-child(2) {
  animation: slideUp 0.8s ease-out 0.5s both;
}

.stat-box:nth-child(3) {
  animation: slideUp 0.8s ease-out 0.7s both;
}

/* Cards Animation */
.tutor-card:nth-child(1),
.testimonial:nth-child(1),
.volunteer-block:nth-child(1),
.opportunity-card:nth-child(1),
.mission-point:nth-child(1),
.identity-card:nth-child(1) {
  animation: slideUp 0.8s ease-out 0.3s both;
}

.tutor-card:nth-child(2),
.testimonial:nth-child(2),
.volunteer-block:nth-child(2),
.opportunity-card:nth-child(2),
.mission-point:nth-child(2),
.identity-card:nth-child(2) {
  animation: slideUp 0.8s ease-out 0.5s both;
}

.tutor-card:nth-child(3),
.testimonial:nth-child(3),
.volunteer-block:nth-child(3),
.opportunity-card:nth-child(3),
.mission-point:nth-child(3),
.identity-card:nth-child(3) {
  animation: slideUp 0.8s ease-out 0.7s both;
}

/* Volunteer Sections Animation */
.volunteer-subtitle {
  animation: slideUp 0.8s ease-out;
}

.volunteer-steps,
.volunteer-note {
  animation: slideUp 0.8s ease-out 0.3s both;
}

.volunteer-button,
.forum-button {
  animation: slideUp 0.8s ease-out 0.5s both;
}

/* Opportunities Animation */
.usage-item:nth-child(1) {
  animation: slideUp 0.8s ease-out 0.3s both;
}

.usage-item:nth-child(2) {
  animation: slideUp 0.8s ease-out 0.5s both;
}

.usage-item:nth-child(3) {
  animation: slideUp 0.8s ease-out 0.7s both;
}

.bonus-item:nth-child(1) {
  animation: slideUp 0.8s ease-out 0.4s both;
}

.bonus-item:nth-child(2) {
  animation: slideUp 0.8s ease-out 0.6s both;
}

.bonus-item:nth-child(3) {
  animation: slideUp 0.8s ease-out 0.8s both;
}

/* Instagram Button Animation */
.instagram-button {
  animation: slideUp 0.8s ease-out 0.5s both;
}

/* Navigation Animation */
nav ul li {
  animation: slideUp 0.6s ease-out;
}

nav ul li:nth-child(1) { animation-delay: 0.1s; }
nav ul li:nth-child(2) { animation-delay: 0.2s; }
nav ul li:nth-child(3) { animation-delay: 0.3s; }
nav ul li:nth-child(4) { animation-delay: 0.4s; }
nav ul li:nth-child(5) { animation-delay: 0.5s; }

/* Logo Animation */
.logo {
  animation: slideUp 0.6s ease-out;
}

/* Footer Animation */
.home-footer {
  animation: slideUp 0.8s ease-out 0.3s both;
}

/* Smooth transitions for interactive elements */
a, button, .stat-box, .tutor-card, .testimonial, .volunteer-steps, .volunteer-note, .mission-point, .identity-card, .usage-item, .bonus-item, .opportunity-card, .volunteer-block, .example-card {
  transition: all 0.3s ease;
  will-change: transform, opacity, box-shadow;
}

/* === Header === */
header.home-header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(74, 124, 89, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--accent-green);
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--dark-green);
}

/* Current page highlighting */
nav a.current-page {
  color: var(--dark-green);
  font-weight: 600;
}

nav a.current-page::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--dark-green);
  border-radius: 1px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: width 0.3s ease;
  border-radius: 1px;
}

nav a:hover::after {
  width: 100%;
}

/* === Hero Section === */
.hero-box {
  background: var(--gradient-green);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 50%, #d4e8d4 100%);
  z-index: -1;
}

/* Decorative Circles */
.hero-box::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(45, 90, 61, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.hero-circle-1 {
  position: absolute;
  top: 20%;
  left: -30px;
  width: 120px;
  height: 120px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero-circle-2 {
  position: absolute;
  top: 60%;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(45, 90, 61, 0.06);
  border-radius: 50%;
  z-index: 0;
}

.hero-circle-3 {
  position: absolute;
  bottom: -60px;
  left: 15%;
  width: 180px;
  height: 180px;
  background: rgba(45, 90, 61, 0.09);
  border-radius: 50%;
  z-index: 0;
}

.hero-circle-4 {
  position: absolute;
  top: 10%;
  right: 20%;
  width: 80px;
  height: 80px;
  background: rgba(45, 90, 61, 0.12);
  border-radius: 50%;
  z-index: 0;
}

.hero-circle-5 {
  position: absolute;
  bottom: 20%;
  left: 60%;
  width: 100px;
  height: 100px;
  background: rgba(45, 90, 61, 0.07);
  border-radius: 50%;
  z-index: 0;
}

/* Ensure hero content stays above circles */
.hero-box .gradient-text,
.hero-box .subtitle,
.hero-box .cta-button,
.hero-box .forum-button {
  position: relative;
  z-index: 1;
}

/* === Smaller Hero for Other Pages === */
.hero-box.small-hero {
  padding: 80px 20px;
}

.hero-box.small-hero .gradient-text {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-box.small-hero .subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Smaller circles for small hero */
.hero-box.small-hero .hero-circle-1 {
  width: 80px;
  height: 80px;
}

.hero-box.small-hero .hero-circle-2 {
  width: 100px;
  height: 100px;
}

.hero-box.small-hero .hero-circle-3 {
  width: 120px;
  height: 120px;
}

.hero-box.small-hero .hero-circle-4 {
  width: 60px;
  height: 60px;
}

.hero-box.small-hero .hero-circle-5 {
  width: 70px;
  height: 70px;
}

.gradient-text {
  font-size: 56px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 24px;
  line-height: 1.2;
}

.subtitle {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: var(--dark-green);
  color: white;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(45, 90, 61, 0.3);
  transition: all 0.3s ease;
  border: 2px solid var(--dark-green);
}

.cta-button:hover {
  background: white;
  color: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(45, 90, 61, 0.4);
}

/* === Sections === */
.alt-section {
  padding: 100px 20px;
  text-align: center;
}

.alt-section.light {
  background: var(--white);
}

.alt-section.dark {
  background: var(--light-green);
}

.section-title {
  font-size: 42px;
  color: var(--dark-green);
  margin-bottom: 24px;
  font-weight: 700;
}

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

/* === Stats / Boxes === */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.stat-box {
  flex: 1 1 280px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--dark-green);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.stat-box h2 {
  color: var(--dark-green);
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 700;
}

.stat-box p {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 500;
}

.icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--accent-green);
}

/* === Tutor Cards === */
.tutors-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.tutor-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--dark-green);
  text-align: center;
}

.tutor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.tutor-card h3 {
  color: var(--dark-green);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.tutor-subjects,
.tutor-email,
.tutor-location {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.tutor-subjects strong,
.tutor-email strong,
.tutor-location strong {
  color: var(--dark-green);
  font-weight: 600;
}

/* === Volunteer Sections === */
.volunteer-subtitle {
  font-size: 28px;
  color: var(--dark-green);
  margin-bottom: 20px;
  font-weight: 600;
}

.volunteer-steps {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  margin-top: 30px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--dark-green);
  transition: all 0.3s ease;
}

.volunteer-steps:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.volunteer-steps h4,
.volunteer-note h4 {
  color: var(--dark-green);
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}

.volunteer-note {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  margin-top: 30px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--dark-green);
  transition: all 0.3s ease;
}

.volunteer-note:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.announcement-box {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--soft-green) 100%);
  border: 2px solid var(--dark-green);
  border-radius: 12px;
  padding: 24px;
  margin: 30px 0;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(45, 90, 61, 0.15);
}

.announcement-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 61, 0.2);
  border-color: var(--accent-green);
}

.announcement-box p {
  margin: 8px 0;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.5;
}

.announcement-title {
  color: var(--dark-green);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.announcement-box p:first-child {
  font-size: 18px;
  margin-bottom: 12px;
}



.instagram-icon {
  font-size: 18px;
  vertical-align: middle;
}

.down-arrow {
  font-size: 24px;
  font-weight: bold;
  animation: bounce 2s infinite;
  display: inline-block;
  color: #dc3545;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.volunteer-button {
  display: inline-block;
  background: var(--dark-green);
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--dark-green);
  font-weight: 600;
}

.volunteer-button:hover {
  background: white;
  color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 61, 0.2);
}

.volunteer-cta {
  max-width: 700px;
  margin: auto;
}

/* === About Page === */
.mission-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mission-point {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--dark-green);
  transition: all 0.3s ease;
}

.mission-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.mission-point h3 {
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.who-we-are {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.identity-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--dark-green);
  transition: all 0.3s ease;
}

.identity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.identity-card h3 {
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

/* === Forum Page === */
.forum-example {
  margin-top: 40px;
}

.example-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--border-light);
}

.example-card h3 {
  color: var(--dark-green);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.example-card p {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-muted);
}

.example-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-style: italic;
  color: var(--text-muted);
}

.forum-form-container {
  max-width: 700px;
  margin: 40px auto 0;
}

.forum-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-green);
  font-weight: 600;
  font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-button {
  background: var(--dark-green);
  color: white;
  padding: 16px 32px;
  border: 2px solid var(--dark-green);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: white;
  color: var(--dark-green);
  transform: translateY(-2px);
}

/* === Volunteer Forum Blocks === */
.volunteer-forum {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.volunteer-block {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--dark-green);
  transition: all 0.3s ease;
  text-align: left;
}

.volunteer-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.volunteer-block h3 {
  color: var(--dark-green);
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.volunteer-block p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.volunteer-block strong {
  color: var(--dark-green);
  font-weight: 600;
}

.volunteer-block .contact {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-weight: 600;
  color: var(--accent-green);
}

/* === Opportunities Page === */
.usage-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.usage-item {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--dark-green);
  transition: all 0.3s ease;
}

.usage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.usage-item p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.opportunity-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--dark-green);
  transition: all 0.3s ease;
}

.opportunity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.opportunity-card h3 {
  color: var(--dark-green);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.deadline {
  color: #dc3545;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bonus-opportunities {
  max-width: 700px;
  margin: 40px auto 0;
}

.bonus-item {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--dark-green);
  transition: all 0.3s ease;
}

.bonus-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.bonus-item p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === Testimonials === */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.08);
  border: 1px solid var(--dark-green);
  transition: all 0.3s ease;
  text-align: center;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 90, 61, 0.15);
  border-color: var(--accent-green);
}

.testimonial h3 {
  color: var(--dark-green);
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
}

.testimonial p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* === Instagram Button === */
.instagram-button {
  display: inline-block;
  margin-top: 30px;
  background: var(--dark-green);
  color: white;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(45, 90, 61, 0.3);
  transition: all 0.3s ease;
  border: 2px solid var(--dark-green);
  font-weight: 600;
}

.instagram-button:hover {
  background: white;
  color: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(45, 90, 61, 0.4);
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-buttons .forum-button {
  margin-top: 0;
}

/* Forum Button Styles */
.forum-button {
  display: inline-block;
  background: linear-gradient(135deg, #2d5a27, #1e3a1a);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #2d5a27;
  margin-top: 20px;
}

.forum-button:hover {
  background: linear-gradient(135deg, #1e3a1a, #2d5a27);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.3);
}

.forum-button:active {
  transform: translateY(0);
}

/* === Footer === */
footer.home-footer {
  background: var(--dark-green);
  color: white;
  text-align: center;
  padding: 40px 0;
  font-size: 16px;
  margin-top: auto;
  width: 100%;
}

footer.home-footer p:first-child {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

footer.home-footer p:last-child {
  font-size: 14px;
  opacity: 0.9;
}

/* === Filter Section === */
.filter-section {
  margin-bottom: 40px;
  text-align: center;
}

.filter-title {
  color: var(--dark-green);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.filter-btn {
  background: var(--white);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  background: var(--light-green);
  color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--dark-green);
  color: white;
  border-color: var(--dark-green);
  box-shadow: 0 4px 15px rgba(45, 90, 61, 0.2);
}

/* Filter Animation */
.opportunity-card {
  transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  opacity: 1;
  transform: scale(1);
  will-change: transform, opacity;
}

.opportunity-card.filtered-out {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.opportunity-card.filtered-in {
  opacity: 1;
  transform: scale(1);
  position: relative;
  visibility: visible;
}

/* === Opportunity Card Hover Effect (Fix) === */
.opportunity-card:hover {
  box-shadow: 0 16px 40px rgba(45, 90, 61, 0.16) !important;
  border-color: var(--accent-green) !important;
  transform: translateY(-6px) scale(1.03) !important;
  transition: all 0.22s cubic-bezier(.4,1.3,.6,1) !important;
  background: var(--white) !important;
  z-index: 2;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .gradient-text {
    font-size: 42px;
  }
  
  .subtitle {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .tutors-container {
    grid-template-columns: 1fr;
  }
  
  .volunteer-forum {
    grid-template-columns: 1fr;
  }
  
  .opportunities-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-points {
    grid-template-columns: 1fr;
  }
  
  .who-we-are {
    grid-template-columns: 1fr;
  }
  
  .usage-guide {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    gap: 20px;
  }
  
  .stat-box {
    flex: 1 1 100%;
  }
  
  nav ul {
    gap: 20px;
  }
  
  .container {
    flex-direction: column;
    gap: 20px;
  }
  
  .forum-form {
    padding: 24px;
  }
  
  .alt-section {
    padding: 60px 20px;
  }
  
  .hero-box {
    padding: 80px 20px;
  }
  
  .hero-box.small-hero {
    padding: 60px 20px;
  }
  
  .hero-box.small-hero .gradient-text {
    font-size: 36px;
  }
  
  .hero-box.small-hero .subtitle {
    font-size: 16px;
  }
}

.founder-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.founder-image-box {
  background: var(--soft-green);
  border: 2px solid var(--dark-green);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(45, 90, 61, 0.10);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  min-width: 220px;
}

.founder-image {
  width: 100%;
  max-width: 260px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.12);
}

.founder-bio-box {
  background: var(--white);
  border: 2px solid var(--medium-green);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(45, 90, 61, 0.08);
  padding: 28px 32px;
  max-width: 500px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder-name {
  color: var(--dark-green);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.founder-email {
  font-weight: 600;
  text-align: center;
  width: 100%;
  display: block;
}

@media (max-width: 900px) {
  .founder-section {
    flex-direction: column;
    gap: 24px;
  }
  .founder-bio-box, .founder-image-box {
    max-width: 100%;
    min-width: 0;
  }
}

.hero-circle-1,
.hero-circle-2,
.hero-circle-3,
.hero-circle-4,
.hero-circle-5 {
  z-index: 1;
}

.volunteer-steps,
.volunteer-note {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.97);
}
