/* ===================================
   MODERN ENGLISH IN 7 BOXES WEBSITE
   Purple Theme with Glass Effects
   =================================== */

/* Root Variables */
:root {
    --primary-purple: #7C3AED;
    --secondary-purple: #A78BFA;
    --dark-purple: #5B21B6;
    --light-purple: #DDD6FE;
    --purple-glow: rgba(124, 58, 237, 0.5);
    --bg-dark: #0F0A1E;
    --bg-darker: #070312;
    --text-light: #FFFFFF;
    --text-gray: #CBD5E1;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    --gradient-2: linear-gradient(135deg, #A78BFA 0%, #EC4899 100%);
    --gradient-3: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==================
   PARALLAX BACKGROUND
   ================== */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                var(--dark-purple) 0%, 
                var(--bg-dark) 25%, 
                var(--bg-darker) 100%);
    z-index: -1;
    transition: background 0.3s ease;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--purple-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* ==================
   NAVIGATION
   ================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(15, 10, 30, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(124, 58, 237, 0.15) 0%, 
                rgba(91, 33, 182, 0.1) 50%, 
                rgba(124, 58, 237, 0.15) 100%);
    z-index: -1;
    pointer-events: none;
    animation: navGlow 3s ease-in-out infinite;
}

@keyframes navGlow {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.navbar.scrolled {
    background: rgba(15, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.3);
    border-bottom: 1px solid rgba(124, 58, 237, 0.4);
}

.navbar.scrolled::before {
    background: linear-gradient(135deg, 
                rgba(124, 58, 237, 0.2) 0%, 
                rgba(91, 33, 182, 0.15) 50%, 
                rgba(124, 58, 237, 0.2) 100%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--purple-glow));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-light);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

.nav-cta {
    background: var(--gradient-1);
    border-radius: 25px;
    padding: 10px 25px !important;
    box-shadow: 0 4px 15px var(--purple-glow);
}

.nav-cta::before {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--purple-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================
   GLASS CARD EFFECT
   ================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    border-color: var(--secondary-purple);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
}

/* ==================
   GRADIENT TEXT
   ================== */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==================
   HERO SECTION
   ================== */
/* Recommended Banner Image Dimensions:
   - Primary: 1920x1080px (16:9 ratio)
   - Alternative: 1920x1200px (16:10 ratio)
   - Format: JPG or PNG
   - Optimized size: 200-500KB
   See BANNER_IMAGE_GUIDE.md for detailed specifications */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 70px; /* Account for fixed navbar height */
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 70px; /* Position below navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px); /* Full screen minus navbar */
    z-index: 0;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--bg-dark);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* For tablets - fill more of the screen */
@media (min-width: 769px) and (max-width: 1023px) {
    .slide {
        background-size: cover;
        background-position: center center;
    }
}

/* For tablets and desktops - fill the screen more */
@media (min-width: 1024px) {
    .slide {
        background-size: cover;
        background-position: center center;
    }
}

/* For wider screens, ensure banners fill the screen appropriately */
@media (min-width: 1921px) {
    .slide {
        background-size: cover;
        background-position: center center;
    }
}

/* For ultra-wide screens */
@media (min-aspect-ratio: 21/9) {
    .slide {
        background-size: cover;
        background-position: center center;
    }
}

/* For portrait orientation mobile devices - keep full image visible */
@media (orientation: portrait) and (max-width: 768px) {
    .slide {
        background-size: contain;
        background-position: center center;
    }
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* ==================
   HERO CARD SECTION
   ================== */
.hero-card-section {
    padding: 40px 0 80px 0;
    position: relative;
    margin-top: 0;
    background: var(--bg-dark);
}

.hero-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
}

.hero-card h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    padding: 25px 40px;
    text-align: center;
    min-width: 180px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--secondary-purple);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin: 10px 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--text-gray);
}

/* ==================
   CTA BUTTONS
   ================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--gradient-1);
    color: var(--text-light);
    box-shadow: 0 4px 20px var(--purple-glow);
}

.cta-button.secondary {
    background: transparent;
    border-color: var(--primary-purple);
    color: var(--text-light);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--purple-glow);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* ==================
   SLIDER CONTROLS
   ================== */
.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    width: 30px;
    border-radius: 6px;
}

/* ==================
   SECTIONS
   ================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    margin: 20px auto;
    border-radius: 2px;
}

/* ==================
   ANIMATIONS
   ================== */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================
   INTRO SECTION
   ================== */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.intro-text {
    padding: 40px;
}

.intro-text .lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-purple);
}

.intro-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 25px;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ==================
   VIDEO SECTION
   ================== */
.video-section {
    background: rgba(91, 33, 182, 0.1);
}

.video-section .section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

.video-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.video-card-four {
    padding: 0;
    overflow: hidden;
}

.video-card-four .student-video {
    width: 100%;
    height: auto;
    min-height: 200px;
    border-radius: 15px 15px 0 0;
    background: #000;
    display: block;
    transition: transform 0.3s ease;
}

.video-card-four:hover .student-video {
    transform: scale(1.02);
}

.video-card-four .video-info {
    padding: 20px;
    text-align: center;
}

.video-card-four .video-info h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.video-card-four .video-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.video-placeholder {
    margin-top: 40px;
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--secondary-purple);
    margin-bottom: 20px;
}

.video-placeholder p {
    font-size: 1.2rem;
}

/* ==================
   STUDENT TRANSFORMATIONS
   ================== */
.transformations-section {
    background: var(--bg-dark);
}

.transformations-section .section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

.transformations-section .video-card {
    padding: 0;
    overflow: hidden;
}

.student-video {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
    background: #000;
    display: block;
    transition: transform 0.3s ease;
}

.transformations-section .video-card:hover .student-video {
    transform: scale(1.02);
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.video-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ==================
   CTA SECTION
   ================== */
.cta-section {
    background: rgba(124, 58, 237, 0.05);
}

.cta-card {
    text-align: center;
    padding: 60px 40px;
}

.cta-card h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================
   PAGE HEADER
   ================== */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, transparent 100%);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* ==================
   ABOUT SECTION
   ================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.about-image {
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 94%;
    display: flex;
    align-items: stretch;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.8) 0%, rgba(236, 72, 153, 0.8) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.overlay-content p {
    font-size: 1.2rem;
    font-weight: bold;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--secondary-purple);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ==================
   AWARDS SECTION
   ================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.award-card {
    padding: 40px;
    text-align: center;
}

.award-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.award-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.award-card p {
    color: var(--text-gray);
}

/* ==================
   MISSION SECTION
   ================== */
.mission-section {
    background: rgba(91, 33, 182, 0.1);
}

.mission-card {
    text-align: center;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    animation: heartbeat 2s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.mission-card h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-card .lead {
    font-size: 1.2rem;
    color: var(--secondary-purple);
    margin-bottom: 20px;
}

/* ==================
   STATS SECTION
   ================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    padding: 40px;
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.stat-number {
    font-size: 3rem;
    margin-bottom: 10px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    color: var(--text-gray);
}

/* ==================
   METHOD / BOXES SECTION
   ================== */
.method-intro-card {
    text-align: center;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.method-intro-card h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.method-intro-card .lead {
    font-size: 1.2rem;
    color: var(--secondary-purple);
    margin-bottom: 20px;
}

.method-intro-card h3 {
    font-size: 2rem;
    margin-top: 30px;
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Center the last box (Mastery Box) */
.boxes-grid .box-card:nth-child(7) {
    grid-column: 2 / 3;
}

.box-card {
    padding: 35px;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 1px 8px rgba(124, 58, 237, 0.2);
}

.box-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(124, 58, 237, 0.1) 0%, 
                transparent 50%,
                rgba(124, 58, 237, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s ease;
}

.box-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.4),
                0 5px 20px rgba(124, 58, 237, 0.3),
                inset 0 0 20px rgba(124, 58, 237, 0.1);
}

.box-card:hover::before {
    background: linear-gradient(135deg, 
                rgba(124, 58, 237, 0.2) 0%, 
                rgba(167, 139, 250, 0.1) 50%,
                rgba(124, 58, 237, 0.15) 100%);
}

.box-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px var(--purple-glow),
                0 8px 25px rgba(124, 58, 237, 0.3);
    transform: translateZ(20px);
    transition: all 0.3s ease;
}

.box-card:hover .box-number {
    transform: translateZ(30px) scale(1.1);
    box-shadow: 0 6px 20px var(--purple-glow),
                0 12px 35px rgba(124, 58, 237, 0.5);
}

.box-icon {
    width: 70px;
    height: 70px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--secondary-purple);
    transform: translateZ(15px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.box-card:hover .box-icon {
    transform: translateZ(25px) scale(1.15);
    background: rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.box-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.box-card p {
    color: var(--text-gray);
}

/* ==================
   FEATURES GRID
   ================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    padding: 40px;
    text-align: center;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==================
   GALLERY SCROLL SECTION
   ================== */
.gallery-scroll-section {
    padding: 80px 0;
    overflow: hidden;
}

.gallery-scroll-section .section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

.gallery-scroll-wrapper {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.gallery-scroll-wrapper::before,
.gallery-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.gallery-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.gallery-scroll-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 40s linear infinite;
    width: fit-content;
}

.gallery-scroll-track:hover {
    animation-play-state: paused;
}

.gallery-scroll-track img {
    height: 250px;
    width: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--glass-border);
}

.gallery-scroll-track img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
    border-color: var(--primary-purple);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==================
   GALLERY SECTION
   ================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Center the last two gallery items */
.gallery-grid .gallery-item:nth-last-child(2) {
    grid-column: 2 / 3;
}

.gallery-grid .gallery-item:nth-last-child(1) {
    grid-column: 3 / 4;
}

.gallery-item {
    position: relative;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 58, 237, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.gallery-modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.modal-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
}

.modal-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: var(--primary-purple);
    transform: scale(1.1);
}

/* ==================
   TESTIMONIALS
   ================== */
.testimonials-intro {
    text-align: center;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.intro-card .lead {
    font-size: 1.2rem;
    color: var(--secondary-purple);
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
    position: relative;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #FCD34D;
    font-size: 0.9rem;
}

/* ==================
   VIDEO TESTIMONIALS
   ================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    padding: 0;
}

.video-thumbnail {
    padding: 80px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
}

.video-thumbnail i {
    font-size: 4rem;
    color: var(--secondary-purple);
    margin-bottom: 15px;
}

.video-thumbnail p {
    font-size: 1.1rem;
}

/* ==================
   ENROLLMENT PAGE
   ================== */
.who-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.who-card {
    padding: 35px;
    text-align: center;
}

.who-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.who-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.who-card p {
    color: var(--text-gray);
}

/* ==================
   ENROLLMENT FORM
   ================== */
.enrollment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.enrollment-info {
    padding: 40px;
}

.enrollment-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.benefits-list i {
    color: var(--secondary-purple);
    font-size: 1.3rem;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 25px;
    font-size: 0.95rem;
}

.badge i {
    color: var(--secondary-purple);
}

.enrollment-form {
    padding: 40px;
}

.enrollment-form h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.enrollment-form > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-weight: 500;
}

.form-group label i {
    color: var(--secondary-purple);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ==================
   SUCCESS MODAL
   ================== */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.success-modal.active {
    display: flex;
}

.success-modal .modal-content {
    text-align: center;
    padding: 60px;
    max-width: 500px;
    animation: modalPop 0.5s ease;
}

@keyframes modalPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    animation: successPulse 1s ease infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
}

.success-modal h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.success-modal p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ==================
   FAQ SECTION
   ================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    flex: 1;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--secondary-purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==================
   FOOTER
   ================== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.2rem;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--secondary-purple);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--secondary-purple);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-1);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
}

/* ==================
   RESPONSIVE DESIGN
   ================== */
@media (max-width: 1024px) {
    .hero-card {
        max-width: 900px;
        padding: 50px 40px;
    }

    .hero-card h1 {
        font-size: 3.2rem;
    }

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

    .intro-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .awards-grid,
    .who-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .boxes-grid .box-card:nth-child(7) {
        grid-column: 1 / 3;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid .gallery-item:nth-last-child(2),
    .gallery-grid .gallery-item:nth-last-child(1) {
        grid-column: auto;
    }

    .enrollment-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Transparent navbar on mobile for better appearance */
    .navbar {
        background: rgba(15, 10, 30, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(124, 58, 237, 0.2);
        box-shadow: 0 2px 10px rgba(124, 58, 237, 0.1);
        padding: 10px 0;
    }

    .navbar::before {
        opacity: 0.8;
    }

    .navbar.scrolled {
        background: rgba(15, 10, 30, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(124, 58, 237, 0.4);
    }

    .navbar.scrolled::before {
        display: block;
    }

    /* Hero section: Fixed height for slider on mobile */
    .hero {
        height: 60vh; /* Match slider height */
        min-height: 400px;
        max-height: 500px;
        padding-top: 0; /* Remove padding to eliminate gap */
        margin-top: 70px; /* Offset for fixed navbar height */
        margin-bottom: 0; /* Remove bottom margin */
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .slider-container {
        position: relative;
        top: 0;
        left: 0;
        height: 100%; /* Fill hero container */
        width: 100%;
        margin: 0;
    }

    .slide {
        background-size: contain !important;
        background-position: center center;
        background-attachment: scroll;
        background-color: var(--bg-dark);
        height: 100%;
        width: 100%;
    }

    .hero-card-section {
        padding: 30px 0 60px 0;
    }

    .hero-card {
        max-width: 100%;
        padding: 40px 30px;
    }

    .hero-card h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .hero-stats {
        gap: 25px;
        margin: 40px 0;
    }

    .stat-item {
        padding: 20px 30px;
        min-width: 140px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 10, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 0;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .hero-card h1 {
        font-size: 2.5rem;
    }

    .hero-card {
        padding: 30px 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .awards-grid,
    .stats-grid,
    .who-for-grid {
        grid-template-columns: 1fr;
    }

    .boxes-grid {
        grid-template-columns: 1fr;
    }

    .boxes-grid .box-card:nth-child(7) {
        grid-column: auto;
    }

    .box-card {
        transform: none;
    }

    .box-card:hover {
        transform: translateY(-5px);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid .gallery-item:nth-last-child(2),
    .gallery-grid .gallery-item:nth-last-child(1) {
        grid-column: auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .modal-close {
        right: 20px;
        font-size: 2rem;
    }

    .modal-controls {
        padding: 0 10px;
    }

    .slider-controls {
        bottom: 15px;
        gap: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 25px;
    }
}

@media (max-width: 480px) {
    /* Transparent navbar on small mobile screens */
    .navbar {
        background: rgba(15, 10, 30, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(124, 58, 237, 0.2);
        box-shadow: 0 2px 10px rgba(124, 58, 237, 0.1);
        padding: 10px 0;
    }

    .navbar::before {
        opacity: 0.8;
    }

    .navbar.scrolled {
        background: rgba(15, 10, 30, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(124, 58, 237, 0.4);
    }

    .navbar.scrolled::before {
        display: block;
    }

    /* Hero section: Fixed height for slider on small mobile */
    .hero {
        height: 50vh; /* Match slider height */
        min-height: 350px;
        max-height: 450px;
        padding-top: 0; /* Remove padding to eliminate gap */
        margin-top: 70px; /* Offset for fixed navbar height */
        margin-bottom: 0; /* Remove bottom margin */
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .slider-container {
        position: relative;
        top: 0;
        left: 0;
        height: 100%; /* Fill hero container */
        width: 100%;
        margin: 0;
    }

    .slide {
        background-size: contain !important;
        background-position: center center;
        background-attachment: scroll;
        background-color: var(--bg-dark);
        height: 100%;
        width: 100%;
    }

    .hero-card-section {
        padding: 25px 0 50px 0;
    }

    .hero-card {
        padding: 30px 20px;
    }

    .hero-card h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 15px;
        margin: 30px 0;
        flex-direction: column;
    }

    .stat-item {
        padding: 18px 25px;
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid .gallery-item:nth-last-child(2),
    .gallery-grid .gallery-item:nth-last-child(1) {
        grid-column: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .stat-item h3,
    .stat-number {
        font-size: 2rem;
    }

    .video-grid-four {
        grid-template-columns: 1fr;
    }

    .gallery-scroll-track img {
        height: 180px;
    }

    .slider-controls {
        bottom: 15px;
        gap: 10px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 20px;
    }
}

/* ==================
   MOBILE LANDSCAPE MODE
   ================== */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        height: 70vh; /* Match slider height */
        min-height: 300px;
        max-height: 400px;
        padding-top: 0; /* Remove padding to eliminate gap */
        margin-top: 70px; /* Offset for fixed navbar height */
        margin-bottom: 0; /* Remove bottom margin */
        width: 100%;
        overflow: hidden;
    }

    .slider-container {
        position: relative;
        top: 0;
        height: 100%; /* Fill hero container */
        margin: 0;
    }

    .slide {
        background-size: contain !important;
        background-position: center center;
        background-color: var(--bg-dark);
        width: 100%;
        height: 100%;
    }

    .slider-controls {
        bottom: 15px;
    }
}

/* ==================
   EXTRA SMALL DEVICES
   ================== */
@media (max-width: 375px) {
    .hero {
        height: 45vh; /* Match slider height */
        min-height: 300px;
        max-height: 400px;
        padding-top: 0; /* Remove padding to eliminate gap */
        margin-top: 70px; /* Offset for fixed navbar height */
        margin-bottom: 0; /* Remove bottom margin */
        width: 100%;
        overflow: hidden;
    }

    .slider-container {
        position: relative;
        top: 0;
        height: 100%; /* Fill hero container */
        margin: 0;
    }

    .slide {
        background-size: contain !important;
        background-position: center center;
        background-color: var(--bg-dark);
        width: 100%;
        height: 100%;
    }
}

/* ==================
   UTILITY CLASSES
   ================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* Border Gradient Animation */
@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px var(--purple-glow),
                    0 0 40px var(--purple-glow),
                    inset 0 0 20px rgba(124, 58, 237, 0.1);
    }
    50% {
        box-shadow: 0 0 40px var(--purple-glow),
                    0 0 80px var(--purple-glow),
                    inset 0 0 40px rgba(124, 58, 237, 0.2);
    }
}

.glass-card:hover {
    animation: borderGlow 2s ease infinite;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-purple);
}



