/* read more btn */

.read-more-btn {
    /* background-color: #bdc84e;  */
    /* color: #bdc84e; */
    color: #2b4e9f;
    float:right;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Change color on hover */
.read-more-btn:hover {
    /* background-color: black !important; */
    color: black !important;
}

/* footer */
body.seo_version .copyrights {
    background-color: #ffffff;
    padding: 10px 0px !important;
}

/* index - director section */
body.seo_version .seo-services img {
    /* max-width: 120px; */
    margin: 0 auto;
    padding: 0px;
    border-radius: 0%;
    border: none;  
    display: block;
    width:auto;
}

.who {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px; /* Smooth rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px; /* Adjust based on your design */
    margin: auto;
}

.who img {
    width: 100%; /* Makes image responsive */
    max-width: 250px; /* Ensures larger images */
    height: auto;
    border-radius: 10px; /* Rounded corners */
    border: none !important; /* Removes unwanted border */
}

.who h4 {
    margin-top: 10px;
    font-weight: bold;
}

.who p {
    color: #777; /* Light gray text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .who {
        max-width: 80%; /* Adjust card size on smaller screens */
    }
}


