






/* Mission Section Styles with Background Image */

.mission-section {
    background-image: url('assets/images/banner5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff; /* Make text white to contrast against the background */
    padding: 100px 0;
    position: relative;
}

.mission-wrapper {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for better text visibility */
    padding: 50px;
}

.mission-content-left, .mission-content-right {
    color: #fff; /* White text */
}

.mission-content-left h6 {
    color: #ff6666; /* Light red color for 'Our Mission' */
}

.mission-content-left h5 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.mission-content-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd; /* Light gray for readability */
}

.mission-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: #ff6666; /* Light red button */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.mission-btn:hover {
    background-color: #ff4d4d; /* Slightly darker red on hover */
}

/* Ensure alignment */
.mission-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mission-content-right {
    padding-left: 40px;
    text-align: left;
    max-width: 50%;
}





/* Expertise Section Styles */

.expertise-section {
    background-color: #f9f9f9;
}

.expertise-wrapper {
    padding: 50px 0;
}

.expertise-image-wrapper {
    padding-right: 30px;
}

.expertise-image img {
    max-width: 100%;
    height: auto;
}

.expertise-content {
    padding-left: 30px;
    margin-top: 20px;
}

.expertise-header .expertise-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: #ff0000; /* Red color for 'Why Choose Us' */
}

.expertise-header .expertise-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.expertise-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.expertise-list {
    margin-top: 40px;
}

.expertise-items {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.expertise-item {
    flex: 0 0 50%; /* Each item takes 50% of the width */
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.expertise-item i {
    margin-right: 10px;
    color: #ff0000; /* Red color for tick marks */
}

.expertise-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000; /* Red color for button */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.expertise-btn:hover {
    background-color: #ff0404;
}
