* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



.navbar_hed {
    width: 100%;
    height: 6vw;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    min-width: 0;
}

.navbar_hed .logo {
    width: 10vw;
    height: 3vw;
    overflow: hidden;
    cursor: pointer;
}

.navbar_hed .logo img {
    width: 100%;
    height: 100%;
}

.nav_left {
    display: flex;
    align-items: center;
    gap: 3vw;
    padding-left: 10vw;
}

.nav_left .menu {
    display: flex;
    gap: 2vw;
}

.nav_left a {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.nav_right {
    padding-right: 10vw;
    display: flex;
    align-items: center;
    gap: 2vw;
}

.nav_right .free_btn {
    background-color: #F2D701;
    padding: 1vw 2vw;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.nav_right .call_btn {
    padding: 0.5vw 1.5vw;
    border: 1px solid #ccc;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1vw;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.call_icon {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    background-color: #F2D701;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Hide hamburger on desktop by default */
.hamburger {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar_hed {
        height: 70px;
        padding: 0 20px;
    }

    .nav_left {
        padding-left: 0;
        width: auto;
    }

    .nav_right {
        padding-right: 0;
        gap: 15px;
    }

    .nav_left .menu,
    .call_text,
    .free_btn {
        display: none;
    }

    /* Correct hamburger display */
    .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #000;
        margin-left: 15px;
    }

    .mobile-menu-active .nav_left .menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 15px;
        z-index: 1000;
    }

    .mobile-menu-active .call_btn {
        display: none;
    }

    .call_btn {
        padding: 8px 12px !important;
    }

    .call_icon {
        width: 35px;
        height: 35px;
    }

    .logo img {
        max-width: 120px;
    }

    .navbar_hed .logo {
        width: 20vw;
        height: 10vw;
        overflow: hidden;
        cursor: pointer;
    }

    .navbar_hed .logo img {
        width: 100%;
        height: 100%;
    }
}


@media (max-width: 380px) {
    .logo img {
        max-width: 80px;
    }

    .call_icon {
        width: 25px;
        height: 25px;
    }

    .hamburger {
        font-size: 20px;
    }
}






/* form data css code */


.form_data {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.name_email {
    display: flex;
    gap: 1vw;
}

.name_email .name {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.name_email .email {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.name_email input {
    width: 17vw;
}


.phone_square {
    display: flex;
    gap: 1vw;
}

.phone_square .phone {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.phone_square .square {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.name_email,
.phone_square input {
    width: 17vw;
}

.service {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}


.submit_btn {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.submit_btn .check span {
    font-size: 12px;
}

.submit_btn button {
    width: 12vw;
    background-color: #000;
    color: #fff;
}

.message {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

@media (max-width: 450px) {

    .form_data {
        gap: 5vw;
    }

    .name_email {
        flex-direction: column;
        gap: 5vw;
    }

    .name_email .name {
        flex-direction: column;
        gap: 2vw;
    }

    .name_email .email {
        flex-direction: column;
        gap: 2vw;
    }

    .name_email input {
        width: 80vw;
    }


    .phone_square {
        flex-direction: column;
        gap: 5vw;
    }

    .phone_square .phone {
        flex-direction: column;
        gap: 2vw;
    }

    .phone_square .square {
        flex-direction: column;
        gap: 2vw;
    }

    .name_email,
    .phone_square input {
        width: 80vw;
    }

    .service {
        gap: 2vw;
    }


    .submit_btn {
        gap: 5vw;
    }

    .submit_btn .check span {
        font-size: 14px;
    }

    .submit_btn button {
        width: 32vw;
    }
}