/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content h2 {
    color: var(--color-blue);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background-color: var(--color-light-blue);
}

.mission-card, .vision-card {
    background-color: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    color: white;
    font-size: 2rem;
}

.mission-card h3, .vision-card h3 {
    color: var(--color-blue);
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card .card-body {
    padding: 1.5rem;
    text-align: center;
}

.team-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-blue);
}

.team-position {
    color: var(--color-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-social {
    margin-top: 1rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--color-light-blue);
    color: var(--color-blue);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--color-green);
    color: white;
    transform: translateY(-3px);
}

/* History Timeline */
.history-section {
    padding: 5rem 0;
    background-color: var(--color-light-blue);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--color-green), var(--color-blue));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background: white;
    border: 4px solid var(--color-green);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.timeline-year {
    position: absolute;
    top: 15px;
    right: -145px;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    color: white;
    border-radius: 50px;
    padding: 5px 15px;
    font-weight: 600;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -145px;
    right: auto;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    color: white;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

