:root {
  /* Color scheme */
  --primary-color: #2c3e50;
  --primary-dark: #1a2530;
  --primary-light: #3d5a73;
  
  --secondary-color: #e74c3c;
  --secondary-dark: #c0392b;
  --secondary-light: #e76f63;
  
  --accent-color: #3498db;
  --accent-dark: #2980b9;
  --accent-light: #5dade2;
  
  --neutral-light: #f5f5f5;
  --neutral-mid: #e0e0e0;
  --neutral-dark: #333333;
  
  --white: #ffffff;
  --black: #000000;
  
  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Transition */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Buttons */
.button,
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.button.primary,
button.primary,
input[type="submit"].primary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.button.primary:hover,
button.primary:hover,
input[type="submit"].primary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.button.secondary,
button.secondary,
input[type="submit"].secondary {
  background-color: var(--accent-color);
  color: var(--white);
}

.button.secondary:hover,
button.secondary:hover,
input[type="submit"].secondary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

/* Section styles */
section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: var(--space-sm) auto 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md) 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: var(--space-sm) 0;
  background-color: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: var(--primary-color);
  text-decoration: none;
}

.logo h1 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop ul li {
  margin-left: var(--space-lg);
}

.nav-desktop ul li a {
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  padding-bottom: var(--space-xs);
}

.nav-desktop ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-normal);
}

.nav-desktop ul li a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.nav-desktop ul li a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: all var(--transition-normal);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md) 0;
  transform: translateY(-100%);
  transition: transform var(--transition-normal);
}

.nav-mobile.active {
  transform: translateY(0);
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile ul li {
  margin-bottom: var(--space-md);
  text-align: center;
}

.nav-mobile ul li a {
  color: var(--primary-color);
  font-weight: 500;
}

.nav-mobile ul li a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--white) !important;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--white) !important;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* About Section */
.about-content,
.vision-content,
.methodology-content,
.community-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.about-image,
.vision-image,
.methodology-image,
.community-image {
  flex: 0 0 50%;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-text,
.vision-text,
.methodology-text,
.community-text {
  flex: 0 0 50%;
}

/* Vision Section */
.vision {
  background-color: var(--neutral-light);
}

/* Portfolio Section */
.portfolio {
  background-color: var(--white);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.filter-button {
  padding: 0.5rem 1.5rem;
  background-color: var(--neutral-light);
  color: var(--primary-color);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.filter-button:hover,
.filter-button.active {
  background-color: var(--secondary-color);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

/* Card Styles */
.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
  transition: transform var(--transition-normal);
}

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

.card-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  margin-bottom: var(--space-sm);
}

/* Methodology Section */
.methodology {
  background-color: var(--neutral-light);
}

/* Success Stories Section */
.success-stories {
  background-color: var(--white);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--neutral-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 var(--space-md);
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--secondary-color);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.carousel-prev,
.carousel-next {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-dark);
}

/* Awards Section */
.awards {
  background-color: var(--neutral-light);
}

.awards-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.award-item {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-normal);
}

.award-item:hover {
  transform: translateY(-10px);
}

.award-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

/* Instructors Section */
.instructors {
  background-color: var(--white);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.instructor-item .card-image {
  height: 350px;
}

.instructor-position {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.instructor-bio {
  font-size: 0.9rem;
}

/* Events Calendar Section */
.events-calendar {
  background-color: var(--neutral-light);
}

.events-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.tab-button:hover,
.tab-button.active {
  background-color: var(--secondary-color);
  color: var(--white);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.event-card {
  display: flex;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--space-md);
  min-width: 100px;
  text-align: center;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

.event-details {
  padding: var(--space-md);
  flex: 1;
}

.event-details h3 {
  margin-bottom: var(--space-xs);
}

.event-details p {
  margin-bottom: var(--space-xs);
}

/* Community Section */
.community {
  background-color: var(--white);
}

/* News Section */
.news {
  background-color: var(--neutral-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.news-date {
  display: block;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.read-more {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--accent-color);
  font-weight: 700;
  position: relative;
  padding-right: 20px;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  transition: transform var(--transition-normal);
}

.read-more:hover {
  color: var(--accent-dark);
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Resources Section */
.resources {
  background-color: var(--white);
}

.resources-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.resource-item {
  background-color: var(--neutral-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.resource-item h3 {
  margin-bottom: var(--space-sm);
}

.resource-item a {
  display: inline-block;
  margin-top: var(--space-sm);
  font-weight: 700;
}

/* Contact Section */
.contact {
  background-color: var(--neutral-light);
}

.contact-content {
  display: flex;
  gap: var(--space-xl);
}

.contact-info,
.contact-form {
  flex: 1;
}

.info-item {
  margin-bottom: var(--space-lg);
}

.info-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--secondary-color);
}

.map {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-row {
  display: flex;
  gap: var(--space-md);
}

.form-row .form-group {
  flex: 1;
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-mid);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: border-color var(--transition-normal);
}

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

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo h2 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.footer-logo p {
  color: var(--neutral-mid);
}

.footer-links h3,
.footer-contact h3,
.social-links h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

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

.footer-links ul li {
  margin-bottom: var(--space-sm);
}

.footer-links ul li a,
.social-links a {
  color: var(--neutral-mid);
  transition: color var(--transition-normal);
}

.footer-links ul li a:hover,
.social-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-contact p {
  margin-bottom: var(--space-sm);
  color: var(--neutral-mid);
}

.social-links {
  margin-top: var(--space-lg);
}

.social-links a {
  display: inline-block;
  margin-right: var(--space-md);
  position: relative;
  padding-left: 24px;
}

.social-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.social-links a[href*="facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e0e0'%3E%3Cpath d='M12 2C6.477 2 2 6.477 2 12c0 5.013 3.693 9.153 8.505 9.876V14.65H8.031v-2.629h2.474v-1.749c0-2.896 1.411-4.167 3.818-4.167 1.153 0 1.762.085 2.051.124v2.294h-1.642c-1.022 0-1.379.969-1.379 2.061v1.437h2.995l-.406 2.629h-2.588v7.247C18.235 21.236 22 17.062 22 12 22 6.477 17.523 2 12 2z'/%3E%3C/svg%3E");
}

.social-links a[href*="twitter"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e0e0'%3E%3Cpath d='M22.162 5.656a8.384 8.384 0 0 1-2.402.658A4.196 4.196 0 0 0 21.6 4c-.82.488-1.719.83-2.656 1.015a4.182 4.182 0 0 0-7.126 3.814 11.874 11.874 0 0 1-8.62-4.37 4.168 4.168 0 0 0-.566 2.103c0 1.45.738 2.731 1.86 3.481a4.168 4.168 0 0 1-1.894-.523v.052a4.185 4.185 0 0 0 3.355 4.101 4.21 4.21 0 0 1-1.89.072A4.185 4.185 0 0 0 7.97 16.65a8.394 8.394 0 0 1-6.191 1.732 11.83 11.83 0 0 0 6.41 1.88c7.693 0 11.9-6.373 11.9-11.9 0-.18-.005-.362-.013-.54a8.496 8.496 0 0 0 2.087-2.165z'/%3E%3C/svg%3E");
}

.social-links a[href*="instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e0e0'%3E%3Cpath d='M12 2c2.717 0 3.056.01 4.122.06 1.065.05 1.79.217 2.428.465.66.254 1.216.598 1.772 1.153a4.908 4.908 0 0 1 1.153 1.772c.247.637.415 1.363.465 2.428.047 1.066.06 1.405.06 4.122 0 2.717-.01 3.056-.06 4.122-.05 1.065-.218 1.79-.465 2.428a4.883 4.883 0 0 1-1.153 1.772 4.915 4.915 0 0 1-1.772 1.153c-.637.247-1.363.415-2.428.465-1.066.047-1.405.06-4.122.06-2.717 0-3.056-.01-4.122-.06-1.065-.05-1.79-.218-2.428-.465a4.89 4.89 0 0 1-1.772-1.153 4.904 4.904 0 0 1-1.153-1.772c-.248-.637-.415-1.363-.465-2.428C2.013 15.056 2 14.717 2 12c0-2.717.01-3.056.06-4.122.05-1.066.217-1.79.465-2.428a4.88 4.88 0 0 1 1.153-1.772A4.897 4.897 0 0 1 5.45 2.525c.638-.248 1.362-.415 2.428-.465C8.944 2.013 9.283 2 12 2zm0 1.802c-2.67 0-2.986.01-4.04.059-.976.045-1.505.207-1.858.344-.466.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.048 1.054-.058 1.37-.058 4.04 0 2.668.01 2.985.058 4.038.045.977.207 1.505.344 1.858.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.04.058 2.668 0 2.985-.01 4.039-.058.976-.045 1.504-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.054.058-1.37.058-4.039 0-2.67-.01-2.986-.058-4.04-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 0 0-.748-1.15 3.098 3.098 0 0 0-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.054-.048-1.37-.058-4.039-.058zm0 3.064A5.133 5.133 0 1 1 12 17.13 5.133 5.133 0 0 1 12 6.864zm0 8.464a3.333 3.333 0 1 0 0-6.666 3.333 3.333 0 0 0 0 6.666zm6.538-8.672a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0z'/%3E%3C/svg%3E");
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: var(--neutral-mid);
  font-size: 0.9rem;
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.success-container {
  max-width: 600px;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-lg);
  color: var(--secondary-color);
}

.success-title {
  margin-bottom: var(--space-md);
}

.success-message {
  margin-bottom: var(--space-lg);
}

/* Privacy and Terms pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

[data-aos="fade-up"],
[data-aos="fade-down"],
[data-aos="fade-left"],
[data-aos="fade-right"] {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-down"] {
  transform: translateY(-50px);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* Media Queries */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .about-content,
  .vision-content,
  .methodology-content,
  .community-content {
    flex-direction: column;
  }
  
  .about-image,
  .vision-image,
  .methodology-image,
  .community-image,
  .about-text,
  .vision-text,
  .methodology-text,
  .community-text {
    flex: 0 0 100%;
  }
  
  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-lg) 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .portfolio-grid,
  .awards-content,
  .instructors-grid,
  .news-grid,
  .resources-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    padding: var(--space-sm);
  }
  
  .event-date .day {
    margin-right: var(--space-xs);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    margin-bottom: var(--space-lg);
  }
  
  .portfolio-filter {
    flex-direction: column;
    align-items: center;
  }
  
  .form-row {
    flex-direction: column;
  }
}