@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #2563eb;
    --secondary: #7c3aed;
    --accent: #0891b2;
    --background: #f8fafc;
    --text: #0f172a;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text);
    overflow-x: hidden;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.neon-text {
    text-shadow: 0 0 5px rgba(37, 99, 235, 0.2);
}

.gradient-text {
    background: linear-gradient(to right, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-animate {
    background: linear-gradient(-45deg, #f8fafc, #eff6ff, #f5f3ff, #f8fafc);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--secondary));
    border-radius: 10px;
}

/* AOS Tweaks */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

.swiper-pagination-bullet {
    background: var(--text) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}


/* Syllabus / Learning Path */
.syllabus-grid {
    position: relative;
}

.syllabus-step {
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .syllabus-grid::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background: repeating-linear-gradient(90deg, #2563eb 0px, #2563eb 10px, transparent 10px, transparent 20px);
        opacity: 0.1;
        z-index: 1;
        transform: translateY(-50%);
    }
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.group:hover .step-number {
    opacity: 0.3;
    transform: translateX(10px) scale(1.1);
}

.custom-bullet {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}