/* Variables */
:root {
    --primary: #0066FF;
    --text-dark: #111827;
    --text-light: #4B5563;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border: #E5E7EB;
}
body,html{
    overflow-x:hidden;
}
/* About Hero Section */
.about-hero {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-hero-image {
    order:1;
    max-width:80%;
}


.hero-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.highlight-text {
    color: var(--primary);
}

.about-hero p {
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat .label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
}

/* Mission Section */
.mission {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.mission-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.mission-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mission-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member .role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-white);
}

/* Values Section */
.values {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.value-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
                margin-top:15rem;

    }

    .about-hero p {
        margin: 0 auto 3rem;
    }

    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 3.5rem;
    }
.hero-stats {

    gap: 1.2rem;
    padding: 1rem;
}
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.75rem;
    }
  .about-hero {
      padding:0 30px;
      width:90%;
  }
    .mission-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-member img {
        width: 100px;
        height: 100px;
    }
} 