@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0px;
    padding: 0px;
}

body {
    background-image: url(../images/back3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
}

/* ===============================
   HEADER / NAVBAR
================================ */
header.nav {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Desktop nav links */
.destop_btn {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
}

.destop_btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #ef4444;
    transition: width 0.3s ease;
}

.destop_btn:hover::after {
    width: 100%;
}

/* Action buttons (WhatsApp, Call, Maps) */
.nav-btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ===============================
   MOBILE MENU
================================ */
#mobileMenu a {
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

#mobileMenu a:hover {
    transform: scale(1.08);
}

/* ===============================
   SECTION HEADINGS
================================ */
.heading_sm {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 30px;
    position: relative;
}

/* ===============================
   RESULTS / NOTICE SECTION
================================ */
#results {
    margin: 30px auto;
    border-radius: 14px;
    max-width: 1100px;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.15);

}

/* Year buttons */
.year {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.exam_btn {
    display: flex;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
}

.exam_btn:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-3px);
}

/* Notice text */
.coming {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #16a34a;
    padding: 15px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

/* ===============================
   FOOTER
================================ */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
}

footer p {
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #374151;
}

/* ===============================
   RESPONSIVE TWEAKS
================================ */
@media (max-width: 768px) {
    .heading_sm {
        font-size: 24px;
    }

    .exam_btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .coming {
        font-size: 18px;
    }
}