/* About Page Specific Styles */

.about-page .about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/aboutus.JPG') no-repeat center top/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.about-page .about-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-page .about-hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 0;
}

.dark-bg {
    background-color: #f4f4f4;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6600;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.about-card i {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-member i {
    font-size: 64px;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.team-member:hover i {
    color: #ff6600;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: #ff6600;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ff6600;
    color: #ff6600;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    top: 30px;
    right: -20px;
    z-index: 1;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.2);
    background-color: #ff6600;
    color: #fff;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff6600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.value-item i {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 22px;
}
