* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #fff;
    color: #222;
}

/* ================= HEADER ================= */
.header {
    background: #0a4c8c;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    border:0px solid red;
}

.header-left {
    flex: 1;
}

.header-left small {
    display: block;
    font-size: 11px;
    opacity: .8;
}

.header-nav a {
    margin: 0 14px;
    font-size: 13px;
    cursor: pointer;
}

.login-btn {
    background: #ac4500;
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
}

/* ================= HERO ================= */
.hero {
    height: 75vh;
    background:
        linear-gradient(to right, rgba(0,0,0,.6), rgba(0,0,0,.1)),
        url("pic/pic1.webp");
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 80px;
    color: #fff;
}

.hero h1 {
    font-size: 44px;
    margin: 15px 0;
}

.hero strong {
    color: #29a3ff;
}

.outline-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
}

/* ================= EXPERIENCE ================= */
.experience {
    background: linear-gradient(180deg, #0b5fa5, #083b6d);
    color: #fff;
    padding: 80px 50px;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
    margin-top: -80px;
}

.experience-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circle-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    margin: auto;
}

/* ================= QUICKLINKS ================= */
.quicklinks {
    text-align: center;
    padding: 80px 60px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.quick-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* ================= NOTICES ================= */
.notice-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.notice {
    width: 360px;
    padding: 35px;
    border-radius: 18px;
    color: #fff;
}

.notice.blue { background: #33a8ff; }
.notice.green { background: #7bb800; }

.notice button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
}

/* ================= MOBILE SECTION ================= */
.mobile {
    height: 60vh;
    background:
        linear-gradient(to right, rgba(0,0,0,.6), rgba(0,0,0,.2)),
        url("pic/pic1.webp");
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 80px;
    color: #fff;
}

/* ================= FOOTER ================= */
.footer {
    background: #083b6d;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.footer-links a {
    margin: 0 12px;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* ================= MOBILE NAV FIX ================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .header {
        flex-wrap: wrap;
        position: relative;
    }

    .header-nav {
        display: none;
        width: 100%;
        background: #0a4c8c;
        flex-direction: column;
        text-align: center;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }

    .header-nav a {
        padding: 12px 0;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .header-nav.active {
        display: flex;
    }

    .login-btn {
        margin-top: 5px;
    }

    .hero,
    .mobile {
        padding-left: 20px;
        padding-right: 20px;
        height: auto;
        text-align: center;
        justify-content: center;
    }

    .experience-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

/* ================= SMALL PHONES ================= */
@media (max-width: 576px) {

    .hero h1 {
        font-size: 28px;
    }

    .mobile h2 {
        font-size: 26px;
    }

    .experience {
        padding: 60px 20px;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
    }

    .quicklinks {
        padding: 60px 20px;
    }

    .notice {
        width: 100%;
    }

    .footer-links a {
        display: block;
        margin: 8px 0;
    }
}
