/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Rajdhani:wght@500;600;700&display=swap');

/* --- Reset & Global Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050507;
    color: #e2e8f0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-red {
    color: #ff2a2a;
    text-shadow: 0 0 10px rgba(255, 42, 42, 0.4);
}

.white-text {
    color: #fff !important;
}

.text-center {
    text-align: center;
}

.subtitle {
    display: block;
    color: #38bdf8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* --- Header / Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(5, 5, 7, 0.95);
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: #ff2a2a;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #ff2a2a;
}

.btn-enroll {
    background-color: #ff2a2a;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
}

/* --- Hero Section --- */
.hero-section {
    padding: 90px 0 40px 0;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255, 42, 42, 0.12) 0%, rgba(5, 5, 7, 0) 65%);
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 58px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 680px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 19px;
}

/* --- Top Category Track Summary --- */
.tracks-summary {
    padding: 30px 0 60px 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.summary-card {
    background: #0b0f19;
    border: 1px solid #1e293b;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.summary-card .s-icon {
    color: #38bdf8;
    font-size: 20px;
    margin-top: 3px;
}

.summary-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.summary-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
}

/* --- Programs Grid Main Cards --- */
.programs-section {
    padding: 40px 0 80px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: #0b0f19;
    border: 1px solid #1e293b;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}

.program-card:hover {
    border-color: rgba(255, 42, 42, 0.5);
}

.card-img-wrapper {
    position: relative;
    height: 190px;
    background-color: #050507;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

/* Badges setup */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 1px;
    z-index: 5;
}

.red-badge {
    background-color: #ff2a2a;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 42, 42, 0.6);
}

.white-badge {
    background-color: #fff;
    color: #000;
}

/* Card layout details */
.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 21px;
    color: #fff;
    margin-bottom: 12px;
}

.card-desc {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 20px;
    height: 70px;
    overflow: hidden;
    line-height: 1.4;
}

.card-features {
    list-style: none;
    margin-bottom: 25px;
    border-top: 1px dashed #1e293b;
    padding-top: 15px;
}

.card-features li {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.card-features li i {
    color: #ff2a2a;
    font-size: 12px;
    margin-right: 10px;
}

/* Card bottom mechanics */
.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1e293b;
    padding-top: 15px;
}

.card-footer .price {
    font-size: 14px;
    color: #64748b;
}

.card-footer .enroll-link {
    font-family: 'Orbitron', sans-serif;
    color: #38bdf8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.card-footer .enroll-link:hover {
    color: #ff2a2a;
}

/* --- Non-Negotiables Section --- */
.non-negotiables {
    padding: 80px 0;
    border-top: 1px solid #1e293b;
    background: radial-gradient(circle at bottom, rgba(56, 189, 248, 0.05) 0%, rgba(5, 5, 7, 0) 70%);
}

.negotiables-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.neg-card {
    background: #0b0f19;
    border: 1px solid #1e293b;
    padding: 25px 10px;
    text-align: center;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.neg-icon {
    color: #ff2a2a;
    font-size: 22px;
    margin-bottom: 15px;
}

.neg-card h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.button-wrapper {
    margin-top: 60px;
}

.btn-primary-action {
    display: inline-block;
    background-color: #ff2a2a;
    color: #fff;
    text-decoration: none;
    padding: 16px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(255, 42, 42, 0.4);
    letter-spacing: 1px;
}

/* --- Footer Area --- */
.footer {
    background-color: #050507;
    border-top: 1px solid #1e293b;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 15px;
    margin: 20px 0;
}

.social-icons a {
    color: #94a3b8;
    margin-right: 15px;
    font-size: 16px;
}

.social-icons a:hover {
    color: #ff2a2a;
}

.footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #ff2a2a;
}

.contact-info p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-info p i {
    color: #ff2a2a;
    margin-right: 8px;
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

.bottom-links a {
    color: #64748b;
    text-decoration: none;
    margin-left: 20px;
}

/* --- Responsive Adaptability Breakpoints --- */
@media (max-width: 1100px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .negotiables-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .programs-grid, .summary-grid, .negotiables-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}