*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f5f5f5;
    font-family:Arial, sans-serif;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

.header{
    background:#fff;
    padding:20px 0;
    border-bottom:1px solid #ddd;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

.menu a{
    text-decoration:none;
    color:#000;
    margin-left:25px;
}

.hero{
    padding:150px 0;
    text-align:center;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff5a1f;
    color:#fff;
    text-decoration:none;
}
.custom-logo{
    max-width:90px;
    height:auto;
}

.header{
    background:#2f3136;
    padding:5px 0;
}

.header .container{
    max-width:1300px;
    margin:auto;
    padding:0 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.menu ul{
    list-style:none;
    display:flex;
    gap:30px;
    margin:0;
    padding:0;
}

.menu ul li a{
    text-decoration:none;
    color:#000;
    font-size:16px;
    font-weight:500;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

.menu ul li{
    list-style:none;
}

/* Mobile Responsive */

@media(max-width:768px){

    .header .container{
        flex-direction:column;
        gap:20px;
    }

    .menu ul{
        flex-direction:column;
        align-items:center;
        gap:10px;
    }

    .custom-logo{
        max-width:140px;
    }
}
.custom-logo{
    max-width:120px;
    height:auto;
    display:block;
}
.menu ul{
    display:flex;
    list-style:none;
    gap:45px;
    margin:0;
    padding:0;
}

.menu ul li a{
    color:#ffffff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

.menu ul li a:hover{
    color:#f4c400;
}
.header-btn{
    background:#f4c400;
    color:#000;
    text-decoration:none;
    padding:14px 28px;
    border-radius:6px;
    font-weight:700;
    transition:.3s;
}

.header-btn:hover{
    background:#ffd633;
}
@media(max-width:768px){

    .header .container{
        flex-direction:column;
        gap:15px;
    }

    .menu ul{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .header-btn{
        width:100%;
        text-align:center;
    }
}
/* Mobile Header */

@media (max-width:768px){

    .header{
        padding:8px 0;
    }

    .header .container{
        flex-direction:column;
        gap:10px;
    }

    .custom-logo{
        max-width:80px;
    }

    .menu ul{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .menu ul li a{
        font-size:16px;
    }

    /* Mobile me button hide */
    .header-btn{
        display:none;
    }
}
.menu-toggle{
    display:none;
    font-size:30px;
    color:#f4c400;
    cursor:pointer;
}

/* Mobile */

@media (max-width:768px){

    .header .container{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }

    .menu-toggle{
        display:block;
    }

    .menu{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#2f3136;
        padding:20px;
    }

    .menu.active{
        display:block;
    }

    .menu ul{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .header-btn{
        display:none;
    }

    .custom-logo{
        max-width:80px;
    }
}