/* =====================
   HERO & PAGE HEADERS
   ===================== */
@media screen and (min-width: 375px) {
    .hero-section {
        background: linear-gradient(135deg, #0d1117 0%, #0a2540 50%, #0d1117 100%);
        min-height: 45vh;
        padding: 60px 0;
    }
}

@media screen and (min-width: 1024px) {
    .hero-section {
        background: linear-gradient(135deg, #0d1117 0%, #0a2540 50%, #0d1117 100%);
        min-height: 85vh;
        padding: 60px 0;
    }
}


.page-header {
    background: linear-gradient(135deg, #0d1117 0%, #0a2540 50%, #0d1117 100%);
    min-height: 85vh;
    padding: 60px 0;
}

/* =====================
   NAVBAR
   ===================== */
.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.nav-link.active {
    color: #0dcaf0 !important;
    font-weight: 600;
}

/* =====================
   CARDS
   ===================== */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

/* =====================
   BUTTONS
   ===================== */
.btn-info {
    color: #fff;
    font-weight: 600;
}

.btn-info:hover {
    background-color: #0aa8c7;
    color: #fff;
}

/* =====================
   FOOTER
   ===================== */
footer a {
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #fff !important;
}

/* =====================
   FORM CONTROLS
   ===================== */
.form-control:focus {
    border-color: #0dcaf0;
    box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25);
}
