/* ULTRA-FUTURISTIC CYBER TERMINAL STYLES */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800;900&family=Rajdhani:wght@500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #020208;
    color: #00f0ff;
    overflow-x: hidden;
    position: relative;
}

/* CYBERPUNK SCANLINE & GRID BACKGROUND EFFECT */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 9999;
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
}

span {
    color: #ff007f;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px #ff007f, 0 0 30px rgba(255, 0, 127, 0.5);
}

/* GLOWING ORBS ENGINE */
.tech-bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    top: 0; left: 0;
    background: radial-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

.glowing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
    animation: quantumFloat 8s infinite alternate ease-in-out;
}
.orb-1 { width: 350px; height: 350px; background: #00f0ff; top: -10%; left: -5%; }
.orb-2 { width: 450px; height: 450px; background: #ff007f; bottom: -10%; right: -5%; animation-delay: 2s; }

@keyframes quantumFloat {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    100% { transform: translateY(50px) rotate(180deg) scale(1.1); }
}

/* NEON NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(2, 2, 8, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid #00f0ff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.logo h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
}

.nav-links { display: flex; align-items: center; }
.nav-links a {
    color: #00f0ff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #ff007f;
    text-shadow: 0 0 10px #ff007f;
}

/* AUTH BUTTONS */
.auth-buttons { display: flex; align-items: center; margin-left: 25px; gap: 15px; }
.btn-login {
    color: #00f0ff !important;
    border: 1px solid #00f0ff;
    padding: 8px 20px;
    border-radius: 0px;
    background: transparent;
    text-transform: uppercase;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: 0.3s;
    text-decoration: none;
}
.btn-login:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.btn-signup {
    background: #ff007f;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 9px 22px;
    border-radius: 0px;
    border: none;
    text-transform: uppercase;
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
    box-shadow: 0 0 15px #ff007f;
    transition: 0.3s;
    text-decoration: none;
}
.btn-signup:hover {
    background: #e0006c;
    box-shadow: 0 0 25px #ff007f;
}

/* HERO SECTION */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 140px 20px 60px 20px; }
.tech-badge {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid #00f0ff;
    color: #00f0ff;
    padding: 6px 16px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    margin-bottom: 25px;
    display: inline-block;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    color: #88a0b0;
    max-width: 750px;
    margin: 0 auto 45px auto;
    line-height: 1.7;
}

.btn-gradient {
    text-decoration: none; padding: 15px 35px;
    background: linear-gradient(135deg, #00f0ff, #7000ff); color: #fff;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); transition: 0.3s; border: none; cursor: pointer;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}
.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #00f0ff;
}

.btn-outline {
    text-decoration: none; padding: 14px 35px; border: 1px solid #ff007f;
    color: #ff007f; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: inline-block; margin-left: 15px;
    background: transparent; transition: 0.3s;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
}
.btn-outline:hover {
    background: rgba(255, 0, 127, 0.1);
    box-shadow: 0 0 20px #ff007f;
}

/* CYBER HARDWARE CARDS */
.live-classes, .development, .courses, .internship, .contact, .dashboard-wrapper { padding: 90px 6%; }
.glass-card {
    background: rgba(4, 4, 12, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #00f0ff;
    padding: 50px;
    border-radius: 0px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
    position: relative;
}
.glass-card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 15px; height: 15px; border-top: 3px solid #ff007f; border-left: 3px solid #ff007f;
}
.glass-card::after {
    content: ""; position: absolute; bottom: 0; right: 0; width: 15px; height: 15px; border-bottom: 3px solid #ff007f; border-right: 3px solid #ff007f;
}

.live-banner { border-left: 4px solid #ff007f; text-align: left; max-width: 1000px; margin: 0 auto; }
.live-status { background: #ff007f; color: #fff; font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 900; padding: 5px 14px; display: inline-block; margin-bottom: 20px; box-shadow: 0 0 10px #ff007f; letter-spacing: 1px; }
.live-banner h2 { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; }

/* SERVICES & COURSES GRID */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 900; text-transform: uppercase; }
.section-header p { color: #88a0b0; font-size: 1.2rem; margin-top: 10px; }

.services-grid, .courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; }

.service-card, .course-card, .panel-card {
    background: rgba(6, 6, 18, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 45px 30px;
    position: relative;
    transition: 0.4s ease;
}
.service-card:hover, .course-card:hover {
    border-color: #00f0ff;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
    transform: translateY(-5px);
}

.dev-icon i, .course-icon i { font-size: 45px; color: #00f0ff; text-shadow: 0 0 15px #00f0ff; margin-bottom: 25px; }
.service-card h3, .course-card h3, .panel-card h3 { font-family: 'Orbitron', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; }

.tech-tags span { background: rgba(0, 240, 255, 0.05); border: 1px solid rgba(0, 240, 255, 0.3); padding: 4px 12px; font-size: 13px; color: #00f0ff; margin-right: 5px; }

.course-card { display: flex; flex-direction: column; }
.course-desc { color: #88a0b0; font-size: 15px; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
.course-tag { position: absolute; top: 20px; right: 20px; background: rgba(255, 0, 127, 0.1); border: 1px solid #ff007f; color: #ff007f; font-size: 11px; font-weight: 700; padding: 4px 12px; text-transform: uppercase; font-family: 'Orbitron', sans-serif; }

.rating-box { display: flex; align-items: center; gap: 8px; margin-bottom: 25px; }
.stars { color: #ff007f; font-weight: 700; }
.reviews { color: #627d90; }

.course-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0, 240, 255, 0.1); padding-top: 20px; }
.price { font-family: 'Orbitron', sans-serif; font-size: 22px; font-weight: 900; }
.price del { font-size: 14px; color: #556b7c; margin-left: 8px; }

.btn-course { text-decoration: none; border: 1px solid #00f0ff; color: #00f0ff; font-weight: 700; padding: 8px 18px; text-transform: uppercase; transition: 0.3s; }
.btn-course:hover { background: #00f0ff; color: #020208; box-shadow: 0 0 15px #00f0ff; }

/* CONTACT FORM & INPUTS */
.contact-container { max-width: 750px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.input-group { display: flex; gap: 20px; }

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 16px 20px; background: rgba(4, 4, 12, 0.8); border: 1px solid rgba(0, 240, 255, 0.2);
    color: #fff; font-size: 16px; outline: none; transition: 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    border-color: #ff007f;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}

/* FOOTER */
footer { padding: 40px 6%; border-top: 2px solid rgba(0, 240, 255, 0.2); background: #010105; }
.footer-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; flex-wrap: wrap; gap: 20px; }
footer p { color: #556b7c; font-size: 15px; }
.status { color: #00f0ff; font-family: 'Orbitron', sans-serif; font-weight: 700; text-shadow: 0 0 8px #00f0ff; }

.social-links { display: flex; gap: 20px; }
.social-links a { color: #00f0ff; font-size: 20px; transition: 0.3s; }
.social-links a:hover { color: #ff007f; transform: translateY(-3px); text-shadow: 0 0 10px #ff007f; }

/* LOGIN & SIGNUP UTILITIES */
.auth-container { width: 100%; max-width: 520px; padding: 45px 35px !important; text-align: left !important; border: 1px solid #00f0ff !important; margin: auto; }
.auth-header { margin-bottom: 30px; }
.back-home { display: inline-flex; align-items: center; gap: 6px; color: #556b7c; text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 15px; transition: 0.3s; }
.back-home:hover { color: #00f0ff; text-shadow: 0 0 8px #00f0ff; }
.auth-header h2 { font-family: 'Orbitron', sans-serif; font-size: 30px; font-weight: 900; letter-spacing: 2px; }
.auth-header p { color: #88a0b0; font-size: 14.5px; margin-top: 5px; }

.form-field { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.form-field label { font-size: 14px; color: #00f0ff; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.auth-options { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin: 5px 0; width: 100%; }
.remember-me { color: #88a0b0; cursor: pointer; }
.forgot-link { color: #ff007f; text-decoration: none; font-weight: 600; }
.auth-btn { width: 100%; padding: 15px !important; font-size: 16px !important; margin-top: 10px; }
.auth-footer { text-align: center; margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(0, 240, 255, 0.1); font-size: 15px; color: #88a0b0; }
.auth-footer a { color: #00f0ff; text-decoration: none; font-weight: 700; }
.auth-footer a:hover { text-decoration: underline; }

/* RESPONSIVE ENGINE */
#menu-bar { display: none; }
.navbar .checkbtn { font-size: 26px; color: #00f0ff; cursor: pointer; display: none; }

@media (max-width: 768px) {
    .navbar .checkbtn { display: block; }
    .navbar .nav-links {
        position: fixed; top: 68px; left: -100%; right: 0; bottom: 0;
        width: 100%; height: calc(100vh - 68px); background: #020208;
        border-top: 2px solid #00f0ff; display: flex; flex-direction: column;
        padding: 40px 20px; gap: 25px; transition: 0.4s ease-in-out; overflow-y: auto;
    }
    .navbar .nav-links a { margin-left: 0; text-align: center; display: block; font-size: 18px; width: 100%; }
    .auth-buttons { flex-direction: column; margin-left: 0; width: 100%; gap: 15px; }
    .auth-buttons a { width: 100%; text-align: center; }
    #menu-bar:checked ~ .nav-links { left: 0; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .input-group { flex-direction: column; gap: 20px; }
    .btn-outline { width: 100%; margin-left: 0; margin-top: 15px; }
    .btn-gradient { width: 100%; }
    .glass-card { padding: 30px 20px; }
    .footer-container { flex-direction: column; text-align: center; }
    .services-grid, .courses-grid { grid-template-columns: 1fr; }
}