/* ===== Base Styles & Variables ===== */
:root {
  /* Primary Colors */
  --primary-color: #ff6b00;
  --primary-dark: #e55a00;
  --primary-light: #ff8d3f;
  
  /* Secondary Colors */
  --secondary-color: #00b8d4;
  --secondary-dark: #0095b0;
  --secondary-light: #4ddcf7;
  
  /* Accent Colors */
  --accent-color: #8e44ad;
  --accent-dark: #703688;
  --accent-light: #a55fca;
  
  /* Neutral Colors */
  --dark-color: #222222;
  --dark-medium: #333333;
  --medium-color: #666666;
  --light-medium: #999999;
  --light-color: #f8f8f8;
  --white: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  --gradient-dark-overlay: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-circle: 50%;
  --radius-blob: 60% 40% 70% 30% / 60% 30% 70% 40%;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container Widths */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-medium);
  background-color: var(--light-color);
  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(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

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

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

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

/* ===== Layout & Container ===== */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

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

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: var(--space-sm) auto;
  border-radius: var(--radius-sm);
}

/* ===== Buttons & Forms ===== */
.btn, 
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn:hover, 
button:hover,
input[type="submit"]:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn:active,
button:active,
input[type="submit"]:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient-primary);
}

.btn-secondary {
  background: var(--gradient-secondary);
}

.btn-accent {
  background: var(--gradient-accent);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

form {
  margin-bottom: var(--space-lg);
}

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

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--dark-medium);
}

input, 
textarea, 
select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--light-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--white);
  transition: border-color var(--transition-fast);
}

input:focus, 
textarea:focus, 
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-normal);
}

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

.logo h1 {
  margin: 0;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.logo a {
  color: inherit;
}

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

.navigation li {
  margin-left: var(--space-md);
}

.navigation a {
  color: var(--dark-medium);
  font-weight: 600;
  padding: 0.5rem;
  position: relative;
}

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

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

.navigation 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 {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark-medium);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition-normal);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

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

.mobile-menu li {
  margin-bottom: var(--space-sm);
}

.mobile-menu a {
  display: block;
  padding: var(--space-sm) 0;
  color: var(--dark-medium);
  font-weight: 600;
  border-bottom: 1px solid var(--light-medium);
}

.mobile-menu a:hover {
  color: var(--primary-color);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-xxl) 0;
  margin-top: 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== About Section ===== */
.about {
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.about-image {
  flex: 1;
}

.about-image .image-container {
  border-radius: var(--radius-blob);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.about-image:hover .image-container {
  transform: scale(1.02);
  border-radius: 40% 60% 30% 70% / 50% 30% 70% 50%;
}

.about-text {
  flex: 1;
}

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

/* ===== Vision Section ===== */
.vision {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./image/vision-bg-pattern.jpg') repeat;
  opacity: 0.05;
  pointer-events: none;
}

.vision-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.vision-text {
  flex: 1;
}

.vision-image {
  flex: 1;
}

.vision-image .image-container {
  border-radius: var(--radius-blob);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  transition: all var(--transition-normal);
}

.vision-image:hover .image-container {
  transform: rotate(0) scale(1.02);
}

/* ===== Insights Section ===== */
.insights {
  background-color: var(--white);
}

.insights-wrapper {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

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

.stat-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.stat-widget:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  margin-bottom: var(--space-md);
}

.stat-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-circle);
  margin: 0 auto;
}

.stat-content h3 {
  font-size: 2.5rem;
  margin-bottom: var(--space-xs);
  color: var(--primary-color);
}

.insights-text {
  flex: 1;
}

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

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-md);
}

.timeline-item {
  padding: var(--space-md) 0;
  position: relative;
  width: 50%;
  left: 0;
  margin-bottom: var(--space-xl);
}

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

.timeline-dot {
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: var(--white);
  border: 4px solid var(--primary-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -13px;
}

.timeline-content {
  padding: var(--space-lg);
  background-color: var(--white);
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-right: var(--space-xl);
  transition: all var(--transition-normal);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: var(--space-xl);
  margin-right: 0;
}

.timeline-content::after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--white);
  top: 15px;
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::after {
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--white) transparent transparent;
  left: -10px;
  right: auto;
}

.timeline-content:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.timeline-content .image-container {
  margin: var(--space-md) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.timeline-content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.timeline-content:hover img {
  transform: scale(1.05);
}

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

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

.news .card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.news .card-image {
  height: 200px;
  overflow: hidden;
}

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

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

.news .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--dark-color);
}

.news .date {
  color: var(--medium-color);
  font-style: italic;
  margin-top: auto;
}

/* ===== Press Section ===== */
.press {
  background-color: var(--light-color);
}

.press-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.press-image {
  flex: 1;
}

.press-image .image-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.press-image img {
  transition: transform var(--transition-slow);
}

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

.press-text {
  flex: 1;
}

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

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

.resources .card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.resources .card-image {
  height: 200px;
  overflow: hidden;
}

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

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

.resources .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
}

.resources .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--dark-color);
}

.resources .card-content ul {
  padding-left: var(--space-lg);
}

.resources .card-content li {
  margin-bottom: var(--space-xs);
}

.resources .card-content a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.resources .card-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

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

.instructors .card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.instructors .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.instructors .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
}

.instructors .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--dark-color);
}

.instructors .position {
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

/* ===== Partners Section ===== */
.partners {
  background-color: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-xl);
  text-align: center;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

.partner-item .image-container {
  width: 200px;
  height: 200px;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-circle);
  overflow: hidden;
}

.partner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.partner-item:hover img {
  transform: scale(1.05);
}

.partner-item h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--dark-color);
}

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

.events-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.events .timeline-item {
  width: 100%;
  left: 0;
  margin-bottom: var(--space-xl);
}

.events .timeline-item:nth-child(even) {
  left: 0;
}

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

.events .timeline-dot {
  left: 0;
  transform: translateX(-50%);
}

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

.events .timeline-content {
  margin-left: var(--space-xl);
  margin-right: 0;
  display: flex;
  flex-wrap: wrap;
}

.events .timeline-item:nth-child(even) .timeline-content {
  margin-left: var(--space-xl);
  margin-right: 0;
}

.events .timeline-content::after {
  display: none;
}

.events .timeline-date {
  width: 100%;
  margin-bottom: var(--space-sm);
}

.events .timeline-date h3 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-size: 1.25rem;
}

.events .timeline-content h4 {
  width: 100%;
  margin-bottom: var(--space-xs);
  font-size: 1.5rem;
}

.events .location {
  font-style: italic;
  color: var(--medium-color);
  margin-bottom: var(--space-md);
  width: 100%;
}

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

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

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  color: var(--dark-color);
}

.contact-details {
  margin-top: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.contact-item i {
  margin-right: var(--space-md);
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-form {
  flex: 1;
  background-color: var(--light-color);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

.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-sm);
}

.footer-links h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

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

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

.footer-links a {
  color: var(--light-medium);
  transition: color var(--transition-fast);
}

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

.footer-social h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.social-links a {
  color: var(--light-medium);
  transition: color var(--transition-fast);
}

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

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

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

.success-content {
  max-width: 600px;
  padding: var(--space-xl);
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

/* ===== Privacy & Terms Pages ===== */
.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

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

@keyframes morphing {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-morph {
  animation: morphing 8s ease-in-out infinite;
}

/* ===== Media Queries ===== */
@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .about-content,
  .vision-content,
  .insights-wrapper,
  .press-content,
  .contact-wrapper {
    flex-direction: column;
  }
  
  .timeline::before {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-dot {
    left: 31px;
    right: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    left: 31px;
  }
  
  .timeline-content {
    margin-left: 80px;
    margin-right: 0;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
  }
  
  .timeline-content::after,
  .timeline-item:nth-child(even) .timeline-content::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-content {
    padding: var(--space-lg);
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  section {
    padding: var(--space-lg) 0;
  }
  
  .section-title {
    margin-bottom: var(--space-lg);
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .hero-content {
    padding: var(--space-md);
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .news-grid,
  .resources-grid,
  .instructors-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-content {
    padding: var(--space-md);
    margin-left: 60px;
  }
}
.burger-menu, .mobile-menu{
  display: none;
}
@media (max-width: 768px) {
  .desktop-menu{
    display: none!important;
  }

}