/* About Page Styles */

:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #6366f1;
    --accent-dark: #4f46e5;
    --accent-light: #818cf8;
    --primary: #ec4899;
    --secondary: #14b8a6;
    --muted-color: #64748b;
    --light-bg: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    --grid-gap: 30px;
    --container-padding: 0 5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary));
    margin: 5px 0;
    transition: 0.3s;
}

.hero-about {
    padding-top: 200px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(236, 72, 153, 0.85) 100%), url('h1.jpg') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 900px;
}

.hero-about h1 {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission p {
    font-size: 16px;
    color: var(--muted-color);
    line-height: 1.8;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item h3 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 14px;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #fdf2f8 100%);
}

.values h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 900;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--grid-gap);
}

.value-card {
    padding: 40px;
    background-color: var(--bg-color);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: var(--accent-light);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.value-card p {
    font-size: 14px;
    color: var(--muted-color);
    line-height: 1.8;
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.team h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 900;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--grid-gap);
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 0px 5px 10px #c0c0c0;
    padding-bottom: 2vmin;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px #a2a2a2;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    margin-bottom: 20px;
    cursor: pointer;

}

.member_link{
    text-decoration: none;
}

.hero-image{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    border-radius: 10px;
    margin-bottom: 100px;
    margin-top: 100px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.team-member h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text-color);
}

.team-member p {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
}


.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: var(--accent-dark);
    font-weight: 700;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: white;
    color: var(--accent-dark);
}

/* Footer */
footer {
    padding: 30px 0;
    background: linear-gradient(135deg, #3c3c3c 0%, #2e2e2e 100%);
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .mission-content {
        grid-template-columns: 1fr;
    }

    .values h2,
    .team h2,
    .cta-section h2 {
        font-size: 36px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header {
        padding: 20px 0;
    }

    nav {
        padding: 0 15px;
    }

    .logo {
        font-size: 20px;
    }

    .hero-about h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .mission-stats {
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 40px;
    }

    .value-card,
    .timeline-content {
        padding: 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }
}
.team-member-image{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

#team-image-main{
    display: flex;
    margin-right: auto;
    margin-left: auto;
    width: 80%;
}

.team-image1{
    display: flex;
    margin-right: auto;
    width: 80%;
    border-radius: 10px;
    margin-bottom: 100px;
    margin-top: 100px;
}

.team-image2{
    display: flex;
    margin-left: auto;
    width: 80%;
    border-radius: 10px;
    margin-bottom: 100px;
    margin-top: 100px;
}

.team-image3{
    display: flex;
    margin-right: auto;
    width: 80%;
    border-radius: 10px;
    margin-bottom: 100px;
    margin-top: 100px;
}