/* General body styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
    overflow-x: hidden; /* Prevent horizontal scroll issues */
}

/* About Us section container */

.company-overview-section {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
    margin:0;
    margin-bottom: 30px;
}

.company-overview-section .section-title {
    color: #183C5F;
    font-size: 2rem;
    margin-bottom: 20px;
}

.company-overview-section .section-description {
    color: #747474;
    font-size: 1.3rem;
    line-height: 2rem;
    margin: 0 auto;
    max-width: 800px;
    margin-bottom: 30px;
}

.leadership-section {
    background-color: #f5f5f5; /* Light grey background */
    padding: 20px 20px;
    text-align: center;
    margin: 20px 0;
    margin-bottom: 50px;
}

.leadership-section .section-title {
    color: #183C5F; /* Primary color */
    font-size: 2rem;
    margin-bottom: 20px;
}

.leadership-single-container {
    display: flex;
    justify-content: center;
}

.leader-block {
    background-color: #ffffff; /* White background for the block */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 8px 10px 6px 7px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 400px;
    text-align: center;
    margin-bottom:30px;
}

.leader-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Circular photo */
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for the image */
}

.leader-block h3 {
    color: #183C5F; /* Primary color */
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.leader-block p {
    color: #747474; /* Secondary color */
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.vision-icon {
    text-align: center;
    margin-bottom: 10px; /* Space between icon and title */
}

.icon-image {
    max-width: 60px; /* Set size of the icon */
    height: auto;
}

.profilebadge-container {    
    background: linear-gradient(45deg, rgba(24, 60, 95, 0.7), rgba(255, 255, 255, 0.5), rgba(0, 150, 136, 0.7)); /* Gradient background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow for depth */
    max-width: 165px;
    height: auto;  
    align-items: center;
    margin-bottom: 10px;      
}
/* Media Query for Tablets and Smaller Screens */
@media (max-width: 768px) {
    .leader-photo {
        width: 120px;
        height: 120px; /* Slightly smaller image on smaller screens */
    }

    .leader-block h3 {
        font-size: 1.3rem; /* Adjust font size */
    }

    .leader-block p {
        font-size: 0.9rem; /* Adjust font size */
    }
}

/* Media Query for Mobile Screens */
@media (max-width: 480px) {
    .leader-photo {
        width: 100px;
        height: 100px; /* Smaller image on mobile screens */
    }

    .leader-block h3 {
        font-size: 1.2rem; /* Smaller font for mobile */
    }

    .leader-block p {
        font-size: 0.85rem; /* Smaller font for mobile */
    }
}


/* Media Query for smaller screens */
@media (max-width: 768px) {
    .company-overview-section {
        padding: 30px 15px; /* Reduce padding for smaller screens */
    }

    .company-overview-section .section-title {
        font-size: 1.8rem; /* Slightly smaller font size */
    }

    .company-overview-section .section-description {
        font-size: 1.1rem; /* Adjust font size for readability */
        line-height: 1.8rem; /* Adjust line height for smaller text */
        max-width: 90%; /* Allow more space for the text on small screens */
    }
}

@media (max-width: 480px) {
    .company-overview-section {
        padding: 20px 10px; /* Further reduce padding on very small screens */
    }

    .company-overview-section .section-title {
        font-size: 1.6rem; /* Smaller font size for very small screens */
    }

    .company-overview-section .section-description {
        font-size: 1rem; /* Smaller font size for very small screens */
        line-height: 1.6rem; /* Adjust line height */
        max-width: 100%; /* Use full width on very small screens */
    }
}


.mission-vision-section {    
    text-align: center;    
}

.mission-vision-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;  
}

.mission-vision-block {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f0f4f8;
    color: #183C5F;
    margin: 30px;    
    border-radius: 8px;
    box-shadow: 8px 10px 6px 7px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;  
       
}

.mission-vision-image {
    text-align: center;
    margin: 20px 0;
}

.mission-vision-image img {
    max-width: 100%;
    height: auto;
}

.section-title {
    color: #183C5F;
    font-size: 2em;
    margin-bottom: 10px;
}

.section-description {    
    font-size: 1.3rem;    
    line-height: 2rem;  
    color: #747474;
}

.core-values-section {
    margin: 20px 0;
    text-align: center;
}

.core-values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 30px;
}

.core-value-block {
    flex: 1;
    padding: 20px;
    max-width: 300px;
    box-sizing: border-box;
    margin: 10px;   
    background-color: #f0f4f8;    
    border-radius: 8px;
    box-shadow: 8px 10px 6px 7px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;     
    line-height: 1.5rem;   
    color:#747474; 
}

.core-value-block h3 {
    color: #183C5F;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .mission-vision-container {
        flex-direction: column;
        align-items: center; /* Center the blocks horizontally */
    }

    .mission-vision-block {
        width: 100%; /* Make each block take full width */
        max-width: 600px; /* Limit the maximum width for better appearance */
        margin: 10px auto; /* Center the blocks */
    }

    .core-values-container {
        flex-direction: column;
        align-items: center; /* Center the blocks horizontally */
    }

    .core-value-block {
        width: 100%; /* Make each block take full width */
        max-width: 300px; /* Limit the maximum width */
        margin: 10px auto; /* Center the blocks */
    }
}

.contact-information-section {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
}

.section-title {
    color: #183C5F;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: #747474;
    margin-bottom: 30px;
}

.contact-link {
    display: inline-block;
    background-color: #183C5F; /* Primary color for button */
    color: #ffffff; /* Text color */
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.contact-link:hover {
    background-color: #0f2b46; /* Darker shade for hover effect */
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-information-section {
        padding: 30px 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .contact-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
