:root {
  --primary: #5e0101; /* Kappa maroon */
  --secondary: #ffd700; /* Gold */
  --accent: #f7bebe70;
  --light: #f8f9fa;
  --light-bg: #f5f5f5;
  --dark: #1a1a1a;
  --card-bg: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #5e0101;
  overflow-x: hidden;
}

.footer-col li a {
  color: var(--light);
  text-decoration: none;
  transition: var(--transition);
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header.hidden {
  transform: translateY(-100%);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 50px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

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

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

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

.donate-btn {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(94, 1, 1, 0.2);
  margin-right: 10px;
  font-size: 10px;
}

.donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(94, 1, 1, 0.3);
  background-color: #4a0000;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Premium Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #2a0b0b 100%);
  color: white;
  padding-top: 120px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&amp;auto=format&amp;fit=crop&amp;w=1471&amp;q=80")
    center/cover no-repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
}

.primary-cta,
.secondary-cta {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-cta {
  background-color: var(--secondary);
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.primary-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.secondary-cta {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.secondary-cta:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
}

.hero-image-container {
  position: relative;
  perspective: 1000px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transform: rotateY(-15deg) rotateX(5deg) translateZ(50px);
}
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.youtube-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #5e0101db, #5e010185);
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Make sure YouTube iframe covers full area */
#yt-video {
  width: 100%;
  height: 100%;
  min-width: 177.77vh; /* 16:9 ratio */
  min-height: 56.25vw; /* 16:9 ratio */
}
.hero-card {
  position: absolute;
  width: 200px;
  height: 120px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.hero-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.hero-card-text {
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  font-size: 0.9rem;
}

.card-1 {
  top: -30px;
  left: -30px;
  transform: rotate(-10deg);
}

.card-2 {
  bottom: -30px;
  right: -30px;
  transform: rotate(10deg);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  z-index: 2;
}

.scroll-down::after {
  content: "";
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  margin-top: 1rem;
}

/* Mission Section */
.mission-section {

  padding: 80px 0;
  background-color: white;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mission-content {
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mission-text {
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

.mission-highlight {
  background: rgba(94, 1, 1, 0.05);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.mission-highlight p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Benefits Section */

/* Events Section */
.events-section {
  padding: 80px 0;
  background-color: white;
}

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

.events-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.events-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
  position: relative;
  margin-bottom: 10rem;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 2rem);
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 2rem);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--secondary);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: calc(50% - 10px);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: calc(50% - 10px);
}

.timeline-date {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.timeline-text {
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2a0b0b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Volunteer Form Section */
.volunteer-section {
  padding: 8rem 5%;
  background-color: var(--light-bg);
}

.volunteer-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.volunteer-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
}

.volunteer-form .form-group {
  margin-bottom: 1.5rem;
}

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

.volunteer-form input,
.volunteer-form textarea,
.volunteer-form select {
  width: 100%;
  padding: 1rem;
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  transition: var(--transition);
}

.volunteer-form input:focus,
.volunteer-form textarea:focus,
.volunteer-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(94, 1, 1, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.submit-btn {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(94, 1, 1, 0.2);
  background: #4a0000;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.contact-text {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(94, 1, 1, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* Footer */
.footer {
  background-color: var(--primary);
  padding: 80px 0 40px;
  position: relative;
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  align-items: flex-start;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-about {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

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

.footer-links h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* History Section */
.history-section {
  padding: 8rem 5%;
  background-color: white;
  position: relative;
  overflow: hidden;
}

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

.history-header {
  text-align: center;
  margin-bottom: 4rem;
}

.history-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.history-column {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.history-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.history-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.5rem;
}

.history-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.history-column p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Topics Section */
.topics-section .section-title {
  color: white;
}
.topics-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2a0b0b 100%);
  position: relative;
  overflow: hidden;
}

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

.topics-header {
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

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

.topic-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  text-align: center;
  color: white;
}

.topic-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--secondary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.topic-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--secondary);
  font-size: 1.8rem;
  transition: var(--transition);
}

.topic-card:hover .topic-icon {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.1);
}

.topic-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.topic-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Benefits Stats Section */
.benefits-stats-section {
  padding: 8rem 5%;
  background-color: white;
  position: relative;
  overflow: hidden;
}

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

.benefits-stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-intro {
  font-size: 1.2rem;
  color: white;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  text-align: center;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-text p {
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.stat-item {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.benefits-container .section-title {
  color: white;
}
.stat-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

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

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

.benefits-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.benefits-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Events Schedule Section */
.events-schedule-section {
  padding: 8rem 5%;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

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

.events-schedule-header {
  text-align: center;
  margin-bottom: 4rem;
}

.events-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
}

.events-prize {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(94, 1, 1, 0.05);
  border-radius: 15px;
  border: 1px solid var(--primary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.prize-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.prize-text {
  color: var(--text-light);
  line-height: 1.8;
}

/* Sponsors Section */
.sponsors-section {
  padding: 8rem 5%;
  background-color: white;
  position: relative;
  overflow: hidden;
}

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

.sponsors-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sponsors-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
}
img.timeline-icon {
  width: -webkit-fill-available;
  height: 200px;
  object-fit: contain;
}

.timeline-even {
  position: absolute;
  top: 0px;
  transform: translate(54vh, -2vh);
}

.timeline-odd {
  position: absolute;
  top: 0;
  transform: translate(-45vh, -4vh);
}
.sponsors-benefits {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 3rem;
  /* margin-bottom: 4rem; */
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  margin-bottom: 1rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.8;
}

.benefits-list i {
  color: var(--primary);
  margin-top: 0.3rem;
}

.sponsors-tiers {
  display: grid;
  gap: 2rem;
}

.sponsor-tier {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.sponsor-tier:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tier-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tier-price {
  color: var(--primary);
}

.tier-limit {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.tier-benefits h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: var(--primary);
}

.tier-benefits ul {
  list-style: none;
  margin-left: 1rem;
}

.tier-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.tier-benefits li::before {
  content: "ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.padding-left {
  padding-left: 70px;
}

.footer-col ul {
  margin-top: 30px;
  padding-left: 20px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

#home_wave canvas {
    width: 100% !important;
    height: 1060px !important;
    transform: rotate(345deg);
    position: absolute;
    top: -4%;
    right: -44%;
}
/* .history-media-grid iframe{
  margin: 10px 20px 10px;
} */

@media only screen and (max-width: 1440px) {
  .logo-text {
    font-size: 0.8rem !important;
  }

  .logo-container {
    gap: 0;
  }

  .image-gallery {
    margin: 2rem 13px !important;
  }

  .badge-cta-section {
    padding: 4rem 14rem !important;
  }

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

@media only screen and (max-width: 1366px) {
  .nav-links {
    gap: 1rem;
  }
}

@media screen and (max-width: 1280px) and (max-height: 720px) {
  .logo-text {
    display: none;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content,
  .mission-container,
  .contact-container,
  .benefits-content,
  .history-columns {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }

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

  .mission-image {
    order: -1;
    margin-bottom: -1rem;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding: 0 0 0 2rem;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 0;
  }

  .events-timeline::before {
    left: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    position: absolute;
    width: 100%;
    height: 80vh;
    background: #fff;
    top: 80%;
    left: 0;
    flex-direction: column;
    z-index: 999;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
  }

  .nav-links.active li a {
    font-size: 19px;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    justify-content: center;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

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

  .hero-badge {
    font-size: 0.8rem;
  }

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

  .hero {
    min-height: 1160px;
    padding-top: 220px;
    padding-bottom: 250px;
  }

  .mission-section {
    padding: 40px 0;
  }

  .topics-section {
    padding: 40px 0;
  }

  .benefits-section {
    padding: 40px 0 !important;
  }

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

  .events-section {
    padding: 40px 0;
  }

  .last-div {
    margin-bottom: 0 !important;
  }

  .cta-section {
    padding: 40px 0;
  }

  .cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .sponsors-benefits {
    padding: 1rem;
    text-align: center;
  }

  .badge-cta-section {
    padding: 2rem 3rem !important;
  }

  .footer {
    padding: 40px 0;
  }

  .padding-left {
    padding-left: 20px;
  }

  .footer-col {
    padding-left: 20px;
  }

  .footer-bottom {
    padding-top: 40px;
    margin-top: 20px;
  }

  .volunteer-info {
    margin-bottom: -10px !important;
  }

  .contact-section {
    padding: 30px 20px;
    background: white;
  }

  .contact-container {
    gap: 0rem;
  }

  .video-filters {
    justify-content: start !important;
    flex-wrap: nowrap !important;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .filter-btn {
    flex: 0 0 50%;
  }

  .videos-main {
    padding: 30px 0 10px !important;
  }

  .section-image {
    min-height: fit-content !important;
  }
}
