/* About Page Styles */

/* Value Items */
.value-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

/* Mission Section */
.mission-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: var(--bs-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Team Circles */
.team-image .rounded-circle {
    border: 3px solid var(--gold);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-image .rounded-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-image:hover .rounded-circle {
    transform: scale(1.05);
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
}

.team-card:hover {
    transform: translateY(-5px);
}

/* Ensure consistent spacing in team cards */
.team-card .team-image {
    margin-bottom: 1.5rem;
}

.team-card h3 {
    margin-bottom: 0.75rem;
}

.team-card .text-white-50.mb-2 {
    margin-bottom: 1rem !important;
}

.team-card .small.text-white-50 {
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.team-card .social-links {
    margin-top: auto;
    padding-bottom: 1rem;
}

/* Timeline */
.history-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bs-gold);
    border: 4px solid var(--bs-dark);
    position: absolute;
    left: 0;
    transform: translateX(-50%);
}

.timeline-content {
    border-left: 2px solid var(--bs-gold);
    padding-left: 2rem;
    margin-bottom: 2rem;
}

/* Impact Stats */
.impact-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-gold);
    margin-bottom: 1rem;
}

/* Partners Section */
.partner-logo {
    height: 100px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}