/* Hero Section */
.about-hero {
    background: linear-gradient(
            135deg,
            rgba(67, 97, 238, 0.9),
            rgba(58, 12, 163, 0.9)
        ),
        url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    margin-bottom: 80px;
}

.about-text {
    padding-right: 30px;
}

.about-text h3 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}
/* Mission Vision Section */
.mission-vision {
    background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
    padding: 50px 10px;
    border-radius: 15px;
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.mission-card h3,
.vision-card h3 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.mission-card p,
.vision-card p {
    color: #6c757d;
    line-height: 1.7;
}
/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    /* width: 100%; */
    height: 300px;
    /* background-size: cover; fills area, may crop */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.team-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
}
/* Values Section */
.values-section {
    padding: 100px 0;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.8rem;
}

.value-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: #6c757d;
}
