﻿:root {
    --bg-dark: #050508;
    --card-bg: #0b0f19;
    --neon-blue: #00d2ff;
    --neon-orange: #ff8c00;
    --text-muted: #a0aabf;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .nav-link {
    font-family: 'Montserrat', sans-serif;
}

/* Utility Classes */
.text-blue {
    color: var(--neon-blue) !important;
}

.text-orange {
    color: var(--neon-orange) !important;
}

.text-muted-custom {
    color: var(--text-muted);
    font-weight: 300;
}

/* Navbar */
.navbar {
    padding: 1rem 5%;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 100px;
}

.nav-link {
    color: #fff !important;
    font-size: 0.9rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: var(--neon-blue) !important;
    }

/* Buttons */
.btn-outline-blue {
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    background: transparent;
    transition: 0.3s;
}

    .btn-outline-blue:hover {
        background: var(--neon-blue);
        color: #000;
    }

.btn-orange {
    background: linear-gradient(90deg, #ff8c00, #ff5722);
    border: none;
    color: #fff;
    font-weight: 600;
}

    .btn-orange:hover {
        background: linear-gradient(90deg, #ff5722, #ff8c00);
        color: #fff;
    }

/* Hero Section */
.hero-section {
    padding: 100px 5% 50px;
}

.welcome-badge {
    display: inline-block;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--neon-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-image-container {
    position: relative;
}

    .hero-image-container::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0,210,255,0.2) 0%, rgba(0,0,0,0) 70%);
        z-index: -1;
    }

/* Stats Section */
.stats-container {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px;
    margin: 20px 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center !important;
}

.stat-icon {
    font-size: 2rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Programs Section */
.programs-section {
    padding: 50px 5%;
}

.program-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

    .program-card:hover {
        transform: translateY(-5px);
    }

.card-blue {
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.card-orange {
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.card-icon {
    width: 300px;
    height: 225px;
    margin: 0 auto 20px;
    display: block;
}

/* CTA Banner */
.cta-banner {
    background: url('../images/cta-bg.png') no-repeat center center/cover;
    border-radius: 15px;
    margin: 50px 5%;
    padding: 60px 40px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

    .cta-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, rgba(5,5,8,0.9) 0%, rgba(5,5,8,0.4) 100%);
        border-radius: 15px;
    }

.cta-content {
    position: relative;
    z-index: 1;
}

/* Footer Features */
.footer-features {
    padding: 40px 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 22px;
}

    .footer-features i {
        color: var(--neon-blue);
        margin-right: 8px;
        font-size: 30px;
    }

.quote-section {
    text-align: center;
    padding: 20px 5% 50px;
    color: var(--text-muted);
}

    .quote-section span {
        color: var(--neon-blue);
    }
.navbar-toggler-icon {
    filter: invert(1);
}
@media (min-width: 300px) and (max-width: 768px){
    .hero-section {
        padding: 200px 5% 50px;
    }
    .hero-title {
        font-size: 20px;
        font-weight: 800;
        line-height: 1.2;
        text-transform: uppercase;
    }
}