.container {
    background-color: white;
}

.image-pharmacist {
    background-color: white;
}


.image-pharmacist img {
    margin-left: 45px;
    width: 400px;

}

.image-app img {

    width: 120px;

}
.grid-container{
    display: grid;
}


.btn-sm-screen {
    grid-row-start: 5;
    grid-row-end: 5;
    grid-column-start: 1;
    grid-column-end: 5;
    display: flex;
    justify-content: stretch; 
    align-items: end; 
    flex-wrap: wrap; 
    gap: 10px; 
}

.app-icon{
    width: 110px;
}

.header-1 .p1 {
    grid-column-start: 1;
    grid-column-end: 3;

    font-size: 32px;
}

.header-1 .p2 {
    grid-column-start: 1;
    grid-column-end: 3;

    font-size: 22px;
}

.header-1 .p3 {
    grid-column-start: 1;
    grid-column-end: 3;


}

.header-1 .p3 a {
    text-decoration: none;
    color: steelblue;
    font-size: 16px; 
    display: flex;
    align-items: center; 
}

.header-1 .p3 a:hover,
.header-1 .p3 a:hover i {
    animation: bounce 2s ease-in-out;
    color: dodgerblue;
}


.header-1 .p3 a i {
    margin-right: 8px; 
    color: steelblue; 
    font-size: 18px; 
}

.image-wrap {
    box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.089);
    background-color: white;
    height: 80px;
    width: 75px;
    border-radius: 10px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.image-wrap:hover {
    transform: scale(1.2);
}

.image-wrap img {
    margin-top: 5px;
    border-radius: 10px;
    width: 50px;
    height: 50px;
}

.image-app img{
    width: 120px;

}

.content_shape {
    align-items: flex-start;
    margin-top: 10px;
    padding: 0 10px 0 10px;
    border-radius: 25px 25px 0 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 141, 0) 100%);
}

.category {
    margin: 15px 0 15px 25px;
}



.footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    color: white;
    border-radius: 15px;
    margin-top: 70px;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    /* Adjust the value as needed */
    right: 10%;
    /* Adjust the value as needed */
    z-index: 1000;
    /* Ensure it appears above other elements */
    text-align: center;
}

.whatsapp-icon img {
    width: 80px;
    /* Adjust the size as needed */
    height: 80px;
    /* Adjust the size as needed */
    border-radius: 50%;
    /* Make it a circle */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Add some shadow for better visibility */
    cursor: pointer;
}

.whatsapp-menu {
    width: 200px;
    display: none;
    position: absolute;
    bottom: 50px;
    /* Adjust based on the height of the icon */
    right: 100px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Add some shadow for better visibility */
    border-radius: 10px;
    overflow: hidden;
}

.whatsapp-menu a {
    display: block;
    padding: 10px 15px;
    color: black;
    /* WhatsApp green */
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.whatsapp-menu a:last-child {
    border-bottom: none;
}

.whatsapp-menu a:hover {
    background: #f1f1f1;
}

@media only screen and (max-width: 700px) {
    .image-pharmacist {

        background-color: white;
    }

    .image-pharmacist img {
        margin-left: 70px;
        margin-bottom: -5px;
        width: 180px;

    }

    .grid-container{
    display: grid;
    row-gap: 1px;
}

    .header-1 .p1 {
        grid-column-start: 1;
        grid-column-end: 4;
        line-height: 15px;
        font-size: 24px;
    }

    .header-1 .p2 {
        line-height: 20px;
        font-size: 18px;
        margin-bottom: 5px;
    }
    .header-1 .p3 {
        line-height: 18px;
        font-size: 16px;
    }

    .image-wrap {
        box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.089);
        background-color: white;
        height: 80px;
        width: 65px;
        border-radius: 10px;
        display: inline-block;
    }
    .image-text{
        font-size: 12px;
    }

    .image-wrap img {
        margin-top: 5px;
        border-radius: 10px;
        width: 50px;
        height: 50px;
    }

    .btn-sm-screen {
        width: 100%;
        grid-row-start: 1;
        grid-row-end: 4;
        grid-column-start: 1;
        grid-column-end: 4;
        display: flex;
        justify-content: center; /* Center the content horizontally */
        align-items: center; /* Center the content vertically if needed */
        flex-wrap: wrap; /* Allows wrapping if items do not fit in one row */
        gap: 10px; /* Space between elements */
    }
    .feedback-btn{
        margin-right: 2px;
           display: flex;
    justify-content: flex-start; 
    }

    .app-buttons {
    margin-right: 2px;
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between app buttons */
}

    .app-icon {
        width: 100px; /* Make app icons smaller */
        height: auto;
    }
    .feedback-btn {
        font-size: 13px;
        width: 120px;
        margin-bottom: 10px; /* Space between feedback form and app buttons */
        margin-right: 5px;
    }

    .app-buttons img{
        width: 90px;
    }



    .content_shape {
        align-items: flex-start;
        margin-top: 10px;
        padding: 0 10px 0 10px;
        border-radius: 25px 25px 0 0;
        background: rgb(255, 255, 255);
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 171, 0, 1) 100%);
    }

    .social_align {

        width: 100%;

    }

    .category {
        margin: 15px 0 15px 25px;
    }



    .footer {
        background-color: rgba(0, 0, 0, 0.8);
        padding: 20px 0;
        color: white;
        border-radius: 15px;
        margin-top: 70px;
    }

    .whatsapp-icon {
        opacity: 0.8;
        position: fixed;
        bottom: 30px;
        /* Adjust the value as needed */
        right: 3%;
        /* Adjust the value as needed */
        z-index: 1000;
        /* Ensure it appears above other elements */
        text-align: center;
    }

    .whatsapp-icon img {
        width: 80px;
        /* Adjust the size as needed */
        height: 80px;
        /* Adjust the size as needed */
        border-radius: 50%;
        /* Make it a circle */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        /* Add some shadow for better visibility */
        cursor: pointer;
    }

    .whatsapp-menu {
        width: 200px;
        display: none;
        position: absolute;
        bottom: 50px;
        /* Adjust based on the height of the icon */
        right: 50px;

        background: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        /* Add some shadow for better visibility */
        border-radius: 10px;
        overflow: hidden;
    }

    .whatsapp-menu a {
        display: block;
        padding: 10px 15px;
        color: black;
        /* WhatsApp green */
        text-decoration: none;
        border-bottom: 1px solid #ddd;
    }

    .whatsapp-menu a:last-child {
        border-bottom: none;
    }

    .whatsapp-menu a:hover {
        background: #f1f1f1;
    }

}