/* Page Header Background */
.page-header {
    background: linear-gradient(rgba(0, 188, 212, 0.9), rgba(33, 150, 243, 0.9)), url("../Assets/about.jpg");
    background-size: cover;
    background-position: center;
}

/* About Content */
.about-content {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    margin-bottom: 30px;
}

.about-image:hover {
    transform: translateY(-10px);
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.timeline-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--light-color);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(9, 84, 122, 0.246);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--light-color);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    background-color: var(--light-color);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: -1px 1px 0px rgba(0, 0, 0, 0.2);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--light-gray);
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(5, 82, 117, 0.595);
    border-top-color: var(--primary-blue);
    background-color: var(--light-color);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.team-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background-color: var(--light-color);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.team-info {
    padding: 25px;
}

.team-name {
    color: var(--secondary-blue);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    /* Page Title handled in style.css */
}

@media (max-width: 768px) {

    .about-content,
    .timeline-section,
    .values-section,
    .team-section {
        padding: 60px 0;
    }

    /* Timeline responsive */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        left: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -5px;
        right: auto;
    }
}

@media (max-width: 576px) {
    .highlight-box {
        padding: 20px;
    }
}