/* About Us Page Styles */

/* Banner Section */
.banner-section {
    background-color: #f5f5f5;
    height: 150px;
    width: 100%;
    margin: 0 auto;
    margin-top: -120px !important;
}

/* About Us Hero Section */
.about-hero {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.about-center-logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-center-logo img {
    width: 500px;
    height: auto;
}

.about-left-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-left-image img {
    max-width: 100%;
    height: auto;
}

.about-right-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-right-image img {
    width: 350px;
    height: auto;
    margin-top: -50px;
}

/* About Us Content Section */
.about-content {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.about-main-text {
    font-size: 18px;
    line-height: 1.6;
    color: #0066CC;
    text-align: left;
    margin-bottom: 50px;
}

.about-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-box {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-box-heading {
    font-size: 20px;
    font-weight: 700;
    color: #002D85;
    margin-bottom: 15px;
}

.about-box-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-image img {
    width: 600px;
    height: auto;
}

/* Vision Mission Section */
.vision-mission {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    position: relative;
}

.vision-content,
.mission-content {
    color: white;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vision-heading,
.mission-heading {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.vision-text,
.mission-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

/* Add gap between columns */
.vision-content {
    margin-right: 30px;
}

.mission-content {
    margin-left: 30px;
}

/* Team Section */
.team-section {
    background-color: white;
    padding: 80px 0;
}

.team-heading {
    font-size: 36px;
    font-weight: 700;
    color: #002D85;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.team-member {
    text-align: center;
    margin-bottom: 40px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-left: 15px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.member-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 25px;
    background-color: #002D85;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

.member-title {
    font-size: 20px;
    font-weight: 600;
    color: #002D85;
    margin-bottom: 15px;
}

.member-description {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}
