/* CSS Variables */
:root {
    /* Pastel Color Palette */
    --primary-color: #a8e6cf;
    --primary-dark: #88c9a8;
    --primary-light: #c8f2df;
    --secondary-color: #ffd3e1;
    --secondary-dark: #e6b3c7;
    --secondary-light: #ffe9f0;
    --accent-color: #ffeaa7;
    --accent-dark: #e5d196;
    --accent-light: #fff4c7;
    --tertiary-color: #a29bfe;
    --tertiary-dark: #918ce4;
    --tertiary-light: #c4c0ff;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #e9ecef;
    --dark-gray: #6c757d;
    --black: #212529;
    
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-muted: #95a5a6;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #a8e6cf 0%, #ffd3e1 50%, #ffeaa7 100%);
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-glass-hover: rgba(255, 255, 255, 0.2);
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    /* Glassmorphism Effects */
    --glass-backdrop: blur(20px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    
    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Archivo Black', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-tooltip: 1070;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

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

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

/* Global Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass-backdrop);
    background: var(--bg-glass);
    box-shadow: var(--glass-shadow);
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-color: var(--primary-dark);
    color: var(--white);
}

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

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.bio-btn {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.bio-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transition: all var(--transition-slow);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.bio-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Glassmorphism Components */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-backdrop);
    border-radius: var(--radius-lg);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.glass-card:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.glass-nav {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-backdrop);
    border: none;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-normal);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 400;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: var(--bg-glass);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: all var(--transition-fast);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
    left: 10%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: heroFadeIn 1.5s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: heroSlideUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 300;
    margin-bottom: var(--spacing-2xl);
    color: var(--white) !important;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: heroSlideUp 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: heroSlideUp 1s ease-out 0.9s both;
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Statistics Section */
.statistics-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: var(--font-size-lg);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Section */
.mission-section {
    padding: var(--spacing-3xl) 0;
}

.mission-content {
    padding: var(--spacing-xl);
}

.mission-text {
    font-size: var(--font-size-lg);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.mission-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon {
    font-size: var(--font-size-xl);
    margin-right: var(--spacing-md);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-text {
    font-weight: 500;
    font-size: var(--font-size-lg);
}

/* Vision Section */
.vision-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.vision-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}

.vision-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.vision-text {
    font-size: var(--font-size-lg);
    font-weight: 300;
    line-height: 1.8;
    color: var(--white) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Instructors/Team Section */
.instructors-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.instructor-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.instructor-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
}

.instructor-name {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.instructor-role {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructor-bio {
    font-size: var(--font-size-base);
    font-weight: 300;
    line-height: 1.6;
}

/* News Section */
.news-section {
    padding: var(--spacing-3xl) 0;
}

.news-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card .card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.news-card .card-content {
    flex: 1;
    padding: var(--spacing-xl);
    text-align: center;
}

.news-date {
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    opacity: 0.7;
}

.news-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

.news-excerpt {
    font-size: var(--font-size-base);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.read-more-btn {
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.read-more-btn:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateX(5px);
}

/* Careers Section */
.careers-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.careers-content {
    border-radius: var(--radius-xl);
    backdrop-filter: var(--glass-backdrop);
}

.careers-description {
    font-size: var(--font-size-lg);
    font-weight: 300;
    line-height: 1.8;
}

.careers-accordion .accordion-item {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: var(--text-primary);
    padding: var(--spacing-lg);
    transition: all var(--transition-fast);
}

.accordion-button:not(.collapsed) {
    background: var(--bg-glass-hover);
    color: var(--primary-color);
}

.accordion-body {
    padding: var(--spacing-lg);
    font-weight: 300;
    line-height: 1.7;
}

/* Resources Section */
.resources-section {
    padding: var(--spacing-3xl) 0;
}

.resource-card {
    text-align: center;
    height: 100%;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.resource-card:hover {
    transform: translateY(-10px) rotateX(5deg);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.resource-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

.resource-description {
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.contact-form {
    border-radius: var(--radius-xl);
    backdrop-filter: var(--glass-backdrop);
}

.form-floating {
    margin-bottom: var(--spacing-lg);
}

.bio-input {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    transition: all var(--transition-fast);
    padding: 1rem;
    font-size: var(--font-size-base);
}

.bio-input:focus {
    background: var(--bg-glass-hover);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(168, 230, 207, 0.25);
    outline: 0;
}

.bio-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-floating > label {
    color: var(--text-secondary);
    font-weight: 500;
}

.invalid-feedback {
    color: #dc3545;
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

/* Footer */
.footer-section {
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-xl) 0;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.footer-brand {
    margin-bottom: var(--spacing-xl);
}

.brand-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--white) !important;
}

.brand-description {
    font-weight: 300;
    line-height: 1.6;
    color: var(--white) !important;
    opacity: 0.9;
}

.footer-links {
    margin-bottom: var(--spacing-xl);
}

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    color: var(--white) !important;
}

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

.footer-menu li {
    margin-bottom: var(--spacing-sm);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 300;
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}

.footer-menu a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.footer-menu a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
    transform: translateY(-50%);
}

.footer-menu a:hover::before {
    width: 10px;
}

.social-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 400;
    font-size: var(--font-size-base);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.social-links a:hover {
    color: var(--white) !important;
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(168, 230, 207, 0.4);
}

.social-links a:hover::before {
    left: 100%;
}

.footer-bottom {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
    font-size: var(--font-size-sm);
    font-weight: 300;
    margin: 0;
    opacity: 0.8;
}

/* Image Styles */
.bio-image {
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bio-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    margin-bottom: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    font-weight: 300;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.8;
}

/* Success Page Styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    padding: var(--spacing-xl);
}

.success-content {
    text-align: center;
    max-width: 600px;
    padding: var(--spacing-3xl) var(--spacing-xl);
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Privacy and Terms Pages */
.content-page {
    padding-top: 120px;
    padding-bottom: var(--spacing-3xl);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-2xl);
    background: var(--bg-glass);
    backdrop-filter: var(--glass-backdrop);
    border-radius: var(--radius-xl);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.content-container h2 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
}

.content-container p, .content-container li {
    font-size: var(--font-size-base);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.content-container ul {
    padding-left: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

/* Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 991.98px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
        --spacing-3xl: 3rem;
        --spacing-2xl: 2rem;
    }
    
    .hero-content {
        padding: var(--spacing-xl);
    }
    
    .parallax {
        background-attachment: scroll;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .stat-card,
    .instructor-card,
    .news-card,
    .resource-card {
        margin-bottom: var(--spacing-xl);
    }
    
    .mission-content,
    .vision-content {
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .container-fluid {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    .glass-card {
        padding: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}