/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/* ================= TOPBAR ================= */

.topbar{
    width:100%;
    background:#1f2f46;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 7%;

    position:relative;
    z-index:9999;
}

.topbar-left{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.top-item{
    display:flex;
    align-items:center;
    gap:10px;

    color:white;

    font-size:14px;
    font-weight:500;
}

.top-item i{
    color:#f7b733;
    font-size:15px;
}

.topbar-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.topbar-right a{
    width:38px;
    height:38px;

    background:rgba(255,255,255,0.12);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    text-decoration:none;

    transition:0.3s;
}

.topbar-right a:hover{
    background:#f7b733;
    color:black;

    transform:translateY(-3px);
}

/* ================= HEADER ================= */

.header{
    width:100%;
    background:white;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:16px 7%;

    box-shadow:0 2px 12px rgba(0,0,0,0.06);

    position:sticky;
    top:0;

    z-index:999;
}

/* ================= LOGO ================= */

.logo-box img{
    height:75px;
    display:block;
}

/* ================= NAVBAR ================= */

.navbar{
    display:flex;
    align-items:center;
    gap:35px;
}

.navbar a{
    text-decoration:none;

    color:#444;

    font-size:17px;
    font-weight:500;

    transition:0.3s;
}

.navbar a:hover{
    color:#1d67f2;
}

/* ================= DROPDOWN ================= */

.dropdown{
    position:relative;
}

.dropbtn{
    border:none;
    background:none;

    font-size:17px;
    font-weight:500;

    color:#444;

    cursor:pointer;

    display:flex;
    align-items:center;
    gap:8px;

    transition:0.3s;
}

.dropbtn:hover{
    color:#1d67f2;
}

.dropdown-content{
    position:absolute;

    top:45px;
    left:0;

    background:white;

    min-width:200px;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    display:none;

    z-index:999;
}

.dropdown-content a{
    display:block;

    padding:14px 18px;

    color:#444;

    font-size:15px;
}

.dropdown-content a:hover{
    background:#f4f7ff;
    color:#1d67f2;
}

.dropdown:hover .dropdown-content{
    display:block;
}

/* ================= BUTTON ================= */

.paint-btn{
    background:#1d67f2;

    color:white !important;

    padding:13px 28px;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    transition:0.3s;
}

.paint-btn:hover{
    background:#0b57e3;

    transform:translateY(-2px);
}

/* ================= MOBILE BUTTON ================= */

.menu-btn{
    display:none;

    font-size:26px;

    cursor:pointer;

    color:#1f2f46;
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .topbar{
        flex-direction:column;
        gap:15px;

        text-align:center;
    }

    .topbar-left{
        justify-content:center;
        gap:18px;
    }

    .header{
        padding:15px 5%;
    }

    .menu-btn{
        display:block;
    }

    .navbar{
        position:absolute;

        top:100%;
        left:0;

        width:100%;

        background:white;

        flex-direction:column;

        align-items:flex-start;

        padding:20px;

        gap:20px;

        display:none;

        box-shadow:0 8px 20px rgba(0,0,0,0.08);
    }

    .navbar.active{
        display:flex;
    }

    .dropdown{
        width:100%;
    }

    .dropbtn{
        width:100%;
        justify-content:space-between;
    }

    .dropdown-content{
        position:static;

        width:100%;

        box-shadow:none;

        margin-top:10px;

        display:block;

        border:1px solid #eee;
    }

    .paint-btn{
        width:100%;
        text-align:center;
    }
}

/* ================= MOBILE ================= */

@media(max-width:576px){

    .top-item{
        font-size:13px;
    }

    .topbar-right a{
        width:34px;
        height:34px;
    }

    .logo-box img{
        height:60px;
    }

    .navbar a{
        font-size:15px;
    }

    .dropbtn{
        font-size:15px;
    }

    .paint-btn{
        font-size:14px;
        padding:12px 20px;
    }
}