.my-float{
	margin-top:16px;
}

body {
    font-family: Arial, sans-serif;
}

.why-us-section {
    padding: 50px 0;
    background-color: #fff; /* Background color for the section */
}

.founders-section {
    padding: 50px 0;
    background-color: #4c9b25; /* Background color for the section */
    color: #ffffff; /* Font color (white) for better contrast */
    text-align: center; /* Center align text */
}

.founder-box {
    background-color: rgba(255, 255, 255, 0.9); /* Light background color for founder boxes */
    padding: 30px; /* Padding around the content */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle lift */
    margin-bottom: 30px; /* Space between founder boxes */
    text-align: left; /* Left align text inside boxes */
}

.founder-img {
    max-width: 150px; /* Limit maximum width of the image */
    border-radius: 50%; /* Make the image circular */
    margin-bottom: 20px; /* Space between image and text */
}

.founder-img-1 {
    max-width: 150px; /* Limit maximum width of the image */
    border-radius: 50%; /* Make the image circular */
    margin-bottom: 20px; /* Space between image and text */
    margin-top: 25px;
}

.founder-title {
    text-align: center;
    font-weight: bold;
    color: #fff; /* Section title color */
    margin-bottom: 40px;
}

.section-title-00 {
    text-align: center;
    font-weight: bold;
    color: #333333; /* Section title color */
    margin-bottom: 40px;
}

.row-00 {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-00 {
    flex: 0 0 50%; /* Set column width to 50% for large screens */
    max-width: 50%;
    padding: 0 15px;
}

.mission-box, .vision-box {
    border: 2px solid #4CAF50; /* Green border */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
    opacity: 0; /* Start with opacity 0 for animation */
    animation: slideIn 1s forwards; /* Animation */
}

.mission-box h3, .vision-box h3 {
    color: #4CAF50; /* Green text color for headings */
    margin-top: 0;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 .green-border {
        border: 2px solid green;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        align-items: center;
    }