body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.head {
min-height: 80px;
padding: 1px 0;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #ffffff;
flex-wrap: wrap; 
}

.head-logo img {
margin-right: 100px;
max-height: 100px;
max-width: auto;
animation: fadeInRight 1.5s ease-in-out;
}

.left-logo {
margin-left: 100px;
max-height: 120px;
max-width: 200px;
border-radius: 30%;
object-fit: cover;
animation: fadeInLeft 1.5s ease-in-out;
}

@media (max-width: 768px) {

.head-logo img, .left-logo {
margin: 0 auto;
max-height: 80px; 
max-width: 120px;
display: block;
}
.head {
justify-content: center; 
}
}

@media (max-width: 576px) {
.head-logo img, .left-logo {
max-height: 60px; 
max-width: 100px;
}
}

.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin: 0 auto 20px;  /* Set margin-top to 0 */
    max-width: 1100px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 50px 50px 50px;
}

.content-container h2 {
    text-align: center; /* This centers the h3 heading */
}

.content-container img {
    max-width: 80%;
    height: 400px;
    border-radius: 10px;
    margin: 0 auto; /* This centers the image */
}

.note {
    text-align: left;
}

.back-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgb(52, 98, 52);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.back-button:hover {
    background-color: white;
    color:  rgb(52, 98, 52);
    border: 2px solid  rgb(52, 98, 52);
}



/* =========================poop up======================== */
.poop {
    background: white;
    border-radius: 10px;
    max-width: 800px;
    margin: auto;
    padding:5px;
    position: relative;
    animation: zoomIn 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the text and image horizontally */
    text-align: center; /* Center the text */
    line-height: 14px;
}

.poop img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content inside the modal body */
    justify-content: center;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.btn-link{
text-decoration: none;
color: black;
}
.btn-link:hover{
    color:  rgb(52, 98, 52);
    border: 2px solid  rgb(52, 98, 52);
    text-decoration: none;
}
.ser-head{
    font-weight: 540;
    font-size: 30px;
}
.quali{
    font-weight: bold;
    font-size: 16px;
}
