* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}



/* Header Styles */
header {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: bold;
}

.logo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

nav ul li a {
    /* color: black; */
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

nav ul li a:hover {
    opacity: 0.8;
}


/* Hero Section */
.hero{
    margin-top: 80px;
    background-image: url("../images/about_banner.png");
    background-size: cover;
    background-position: center;
    min-height: 400px;
    height: clamp(400px, 60vh, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    padding: 2rem;
}

.hero-content {
    background: rgba(255, 255, 255, 0.5); /* semi‑transparent box */
    padding: 25px 40px;
    border-radius: 10px;
    max-width: 700px;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    opacity: 0.95;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Mission & Vision Section */
.mission-vision {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.mv-card {
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mv-icon {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.mv-card h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fdc50e;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

/* Story Section */
.story-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.story-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fdc50e;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.story-image svg {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Values Section */
.values-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #0891b2;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.value-card {
    background: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: clamp(2.5rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: #fdc50e;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Team Section */
.team-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.team-card {
    background: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: clamp(120px, 25vw, 150px);
    height: clamp(120px, 25vw, 150px);
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #667eea;
    display: flex;
    justify-content:center
}

.team-photo svg {
    width: 100%;
    height: 100%;
}

.team-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: #333;
    margin-bottom: 0.5rem;
}

.team-card .role {
    color: #0891b2;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.team-card .bio {
    color: #666;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.6;
}

/* Achievements Section */
.achievements-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    color: white;
}

.achievements-section .section-title {
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(min(100%, 200px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.achievement-item {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.achievement-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    text-align: center;
    background: #f8f9fa;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    color: white;
}

.btn-secondary {
    background: white;
    color: #0891b2;
    border: 2px solid #0891b2;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Footer Styles */
footer {
    background:linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fdc50e;
}

.footer-section p,
.footer-section ul {
    color: white;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: gainsboro;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: white;
}



/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}