* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1535223289827-42f1e9919769') center/cover no-repeat;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-content p {
    margin-top: 10px;
    font-size: 20px;
}

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
}

.about .container {
    max-width: 900px;
    margin: auto;
}

.about h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Mission-Vision */
.mission-vision {
    background: #f3f6fa;
    padding: 50px 20px;
}

.mission-vision .container {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.mv-box {
    background: #fff;
    padding: 25px;
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mv-box h3 {
    margin-bottom: 10px;
    color: #0a73b7;
}

/* Why Choose Us */
.why-us {
    padding: 50px 20px;
    text-align: center;
}

.why-us h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.feature {
    background: #dff3ff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.feature h4 {
    color: #005c9d;
    margin-bottom: 5px;
}

/* Team Section */
.team {
    padding: 50px 20px;
    text-align: center;
    background: #fafafa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.team-member img {
    width: 100%;
    border-radius: 10px;
}

.team-member h4 {
    margin-top: 10px;
    font-size: 20px;
}

.team-member p {
    color: #888;
}
