/* Animation World - CSS Styles */

/* Import Google Fonts - Must be at the top */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&family=Pacifico&family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Allura&family=Alex+Brush&display=swap');

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8c69;
    
    /* Secondary Colors */
    --secondary-color: #4ecdc4;
    --secondary-dark: #45b7aa;
    --secondary-light: #7dd3cc;
    
    /* Accent Colors */
    --accent-purple: #9b59b6;
    --accent-blue: #3498db;
    --accent-green: #2ecc71;
    
    /* Neutral Colors */
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-accent: #e0e0e0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-blue) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 15px;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-title: 'Great Vibes', 'Allura', 'Alex Brush', 'Dancing Script', cursive;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-dark);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 
        0 0 5px rgba(255, 107, 53, 0.6),
        0 0 10px rgba(255, 107, 53, 0.4),
        0 0 15px rgba(255, 107, 53, 0.2);
    animation: section-title-glow 3s ease-in-out infinite alternate;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(255, 107, 53, 0.4),
        0 0 30px rgba(255, 107, 53, 0.4),
        inset 0 0 20px rgba(255, 107, 53, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-color);
    box-shadow: 
        0 8px 25px rgba(78, 205, 196, 0.2),
        0 0 15px rgba(78, 205, 196, 0.1);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(78, 205, 196, 0.3),
        0 0 25px rgba(78, 205, 196, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===== NAVIGATION STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
}

.nav-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.nav-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
}

.logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 
        0 0 5px rgba(255, 107, 53, 0.8),
        0 0 10px rgba(255, 107, 53, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* ===== HERO SECTION STYLES ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-title) !important;
    font-size: 5rem !important;
    font-weight: 400 !important;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    
    /* Neon glow effect */
    text-shadow: 
        0 0 5px rgba(255, 107, 53, 0.8),
        0 0 10px rgba(255, 107, 53, 0.6),
        0 0 15px rgba(255, 107, 53, 0.4),
        0 0 20px rgba(255, 107, 53, 0.3),
        0 0 35px rgba(255, 107, 53, 0.2);
    
    /* Enhanced glow animation */
    animation: neon-pulse 3s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    0% {
        text-shadow: 
            0 0 5px rgba(255, 107, 53, 0.8),
            0 0 10px rgba(255, 107, 53, 0.6),
            0 0 15px rgba(255, 107, 53, 0.4),
            0 0 20px rgba(255, 107, 53, 0.3),
            0 0 35px rgba(255, 107, 53, 0.2);
        filter: hue-rotate(0deg);
    }
    50% {
        text-shadow: 
            0 0 8px rgba(255, 107, 53, 1),
            0 0 15px rgba(255, 107, 53, 0.8),
            0 0 25px rgba(255, 107, 53, 0.6),
            0 0 35px rgba(255, 107, 53, 0.4),
            0 0 50px rgba(255, 107, 53, 0.3);
        filter: hue-rotate(15deg);
    }
    100% {
        text-shadow: 
            0 0 10px rgba(78, 205, 196, 0.9),
            0 0 20px rgba(78, 205, 196, 0.7),
            0 0 30px rgba(78, 205, 196, 0.5),
            0 0 40px rgba(78, 205, 196, 0.3),
            0 0 60px rgba(78, 205, 196, 0.2);
        filter: hue-rotate(180deg);
    }
}

/* Three.js canvas for title */
.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    border-radius: 10px;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.1), 
        rgba(78, 205, 196, 0.1), 
        rgba(155, 89, 182, 0.1));
    filter: blur(20px);
    animation: neon-bg-pulse 4s ease-in-out infinite;
}

@keyframes neon-bg-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

/* Enhanced subtitle with subtle neon */
.hero-subtitle {
    font-family: var(--font-primary);
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 
        0 0 10px rgba(78, 205, 196, 0.5),
        0 0 20px rgba(78, 205, 196, 0.3);
    animation: subtitle-glow 4s ease-in-out infinite alternate;
}

@keyframes subtitle-glow {
    0% {
        text-shadow: 
            0 0 10px rgba(78, 205, 196, 0.5),
            0 0 20px rgba(78, 205, 196, 0.3);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(78, 205, 196, 0.8),
            0 0 30px rgba(78, 205, 196, 0.5),
            0 0 45px rgba(78, 205, 196, 0.3);
    }
}

/* Missing section-title-glow animation */
@keyframes section-title-glow {
    0% {
        text-shadow: 
            0 0 5px rgba(255, 107, 53, 0.6),
            0 0 10px rgba(255, 107, 53, 0.4),
            0 0 15px rgba(255, 107, 53, 0.2);
        filter: brightness(1);
    }
    100% {
        text-shadow: 
            0 0 10px rgba(255, 107, 53, 0.9),
            0 0 20px rgba(255, 107, 53, 0.7),
            0 0 30px rgba(255, 107, 53, 0.5),
            0 0 40px rgba(255, 107, 53, 0.3);
        filter: brightness(1.2);
    }
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 30px;
}

/* Section Headers with Neon Effects */
/* .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 
        0 0 5px rgba(255, 107, 53, 0.6),
        0 0 10px rgba(255, 107, 53, 0.4),
        0 0 15px rgba(255, 107, 53, 0.2);
    animation: section-title-glow 3s ease-in-out infinite alternate;
} */

/* Section Dividers with Lightning Effects */
.neon-divider {
    position: relative;
    height: 100px;
    width: 100%;
    margin: 50px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neon-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 53, 0.8) 20%, 
        rgba(78, 205, 196, 1) 50%, 
        rgba(155, 89, 182, 0.8) 80%, 
        transparent);
    box-shadow: 
        0 0 10px rgba(255, 107, 53, 0.8),
        0 0 20px rgba(78, 205, 196, 0.6),
        0 0 30px rgba(155, 89, 182, 0.4);
    animation: lightning-flow 3s linear infinite;
}

.neon-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(78, 205, 196, 0.8) 50%, 
        transparent 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(78, 205, 196, 1),
        0 0 40px rgba(78, 205, 196, 0.6),
        0 0 60px rgba(78, 205, 196, 0.3);
    animation: center-pulse 2s ease-in-out infinite;
}

@keyframes lightning-flow {
    0% {
        background-position: -200% 0;
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        background-position: 200% 0;
        opacity: 0.3;
    }
}

@keyframes center-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
    }
}

/* Lightning particles */
.lightning-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(78, 205, 196, 0.8),
        0 0 20px rgba(78, 205, 196, 0.5);
    animation: particle-travel 2s linear infinite;
}

@keyframes particle-travel {
    0% {
        left: 0%;
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Three.js title container */
.title-3d-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.title-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Enhanced navigation with neon */
.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 
        0 0 5px rgba(255, 107, 53, 0.8),
        0 0 10px rgba(255, 107, 53, 0.5);
}

/* Enhanced buttons with neon */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(255, 107, 53, 0.4),
        0 0 30px rgba(255, 107, 53, 0.4),
        inset 0 0 20px rgba(255, 107, 53, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-color);
    box-shadow: 
        0 8px 25px rgba(78, 205, 196, 0.2),
        0 0 15px rgba(78, 205, 196, 0.1);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(78, 205, 196, 0.3),
        0 0 25px rgba(78, 205, 196, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===== NAVIGATION STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
}

.nav-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.nav-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
}

.logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 
        0 0 5px rgba(255, 107, 53, 0.8),
        0 0 10px rgba(255, 107, 53, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* ===== HERO SECTION STYLES ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-title) !important;
    font-size: 5rem !important;
    font-weight: 400 !important;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    
    /* Neon glow effect */
    text-shadow: 
        0 0 5px rgba(255, 107, 53, 0.8),
        0 0 10px rgba(255, 107, 53, 0.6),
        0 0 15px rgba(255, 107, 53, 0.4),
        0 0 20px rgba(255, 107, 53, 0.3),
        0 0 35px rgba(255, 107, 53, 0.2);
    
    /* Enhanced glow animation */
    animation: neon-pulse 3s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    0% {
        text-shadow: 
            0 0 5px rgba(255, 107, 53, 0.8),
            0 0 10px rgba(255, 107, 53, 0.6),
            0 0 15px rgba(255, 107, 53, 0.4),
            0 0 20px rgba(255, 107, 53, 0.3),
            0 0 35px rgba(255, 107, 53, 0.2);
        filter: hue-rotate(0deg);
    }
    50% {
        text-shadow: 
            0 0 8px rgba(255, 107, 53, 1),
            0 0 15px rgba(255, 107, 53, 0.8),
            0 0 25px rgba(255, 107, 53, 0.6),
            0 0 35px rgba(255, 107, 53, 0.4),
            0 0 50px rgba(255, 107, 53, 0.3);
        filter: hue-rotate(15deg);
    }
    100% {
        text-shadow: 
            0 0 10px rgba(78, 205, 196, 0.9),
            0 0 20px rgba(78, 205, 196, 0.7),
            0 0 30px rgba(78, 205, 196, 0.5),
            0 0 40px rgba(78, 205, 196, 0.3),
            0 0 60px rgba(78, 205, 196, 0.2);
        filter: hue-rotate(180deg);
    }
}

/* Three.js canvas for title */
.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    border-radius: 10px;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.1), 
        rgba(78, 205, 196, 0.1), 
        rgba(155, 89, 182, 0.1));
    filter: blur(20px);
    animation: neon-bg-pulse 4s ease-in-out infinite;
}

@keyframes neon-bg-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

/* Enhanced subtitle with subtle neon */
.hero-subtitle {
    font-family: var(--font-primary);
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 
        0 0 10px rgba(78, 205, 196, 0.5),
        0 0 20px rgba(78, 205, 196, 0.3);
    animation: subtitle-glow 4s ease-in-out infinite alternate;
}

@keyframes subtitle-glow {
    0% {
        text-shadow: 
            0 0 10px rgba(78, 205, 196, 0.5),
            0 0 20px rgba(78, 205, 196, 0.3);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(78, 205, 196, 0.8),
            0 0 30px rgba(78, 205, 196, 0.5),
            0 0 45px rgba(78, 205, 196, 0.3);
    }
}

/* Missing section-title-glow animation */
@keyframes section-title-glow {
    0% {
        text-shadow: 
            0 0 5px rgba(255, 107, 53, 0.6),
            0 0 10px rgba(255, 107, 53, 0.4),
            0 0 15px rgba(255, 107, 53, 0.2);
        filter: brightness(1);
    }
    100% {
        text-shadow: 
            0 0 10px rgba(255, 107, 53, 0.9),
            0 0 20px rgba(255, 107, 53, 0.7),
            0 0 30px rgba(255, 107, 53, 0.5),
            0 0 40px rgba(255, 107, 53, 0.3);
        filter: brightness(1.2);
    }
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 30px;
}

/* ===== CONSOLIDATED MOBILE RESPONSIVE STYLES ===== */

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .logo h2 {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 200px;
        text-align: center;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 107, 53, 0.1);
        border-color: var(--primary-color);
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero Section Mobile */
    .hero {
        height: 100vh;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
        text-align: center;
    }
    
    .title-3d-container {
        margin-bottom: 20px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-image {
        max-width: 100%;
        margin: 20px 0;
    }
    
    .about-image .logo-image {
        padding: 15px;
    }

    /* Course Cards Mobile */
    .course-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .course-card {
        padding: 25px 20px;
    }
    
    .course-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .course-card h3 {
        font-size: 1.3rem;
        margin: 15px 0 12px;
    }
    
    .course-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .course-card ul li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .course-duration {
        margin: 15px 0;
    }
    
    .course-duration span {
        font-size: 0.9rem;
    }
    
    .enroll-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .category-tabs {
        gap: 15px;
    }
    
    .tab-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .courses-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }

    /* Admissions Section Mobile */
    .admissions-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .application-form {
        order: -1;
        max-width: 100%;
        margin: 0;
    }
    
    .inquiry-form {
        padding: 30px 25px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }
    
    .inquiry-form h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
        text-align: center;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        color: var(--text-primary);
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    .form-group input::placeholder,
    .form-group select::placeholder,
    .form-group textarea::placeholder {
        color: var(--text-secondary);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
        background: rgba(255, 255, 255, 0.08);
    }
    
    .form-group select {
        height: 52px;
        cursor: pointer;
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: flex-start;
        padding: 20px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .step:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }
    
    .step-number {
        flex-shrink: 0;
        margin-bottom: 0;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: var(--text-primary);
    }
    
    .step-content p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .option {
        padding: 25px 20px;
        text-align: center;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .option:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: var(--secondary-color);
        transform: translateY(-2px);
    }
    
    .option i {
        font-size: 2.2rem;
        margin-bottom: 15px;
        color: var(--primary-color);
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
    }
    
    .option h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: var(--text-primary);
        font-weight: 600;
    }
    
    .option p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.4;
    }
    
    .info-card {
        padding: 30px 25px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .info-card:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .info-card h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
        text-align: center;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-card {
        padding: 30px 25px;
        text-align: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    
    .contact-card:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--primary-color);
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    
    .contact-card:hover::before {
        opacity: 0.05;
    }
    
    .contact-card i {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: var(--primary-color);
        filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.4));
        transition: all 0.3s ease;
    }
    
    .contact-card:hover i {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
    }
    
    .contact-card h4 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--text-primary);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .contact-card p {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--text-secondary);
        font-weight: 400;
    }
    
    .map-container {
        height: 280px;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.02);
        position: relative;
    }
    
    .map-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            rgba(255, 107, 53, 0.05) 0%, 
            rgba(78, 205, 196, 0.05) 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .map-placeholder:hover {
        background: linear-gradient(135deg, 
            rgba(255, 107, 53, 0.08) 0%, 
            rgba(78, 205, 196, 0.08) 100%);
        transform: scale(1.02);
    }
    
    .map-placeholder i {
        font-size: 3.5rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
        filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.4));
        animation: map-pulse 2s ease-in-out infinite alternate;
    }
    
    @keyframes map-pulse {
        0% { transform: scale(1); opacity: 0.8; }
        100% { transform: scale(1.05); opacity: 1; }
    }
    
    .map-placeholder p {
        font-size: 1.3rem;
        color: var(--text-primary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .social-media {
        margin-top: 60px;
        padding-top: 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        position: relative;
    }
    
    .social-media::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 2px;
        background: var(--gradient-primary);
        border-radius: 2px;
    }
    
    .social-media h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }
    
    .social-link::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: var(--gradient-primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease;
        z-index: -1;
    }
    
    .social-link:hover::before {
        width: 100%;
        height: 100%;
    }
    
    .social-link:hover {
        border-color: var(--primary-color);
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
        color: white;
    }

    /* Global Mobile Optimizations */
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1.1rem;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    /* Reduce section padding for mobile */
    .about, .courses, .admissions, .contact {
        padding: 60px 0;
    }
    
    /* Optimize button styles for mobile */
    .btn {
        min-width: auto;
        white-space: nowrap;
    }
    
    .btn-primary {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        padding-left: 15px;
    }
    
    .footer-section ul li a:hover {
        padding-left: 20px;
    }
    
    .footer-bottom {
        padding-top: 25px;
        padding: 25px 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.8;
    }
    
    /* Enrollment Notification Mobile */
    .enrollment-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 15px 20px;
    }
    
    .enrollment-notification .notification-content span {
        font-size: 1.1rem;
    }
    
    .enrollment-notification .notification-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .hero-buttons .btn {
        width: 180px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Admissions Mobile Responsive Styles */
@media (max-width: 768px) {
    .admissions-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .application-form {
        order: -1;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        align-self: center;
        margin-bottom: 10px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .inquiry-form {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    .admissions {
        padding: 50px 0;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .option h4 {
        font-size: 1rem;
    }
    
    .option p {
        font-size: 0.85rem;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .inquiry-form {
        padding: 20px 15px;
    }
}

/* Contact Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .contact-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .contact-card i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .contact-card h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .contact-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .map-container {
        height: 250px;
    }
    
    .social-media {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .social-media h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-card i {
        font-size: 1.8rem;
    }
    
    .contact-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 200px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Course Cards Mobile Responsive */
@media (max-width: 768px) {
    .course-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .course-card {
        padding: 25px 20px;
    }
    
    .course-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .course-card h3 {
        font-size: 1.3rem;
        margin: 15px 0 12px;
    }
    
    .course-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .course-card ul li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .course-duration {
        margin: 15px 0;
    }
    
    .course-duration span {
        font-size: 0.9rem;
    }
    
    .enroll-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .category-tabs {
        gap: 15px;
    }
    
    .tab-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .courses-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .course-card {
        padding: 20px 15px;
    }
    
    .course-card h3 {
        font-size: 1.2rem;
    }
    
    .course-card p {
        font-size: 0.9rem;
    }
    
    .course-card ul li {
        font-size: 0.85rem;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .courses-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* ===== ENROLLMENT NOTIFICATION ===== */
.enrollment-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 350px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.enrollment-notification .notification-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enrollment-notification .notification-content i {
    font-size: 1.5rem;
    color: #4ecdc4;
    align-self: flex-start;
}

.enrollment-notification .notification-content span {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.enrollment-notification .notification-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .enrollment-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 15px 20px;
    }
    
    .enrollment-notification .notification-content span {
        font-size: 1.1rem;
    }
    
    .enrollment-notification .notification-content p {
        font-size: 0.85rem;
    }
}

/* ===== ADMISSIONS SECTION ===== */
.admissions {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.admissions-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.admission-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.option {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.option i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.option h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.option p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.application-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.application-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-primary);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: all 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.map-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #4ecdc4 0%, #667eea 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    transition: all 0.4s ease;
}

.map-placeholder:hover {
    transform: scale(1.02);
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 600;
}

.social-media {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* ===== SECTION BACKGROUND CANVASES ===== */

.section-bg-canvas {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

/* Section positioning for canvas backgrounds */
#about, #courses, #admissions, #contact {
    position: relative;
    overflow: hidden;
}

#about .container,
#courses .container,
#admissions .container,
#contact .container {
    position: relative;
    z-index: 2;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    min-height: 100vh;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.5);
    animation: glowingBorder 3s ease-in-out infinite alternate;
}

.about-image .logo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.about-image .logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Glowing border animation for About section logo */
@keyframes glowingBorder {
    0% {
        box-shadow: 0 15px 35px rgba(0, 255, 255, 0.3), 0 0 15px rgba(0, 255, 255, 0.2);
        border-color: rgba(0, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 15px 35px rgba(0, 255, 255, 0.6), 0 0 25px rgba(0, 255, 255, 0.4);
        border-color: rgba(0, 255, 255, 0.8);
    }
}

/* Mobile responsive for about section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-image {
        max-width: 100%;
        margin: 20px 0;
    }
    
    .about-image .logo-image {
        padding: 15px;
    }
}

/* Courses Section */
.courses {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #2d1b69 100%);
    min-height: 100vh;
    position: relative;
}

/* Course categories container */
.course-categories {
    margin-top: 60px;
    position: relative;
}

/* Course Grid - Optimized for instant switching */
.course-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.course-grid.active {
    display: grid;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn::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.6s;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.5);
    color: var(--text-primary);
}

.tab-btn.active {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(78, 205, 196, 0.2));
    border-color: var(--secondary-color);
    color: var(--text-primary);
    box-shadow: 
        0 0 20px rgba(78, 205, 196, 0.3),
        0 5px 25px rgba(78, 205, 196, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

/* Course Cards */
.course-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.course-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(78, 205, 196, 0.1) 0%, 
        transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(78, 205, 196, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(78, 205, 196, 0.3);
}

.course-card:hover::before {
    opacity: 1;
}

.course-card:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

/* Course Icon */
.course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
    transition: all 0.4s ease;
}

.course-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color),
        var(--secondary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.course-card:hover .course-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
}

.course-card:hover .course-icon::before {
    opacity: 1;
}

.course-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Course Content */
.course-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.course-card:hover h3 {
    transform: translateX(5px);
}

.course-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Course Features List */
.course-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.course-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.course-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.course-card:hover li {
    color: var(--text-primary);
    transform: translateX(5px);
}

.course-card:hover li::before {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Course Duration */
.course-duration {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.course-duration span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
}

.course-card:hover .course-duration span {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
    transform: scale(1.05);
}

.course-duration i {
    color: var(--secondary-color);
}

/* Course enrollment button */
.course-card .enroll-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 10;
}

.course-card:hover .enroll-btn {
    opacity: 1;
    transform: scale(1);
}

.course-card .enroll-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

@keyframes bounce-in {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(90deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Course card loading skeleton effect */
.course-card.loading {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Courses statistics counter */
.courses-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced tab button effects */
.tab-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Global Mobile Optimizations */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1.1rem;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    /* Reduce section padding for mobile */
    .about, .courses, .admissions, .contact {
        padding: 60px 0;
    }
    
    /* Optimize button styles for mobile */
    .btn {
        min-width: auto;
        white-space: nowrap;
    }
    
    .btn-primary {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.9rem;
        line-height: 1.1;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .btn-primary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-secondary {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--darker-bg);
    padding: 80px 0 40px;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    display: block;
}

.footer-section ul li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.footer-section ul li a:hover::before {
    transform: scale(1.3);
    opacity: 1;
}

.footer-section p i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 20px;
    font-size: 1rem;
}

.footer-section p span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Contact info styling */
.footer-section p:has(i) {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-section p:has(i):hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* Footer animations */
.footer-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer responsive design */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        padding-left: 15px;
    }
    
    .footer-section ul li a:hover {
        padding-left: 20px;
    }
    
    .footer-bottom {
        padding-top: 25px;
        padding: 25px 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 25px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .footer-section p i {
        margin-right: 8px;
        width: 16px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 20px 15px 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Footer dark mode enhancements */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Hover effects for footer sections */
.footer-section:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.footer-section:hover h3,
.footer-section:hover h4 {
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}
@media (max-width: 768px) {
  .admissions-content,
  .contact-content {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .info-card,
  .contact-card {
    width: 100%;
  }
}
