/* ==== GLOBAL STYLES ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #000;
    padding-top: 80px; /* prevents overlap with fixed navbar */
}

/* ==== HEADER ==== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==== NAVBAR ==== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==== LOGO ==== */
.logo img {
    height: 55px;
}

/* ==== NAV LINKS ==== */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 15px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
    background: rgba(255, 102, 0, 0.08);
}

/* ==== DROPDOWN ==== */
.dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    padding: 20px 30px;
    border-top: 2px solid #ff6600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    flex-direction: row;
    gap: 40px;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.column {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.column a {
    color: #ddd;
    margin: 6px 0;
    font-size: 14px;
}

.column a:hover {
    color: #ff6600;
}

/* ==== ICONS ==== */
.icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icons i {
    font-size: 18px;
    color: #222;
    cursor: pointer;
}

.icons i:hover {
    color: #ff6600;
}

/* ==== HAMBURGER ==== */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .navbar {
        padding: 12px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 12px;
    }

    .dropdown-content {
        position: static;
        transform: none;
        flex-direction: column;
        background: none;
        box-shadow: none;
        border: none;
        padding: 0;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: flex;
    }

    .column a {
        color: #222;
        padding-left: 10px;
    }
}

/* <=================== Footer section (UNCHANGED) ===================> */

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

footer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

footer p,
footer li,
footer a {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.footer-section {
    flex: 1 1 250px;
    min-width: 220px;
}

ul {
    list-style: none;
}

ul li::before {
    content: "› ";
    color: #ccc;
}

.footer-section img {
    width: 140px;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons div {
    width: 35px;
    height: 35px;
    background-color: #333;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    background-color: #111;
    color: #aaa;
    font-size: 0.9rem;
    padding: 15px 0;
    border-top: 1px solid #333;
}

@media (max-width: 900px) {
    footer {
        flex-direction: column;
        gap: 40px;
    }
}

/* <=================== Closed Footer section ===================> */