* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    color: #222;
    line-height: 1.6;
    padding-top: 80px; /* adjust if header height changes */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: #0b5ed7;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}



.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

nav a {
    color: #fff;
    margin-left: 1rem;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("images/school.jpg") center/cover no-repeat;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #ffc107;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.section {
    padding: 4rem 0;
}

.section.light {
    background: #f4f6f8;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta {
    text-align: center;
}

footer {
    background: #0b5ed7;
    color: #fff;
    padding: 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

footer p {
    margin-top: 0.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
    position: relative;
    touch-action: manipulation;
}


.nav-links {
    display: flex;
    z-index: 1050;
}

.menu-toggle {
    -webkit-tap-highlight-color: transparent;
}

.hero {
    background-image: url("dwis_front.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* full screen height */
    display: flex;
    align-items: center;
}

.logo {
    margin: 0;
    line-height: 1;
}


.logo img {
    height: 45px;      /* ideal for a navbar */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-link span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff; /* change from black to white */
}

@media (max-width: 600px) {
    .logo-link span {
        display: none;
    }
}

.logo-link:hover span {
    text-decoration: underline;
}

.success-box {
    max-width: 700px;
    margin: auto;
    text-align: center;
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.success-icon {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.success-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.success-actions {
    margin: 2rem 0;
}

.success-actions .btn {
    margin: 0 0.5rem;
}

.note {
    font-size: 0.9rem;
    color: #666;
}




@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #0b5ed7;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 1rem 0;
    }

    .nav-links a {
        padding: 0.8rem;
        text-align: center;
        margin: 0;
    }

    .nav-links.show {
        display: flex;
    }

    .hero h2 {
        font-size: 1.8rem;
    }
}

