/* ========================================
   ReportClass - Global Styles
   Modern Design 2026 - Glass Morphism
   ======================================== */

:root {
    --primary-dark: #0f1419;
    --secondary-dark: #1a1f2e;
    --accent-blue: #10b981;
    --accent-purple: #34d399;
    --accent-cyan: #059669;
    --text-primary: #ffffff;
    --text-secondary: #b0b9c1;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-lighter: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== COOKIE NOTIFICATION ========== */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 20px;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-secondary);
    flex: 1;
}

.cookie-content a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-content a:hover {
    border-bottom-color: var(--accent-blue);
}

.cookie-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 20, 25, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    padding: 20px 0;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-blue) 25%,
        var(--accent-purple) 50%,
        var(--accent-cyan) 75%,
        transparent 100%
    );
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar-logo:hover::after {
    transform: scaleX(1);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 8px;
}

.nav-link:not(.nav-link-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    transition: width 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.nav-link:not(.nav-link-btn):hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-link:not(.nav-link-btn):hover::after {
    width: 100%;
}

.nav-link-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    padding: 10px 25px;
    border-radius: 0;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    overflow: hidden;
}

.nav-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.3s ease;
}

.nav-link-btn:hover::before {
    left: 100%;
}

.nav-link-btn:hover {
    transform: translateY(-3px) translateX(2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    margin: 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.hamburger span:nth-child(2) {
    width: 20px;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-10px, 10px) scaleX(1.1);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-10px, -10px) scaleX(1.1);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6), rgba(59, 130, 246, 0));
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; top: 80%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; top: 40%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; top: 60%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; top: 30%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(6) { width: 6px; height: 6px; left: 60%; top: 70%; animation-delay: 5s; animation-duration: 11s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; top: 50%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; top: 25%; animation-delay: 4.5s; animation-duration: 12.5s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; top: 75%; animation-delay: 1.5s; animation-duration: 14.5s; }
.particle:nth-child(10) { width: 6px; height: 6px; left: 15%; top: 45%; animation-delay: 3.5s; animation-duration: 16.5s; }
.particle:nth-child(11) { width: 3px; height: 3px; left: 25%; top: 65%; animation-delay: 2.8s; animation-duration: 13.5s; }
.particle:nth-child(12) { width: 5px; height: 5px; left: 35%; top: 15%; animation-delay: 4.2s; animation-duration: 15.5s; }
.particle:nth-child(13) { width: 4px; height: 4px; left: 45%; top: 85%; animation-delay: 1.8s; animation-duration: 11.5s; }
.particle:nth-child(14) { width: 6px; height: 6px; left: 55%; top: 55%; animation-delay: 3.2s; animation-duration: 17.5s; }
.particle:nth-child(15) { width: 3px; height: 3px; left: 65%; top: 35%; animation-delay: 5.5s; animation-duration: 12.8s; }
.particle:nth-child(16) { width: 5px; height: 5px; left: 75%; top: 90%; animation-delay: 2.2s; animation-duration: 14.8s; }
.particle:nth-child(17) { width: 4px; height: 4px; left: 85%; top: 10%; animation-delay: 4.8s; animation-duration: 16.8s; }
.particle:nth-child(18) { width: 6px; height: 6px; left: 95%; top: 50%; animation-delay: 1.2s; animation-duration: 13.8s; }
.particle:nth-child(19) { width: 3px; height: 3px; left: 12%; top: 70%; animation-delay: 3.8s; animation-duration: 15.8s; }
.particle:nth-child(20) { width: 5px; height: 5px; left: 88%; top: 40%; animation-delay: 5.2s; animation-duration: 11.8s; }

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(var(--float-x, 50px), var(--float-y, -100px)) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 0.5;
    }
}

.particle:nth-child(odd) { --float-x: 60px; --float-y: -120px; }
.particle:nth-child(even) { --float-x: -60px; --float-y: -100px; }
.particle:nth-child(3n) { --float-x: 40px; --float-y: -140px; }

/* Floating Circles */
.hero-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.15);
    animation: circleFloat 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    border-color: rgba(59, 130, 246, 0.12);
    animation-duration: 25s;
}

.circle-2 {
    width: 600px;
    height: 600px;
    bottom: -300px;
    right: -200px;
    border-color: rgba(139, 92, 246, 0.1);
    animation-duration: 30s;
    animation-delay: 5s;
}

.circle-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: -100px;
    border-color: rgba(6, 182, 212, 0.12);
    animation-duration: 22s;
    animation-delay: 10s;
}

.circle-4 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: 5%;
    border-color: rgba(59, 130, 246, 0.08);
    animation-duration: 28s;
    animation-delay: 3s;
}

@keyframes circleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, -80px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -40px) rotate(270deg);
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 20, 25, 0.4), rgba(15, 20, 25, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 95%;
    width: 100%;
    padding: 40px 20px 180px 20px;
    animation: fadeInUp 0.8s ease-out;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.1),
        rgba(139, 92, 246, 0.05),
        rgba(6, 182, 212, 0.05)
    );
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(32px, 10vw, 80px);
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-4px) translateX(4px) scale(1.08);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.6);
}

.hero-cta:active {
    transform: translateY(-2px) translateX(2px);
}

.hero-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.hero-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-light);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 2px;
    border: 1px dashed var(--accent-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.hero-btn:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: var(--accent-blue);
    transform: scale(1.15) rotate(5deg);
}

.hero-btn:hover::before {
    opacity: 1;
}

.hero-dots {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    background: rgba(15, 20, 25, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
}

.dot:hover {
    background: rgba(59, 130, 246, 0.6);
    border-color: var(--accent-blue);
    transform: scale(1.1);
}

.dot.active {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    width: 30px;
    border-radius: 0;
    clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%, 0 10%);
}

/* ========== GLASS MORPHISM ========== */
.glass {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.04)
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass:hover::before {
    opacity: 1;
}

.glass:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.12),
        rgba(139, 92, 246, 0.08)
    );
}

/* ========== WHY US SECTION ========== */
.why-us {
    padding: 100px 0;
    position: relative;
}

.why-us h2 {
    font-size: clamp(28px, 5vw, 52px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.why-us h2::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.feature-card {
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.feature-card:hover::before {
    opacity: 0.2;
}

.feature-card:hover {
    transform: translateY(-10px) skewX(-2deg);
    border-color: var(--accent-blue);
}

.feature-card:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.feature-card:nth-child(2) {
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 95%);
}

.feature-card:nth-child(3) {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.feature-card:nth-child(4) {
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
}

.feature-card:nth-child(5) {
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.feature-card:nth-child(6) {
    clip-path: polygon(5% 0, 100% 0, 100% 95%, 0 100%);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* ========== COURSES PREVIEW ========== */
.courses-preview {
    padding: 100px 0;
}

.courses-preview h2 {
    font-size: clamp(28px, 5vw, 52px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.courses-preview h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-purple));
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent var(--accent-blue) transparent transparent;
    z-index: 5;
    transition: all 0.3s ease;
}

.course-card:hover::before {
    border-width: 0 50px 50px 0;
    border-color: transparent var(--accent-purple) transparent transparent;
}

.course-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    border-color: var(--accent-blue);
    box-shadow: 
        -5px 20px 60px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.course-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    filter: brightness(0.85) contrast(1.1);
}

.course-card:hover .course-image {
    transform: scale(1.08) rotate(-1deg);
    filter: brightness(1) contrast(1.2);
}

.course-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%,
        rgba(139, 92, 246, 0.03) 100%);
}

.course-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.course-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    margin-left: 12px;
}

.course-level {
    color: var(--accent-blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    margin-left: 12px;
}

.course-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(59, 130, 246, 0.3);
}

.course-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    overflow: hidden;
}

.course-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.3s ease;
}

.course-btn:hover::before {
    left: 100%;
}

.course-btn:hover {
    transform: translateY(-2px) translateX(4px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 0;
}

.testimonials h2 {
    font-size: clamp(28px, 5vw, 52px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.testimonials h2::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue), var(--accent-cyan));
    clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border-left: 4px dashed var(--accent-blue);
    padding-left: 25px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    opacity: 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) translateX(8px);
    border-left-color: var(--accent-purple);
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.08),
        rgba(139, 92, 246, 0.05)
    );
    border-radius: 8px;
    padding: 30px;
}

.testimonial-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.star-rating {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: var(--accent-blue);
    opacity: 0.2;
}

.testimonial-author {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-top: 10px;
    border-top: 1px dotted var(--accent-blue);
}

/* ========== STATISTICS ========== */
.statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 0;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-blue),
        var(--accent-purple),
        var(--accent-cyan),
        transparent
    );
}

.statistics::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-cyan),
        var(--accent-blue),
        transparent
    );
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 30px;
    position: relative;
    border-left: 3px solid var(--accent-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.05),
        rgba(139, 92, 246, 0.02)
    );
}

.stat-item:nth-child(odd) {
    border-left: none;
    border-right: 3px solid var(--accent-purple);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--accent-blue) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-radius: 8px;
}

.stat-item:hover::before {
    opacity: 0.1;
}

.stat-number {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: 100px 0;
}

.faq h2 {
    font-size: clamp(28px, 5vw, 52px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
    opacity: 1;
}

.faq-item:hover {
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.1),
        rgba(139, 92, 246, 0.05)
    );
    border-radius: 8px;
    padding-left: 10px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    color: var(--accent-blue);
    padding-left: 35px;
}

.faq-icon {
    font-size: 24px;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(59, 130, 246, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px 35px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
    border-left: 2px dashed var(--accent-blue);
    margin-left: 10px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    border-radius: 0;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) translateX(4px) scaleX(1.05);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.5);
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 100px 0;
}

.contact h2 {
    font-size: clamp(28px, 5vw, 52px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.contact h2::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan), var(--accent-purple));
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.contact-info h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-left: 3px solid var(--accent-blue);
    border-radius: 4px;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.05),
        rgba(139, 92, 246, 0.02)
    );
    position: relative;
    transition: all 0.3s ease;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--accent-purple);
    border-right: 2px solid var(--accent-purple);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.12),
        rgba(139, 92, 246, 0.08)
    );
    border-left-color: var(--accent-purple);
    transform: translateX(8px);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    font-size: 28px;
    min-width: 40px;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.contact-item p strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
    text-decoration: underline;
    text-decoration-color: var(--accent-blue);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.contact-item a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-cyan);
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-form {
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.08),
        rgba(139, 92, 246, 0.05)
    );
    border: 2px solid var(--glass-border);
    border-radius: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--accent-blue) transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.contact-form:focus-within::before {
    opacity: 0.1;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input::before,
.form-group textarea::before {
    content: '';
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.3),
        inset 0 0 10px rgba(59, 130, 246, 0.1);
}

.form-group select {
    cursor: pointer;
    color: var(--text-secondary);
}

.form-group select option {
    background: var(--secondary-dark);
    color: var(--text-primary);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 0;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s ease;
}

.submit-btn:hover::after {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px) translateX(4px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(15, 20, 25, 0.8);
    border-top: 2px solid var(--accent-blue);
    padding: 60px 0 30px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--accent-blue),
        var(--accent-purple),
        var(--accent-cyan),
        transparent
    );
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
    padding-left: 20px;
}

.footer-section:nth-child(odd)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-blue), transparent);
}

.footer-section:nth-child(even)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--accent-purple));
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: width 0.3s ease;
}

.footer-section:hover h4::after {
    width: 100%;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    clip-path: polygon(0 40%, 50% 0, 100% 40%, 50% 100%);
    transition: all 0.3s ease;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-section ul li:hover::before {
    transform: translateY(-50%) rotate(45deg) scale(1.2);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    background: rgba(59, 130, 246, 0.1);
    padding: 8px 16px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
}

.social-link:hover {
    background: transparent;
    border-color: var(--accent-blue);
    color: var(--accent-blue) !important;
    transform: translateY(-2px);
}

.social-link:hover::before {
    opacity: 0.15;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px dashed var(--border-light);
    color: var(--text-secondary);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg,
            rgba(15, 20, 25, 0.98),
            rgba(26, 31, 46, 0.98)
        );
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 15px;
        padding: 30px 0;
        border-bottom: 2px solid rgba(59, 130, 246, 0.2);
    }

    .nav-menu li {
        width: 100%;
        padding: 0 20px;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link:not(.nav-link-btn):hover {
        background: rgba(59, 130, 246, 0.15);
        border-radius: 8px;
    }

    .nav-link-btn {
        display: inline-block;
        padding: 15px 40px !important;
        font-size: 16px;
        border-radius: 8px;
        clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-controls {
        bottom: 20px;
        gap: 15px;
    }

    .hero-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-dots {
        gap: 10px;
        padding: 6px 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 22px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content p {
        margin-bottom: 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 80px);
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .course-card {
        margin-bottom: 20px;
    }

    .feature-card,
    .testimonial-card {
        padding: 25px;
    }

    .faq-question {
        font-size: 14px;
        padding: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .statistics {
        margin: 0 20px;
    }

    .cta-section {
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-link {
        font-size: 13px;
        padding: 15px 0;
    }

    .navbar-logo {
        font-size: 22px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 60px);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-cta {
        padding: 12px 30px;
        font-size: 14px;
        clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    }

    .features-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .faq-question {
        font-size: 13px;
        padding: 15px;
    }

    .faq-answer p {
        padding: 0 15px 15px 35px;
        font-size: 13px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-section {
        padding: 50px 20px;
        margin: 0 15px;
    }

    .cta-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 13px;
        clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== UNIQUE EXTRA STYLES ========== */

/* Unique h2 styling */
section h2 {
    position: relative;
    padding-bottom: 20px;
}

section h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--accent-blue) 20%,
        var(--accent-purple) 50%,
        var(--accent-cyan) 80%,
        transparent 100%
    );
}

/* Hover effects for interactive elements */
button:not(.hero-btn):not(.submit-btn):not(.cta-button) {
    position: relative;
    overflow: hidden;
}

/* Unique form input focus effect */
input:focus,
textarea:focus,
select:focus {
    animation: none !important;
}

/* Card shadow enhancement */
.course-card,
.feature-card,
.testimonial-card,
.contact-form {
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Unique border animations */
.feature-card,
.course-card,
.testimonial-card {
    border-image: linear-gradient(135deg, 
        rgba(59, 130, 246, 0),
        rgba(59, 130, 246, 0.3),
        rgba(139, 92, 246, 0.3),
        rgba(6, 182, 212, 0.2),
        rgba(59, 130, 246, 0)
    ) 1;
}

/* Text gradient animation */
.hero-title {
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container wave effect */
.container {
    position: relative;
}

/* Section dividers */
section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(59, 130, 246, 0.2),
        transparent
    );
}

/* Scroll reveal animations */
.feature-card {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient text effect */
.feature-card h3,
.course-info h3 {
    background: linear-gradient(135deg, 
        var(--accent-blue),
        var(--accent-purple),
        var(--accent-cyan)
    );
    background-size: 300% 300%;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
