* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: white;
    overflow-x: hidden;
}

/* Header Top */
.header__top,
.header {
    position: relative;
    z-index: 1;
}

.header__bg-colors {
    top: 0;
    left: 0;
    right: 0;
}

.header__bg-colors img {
    width: 100%;
    height: auto;
}

.header__top {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    padding: 10px 50px;
    background: #000;
    font-family: "Cerapro_Medium", sans-serif;
    font-size: 16px;
    line-height: 18px;
    white-space: nowrap;
}
hr {
    border-top: 1px solid white;
    opacity: 1;
}

.header__top a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

/* Main Header */
.header {
    display: flex; 
    /* flex-wrap: wrap; */
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #000;
    flex-shrink: 0;
}

.header__logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
    white-space: nowrap;
    cursor: pointer;
}
.header__logo img{
    width: 200px;
}

.header__menu {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.header__menu-item {
    margin: 0 18px;
}

.header__menu-link {
    color: white;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
    font-size: 20px;
    font-family: "Cerapro_Medium";
    /* Space for the hover effect */
}

.header__menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background-image: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    transition: width 0.3s ease-in-out;
}

.header__menu-link:hover::after {
    width: 100%;
}


.header__hire-btn {
    text-decoration: none;
    margin-left: 16px;
    line-height: 1;
    white-space: nowrap;
    font-size: 20px;
    font-family: "Cerapro_bold";
}

/* Hamburger Menu */
.header__hamburger {
    display: none;
    cursor: pointer;
}

.header__hamburger .header__bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    background-color: white;
}

/* Offcanvas Menu */
.header__offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 99;
}

.header__offcanvas--active {
    right: 0;
}

.header__offcanvas-link {
    color: white;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    white-space: nowrap;
    font-family: "Cerapro_Medium";
    font-size: 22px;
}

.header__close-btn {
    text-align: right;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

/* Responsive Styles */

@media (max-width: 1399px) {
    .header__menu-item {
        margin: 0 10px;
    }

    .header__hire-btn {
        margin-left: 10px;
    }

}

@media screen and (min-device-width: 992px) and (max-device-width: 1399px) {
    .header {
        /* justify-content: center; */
        gap: 20px;
        padding: 20px 20px;
    }
    .header__logo img{
        width: 160px !important;
    }
    .header__menu-link{
        font-size: 16px;
    }
    .header__hire-btn{
        font-size: 14px;
        line-height: 1;
    }
    .header__hire-btn{
        padding: 12px 14px;
    }
    .header__top{
        flex-wrap: nowrap;
        padding: 20px 20px;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 20px 30px;
    }
    .header__top{
        justify-content: center;
    }
    .header__logo img {
        width: 180px !important;
    }

    .header__menu,
    .header__hire-btn {
        display: none;
    }

    .header__hamburger {
        display: block;
    }
}

@media (max-width: 810px) {
    .header__top {
        padding: 10px 20px;
        font-size: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .header__logo img {
        width: 150px;
        height: 60px;
    }
}


@media (max-width: 768px) {


    .header {
        padding: 15px 20px;
    }

    .header__offcanvas {
        width: 200px;
    }
}