/* About Page Styles */
:root {
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-card: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-color: #dc3545;
    --gradient-primary: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    --gradient-dark: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
}

/* Hero Section */
.about-hero {
    background: url('../images/about/hero.jpg') center/cover no-repeat;
    min-height: 60vh;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.7));
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/about/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.mission-card, .vision-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    z-index: 1;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-size: 2rem;
}

.mission-list, .vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li, .vision-list li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.mission-list li i, .vision-list li i {
    color: var(--accent-color);
    margin-right: 1rem;
}

/* History Section */
.history-section {
    background-color: var(--dark-surface);
    color: var(--text-primary);
    position: relative;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/about/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.history-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.timeline-year {
    position: absolute;
    left: -1.5rem;
    top: 0;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.timeline-content {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 10px;
}

.timeline-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
}

.history-image {
    position: relative;
    z-index: 1;
}

.history-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.values-section {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/about/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.value-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-primary);
    font-size: 2.5rem;
}

.value-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Leadership Section */
.leadership-section {
    background-color: var(--dark-surface);
    color: var(--text-primary);
    position: relative;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/about/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.leader-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.leader-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-content {
    padding: 2rem;
    text-align: center;
}

.leader-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.leader-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.leader-bio {
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: url('../images/about/cta.jpg') center/cover no-repeat;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.7));
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Section Headers */
.section-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        min-height: 50vh;
    }
    
    .timeline::before {
        left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 4rem;
    }
    
    .timeline-year {
        left: 0;
    }
} 