/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

h2, h3 {
    color: #023e8a;
}
h1{
    color: #22003c;
}
p {
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: #007bff;
}

/* Header */
.header {
    background: linear-gradient(10deg, #22003c, #5fbaec);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.header .logo h1 {
    margin: 0;
}

.header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.header nav ul li {
    margin-left: 20px;
}

.header nav ul li a {
    color: white;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background-image: url('../images/img4.jpg');
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 24px;
    margin-top: 10px;
}

/* Mission Section */
.mission {
    padding: 50px;
    background-color: #e9ecef;
    text-align: center;
}

.mission h2 {
    font-size: 36px;
}

.mission p {
    max-width: 800px;
    margin: 20px auto;
}

/* Our Story Section */
.our-story {
    padding: 50px;
    background-color: white;
    text-align: center;
}

.our-story h2 {
    font-size: 36px;
}

.our-story p {
    max-width: 800px;
    margin: 20px auto;
}

/* Our Values Section */
.our-values {
    padding: 50px;
    background-color: #f8f9fa;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 40px;
}

.values-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.value-box {
    background-color: white;
    padding: 20px;
    text-align: center;
    width: 18%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.value-box img {
    height: 50px;
}

.value-box h3 {
    margin-top: 20px;
}

/* Meet Our Team Section */
.our-team {
    padding: 50px;
    background-color: white;
    text-align: center;
}

.team-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.team-member {
    text-align: center;
    width: 30%;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.team-member h3 {
    margin-top: 15px;
}

/* Community Involvement Section */
.community {
    padding: 50px;
    background-color: #e9ecef;
    text-align: center;
}

/* Accreditations & Awards Section */
.awards {
    padding: 50px;
    background-color: white;
    text-align: center;
    width: 100%;
}

.awards-container {
    width: 100%;
    height: auto;
    display: flex;
    
    gap: 20px;
}
.awards-container img {
    width: 30%;
    height: auto;

}


.why-choose-asia {
    text-align: center;
    padding: 40px;
}

.features {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.feature {
    width: 22%;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.feature img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.feature h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.feature p {
    font-size: 14px;
    color: #555;
}

/* Hover Effect */
.feature:hover {
    transform: translateY(-10px);
    background-color: #b6d3f2;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.feature:hover img {
    transform: scale(1.1);
}
