* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f6f7fb;
    color: #222;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: white;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 99;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 22px;
    font-weight: bold;
    color: #222;
}

.logo span {
    color: #007bff;
}

.nav-links {
    display: flex;
    gap: 18px;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    padding: 8px 10px;
    border-radius: 8px;
}

.nav-links li a:hover {
    background: #f1f1f1;
    color: #007bff;
}

.btn {
    background: #007bff;
    padding: 8px 14px !important;
    color: white !important;
    border-radius: 10px;
    display: inline-block;
}

.btn:hover {
    background: #005ec4 !important;
    color: white !important;
}

/* MENU TOGGLE BUTTON */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    font-weight: bold;
    color: #222;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #007bff, #00c6ff);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero a {
    display: inline-block;
    background: white;
    color: #007bff;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: bold;
}

.hero a:hover {
    background: #f1f1f1;
}

/* SECTION */
.section {
    padding: 55px 0;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.card a {
    display: inline-block;
    margin-top: 14px;
    font-weight: bold;
    color: #007bff;
}

/* FORM STYLE */
input, textarea, select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    margin-top: 6px;
    margin-bottom: 12px;
}

textarea {
    resize: vertical;
}

/* FOOTER */
.footer {
    background: #222;
    padding: 25px 0;
    color: white;
    text-align: center;
    margin-top: 30px;
}

/* RESPONSIVE HP */
@media(max-width: 768px){

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        width: 100%;
        margin-top: 15px;
        padding: 15px;
        border-radius: 14px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        text-align: left;
    }

    .hero {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .section h2 {
        font-size: 22px;
    }

    .card {
        padding: 18px;
    }
}
