/*header*/
header
{
    width: 100%;
    
}
section.section-2{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    background: #ffe4d5;
    color: white;
    padding: 10px 20px;
}

.logo img {
    height: 120px;
}

div.phone-apointment{
    display: flex;
    align-items: center;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
    cursor: default;
}

div.phone-apointment a
{
    text-decoration: none;
    font-size: 18px;
    padding: 10px 12px;
    border-radius: 30px;
    margin: 0px 15px;
    transition: box-shadow 0.5s;
    transition: background-color 0.5s;
    color: #000;
}

div.phone-apointment a:hover
{
    text-decoration: none;
    box-shadow: 0px 0px 10px black;
    background-color:White;
}

.hnav
{
    position: sticky;
    top: 0;
    align-items: center;   
    justify-content: space-evenly;
    box-shadow: 1px 5px 15px rgba(0, 0, 0, 0.6);
    background-color: #1ecbe1;
    transition: 0.4s;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 999;
    height: 45px;
}

.hnav ul{
    text-align: center;
    flex-direction: row;
}

.hnav li
{
    text-align: center;
    display:inline-block;
}

.hnav ul li a
{
    height: 45px;
    font-size: 20px;
    display: block;
    color: black;
    text-decoration: none;
    margin: 0px 15px;
    font-weight: 600;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-radius: 5px;
    transition-property: border-bottom,background-color;
    transition-duration: 0.4s;
}

.hnav ul li a:hover
{
    height: 45px;
    background-color: #A7E6FF;
    border-bottom: 4px solid #4C3BCF;
    text-decoration: none;
}

.dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 5;
    list-style-type: none;
}

.dropdown .dropdown-content li 
{
    display:flex;
    margin: 5px;
}

.dropdown .dropdown-content li .dropdown-links
{
    font-size: 20px;
    display: block;
    color: black;
    padding: 8px 10px;
    margin: 0px 15px;
    font-weight: 500;
    border-top: 4px solid transparent;    
    border-bottom: 4px solid transparent;
    border-radius: 2px;
    transition-property: border-bottom,background-color;
    transition-duration: 0.4s;
}

.dropdown .dropdown-content li .dropdown-links:hover {
    background-color: #f1f1f1;
    border-bottom: 2px solid black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#toggle{
    display: none;
}

#toggle-btn{
    display: none;
    text-align: right;
}

div #toggle-btn{
    height: 45px;
}

#toggle-btn i{
    font-size: 25px;
    padding: 7px;
    background-color: white;
    margin-top: 5px;
    margin-right: 5px;
    border-radius: 5px;
    cursor: pointer;
}

@media screen and (max-width: 768px) 
{
    section.section-2{
        flex-direction: column;
        padding-bottom: 12px;
    }
    
    .logo img 
    {
        margin-left:0px;
        height:100px;
    }
    
    #toggle-btn{
        display: block;
    }

    .hnav > ul{
        display: none;
    }

    #toggle:checked + ul{
        display: block;
    }

    .hnav ul li{
        display: block;
        text-align: left;
    }

    .hnav ul li a{
        font-size: 16px;
    }
    
    .dropdown .dropdown-content li .dropdown-links
    {
        font-size: 15px;
    }
}

@media (max-width:426px)
{
    section.section-2, .phone-apointment{
        flex-direction: column;
        padding-bottom: 12px;
    }


    #toggle-btn{
        display: block;
    }

    #toggle-btn i{
        font-size: 20px;
        padding: 8px;
    }

    .hnav > ul{
        display: none;
    }

    #toggle:checked + ul{
        display: block;
    }

    .hnav ul li{
        display: block;
        text-align: left;
    }

    .hnav ul li a{
        font-size: 14px;
    }
}

/*feedback popup*/
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.popup-content form input, .popup-content form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-content form button {
    padding: 10px 20px;
    background-color: #2E4A62;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup-content form button:hover {
    background-color: #1C3A51;
}

.feedback-form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.feedback-form h3, .feedback-form h4 {
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    color: #333;
    margin-top:10px;
}

.feedback-form textarea {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.radio-group 
{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.radio-group label {
    
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
}

.name-fields, .contact-fields {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.name-fields input, .contact-fields input {
    width: 48%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.consent {
    margin-bottom: 20px;
}

.consent label {
    display: block;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
}

.feedback-form button {
    width: 100%;
    padding: 15px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    cursor: pointer;
}

.feedback-form button:hover {
    background-color: #357abd;
}

.feedback-form .btn {
    width: 100%;
    padding: 15px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    cursor: pointer;
}

.feedback-form .btn
{
    background-color: #357abd;
    color: white;
}

@media (max-width: 600px) {
    .name-fields, .contact-fields {
        flex-direction: column;
    }

    .name-fields input, .contact-fields input {
        width: 100%;
        margin-bottom: 10px;
    }
}
