/* About Us page specific styles */

/* Page Header Background */
.page-header.aboutus {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.8), rgba(42, 82, 152, 0.8)),
                url('../img/company.jpg');
    background-size: cover;
    background-position: center;
}

/* Company Overview */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.overview-content h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.overview-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.overview-table table {
    width: 100%;
    border-collapse: collapse;
}

.overview-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.overview-table tr:last-child {
    border-bottom: none;
}

.overview-table td {
    padding: 1rem 1.5rem;
    vertical-align: top;
}

.overview-table td:first-child {
    background-color: #f8f9fa;
    font-weight: bold;
    width: 30%;
    color: #1e3c72;
}

/* History Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: #1e3c72;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 6px white, 0 0 0 10px #64b5f6;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.timeline-description {
    color: #666;
    line-height: 1.7;
}

/* CEO Message Section */
.ceo-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.ceo-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.ceo-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ceo-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
}

.ceo-message h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #64b5f6;
}

.ceo-message p {
    margin-bottom: 1.5rem;
}

.ceo-signature {
    text-align: right;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: bold;
}
/* Access Section */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.access-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2a5298;
}

.access-info h4 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.access-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.access-map {
    height: 300px;
    background: #e3f2fd;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .overview-grid,
    .ceo-content,
    .access-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 0;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
    }

    .overview-table td {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}