/* About Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 45, 91, 0.9), rgba(0, 45, 91, 0.8)), url('../assets/images/about-company.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    /* margin-top: 76px; */
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header .lead {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Company History */
.company-history {
    background-color: var(--white);
    padding: 80px 0;
}

.history-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.history-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.history-image:hover img {
    transform: scale(1.05);
}

.history-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.3);
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--light-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 45, 91, 0.3);
}

.timeline-content {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-orange);
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--medium-gray);
    margin: 0;
}

/* Core Values Section */
.core-values-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.value-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-card:nth-child(1):hover {
    border-top-color: var(--secondary-orange);
}

.value-card:nth-child(2):hover {
    border-top-color: var(--primary-blue);
}

.value-card:nth-child(3):hover {
    border-top-color: var(--accent-blue);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-blue);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    transform: rotate(360deg);
}

.value-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.value-card p {
    color: var(--medium-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.value-points {
    list-style: none;
    padding: 0;
    text-align: left;
}

.value-points li {
    padding: 8px 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 25px;
}

.value-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-orange);
    font-weight: bold;
}

/* Mission & Vision */
.mission-vision {
    background-color: var(--white);
    padding: 80px 0;
}

.mission-box, .vision-box {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
}

.mission-header, .vision-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-header i, .vision-header i {
    font-size: 2.5rem;
}

.mission-header h3, .vision-header h3 {
    color: var(--white);
    margin: 0;
}

.mission-content, .vision-content {
    padding: 30px;
}

.mission-content p, .vision-content p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.mission-points {
    margin-top: 25px;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--medium-gray);
}

.point i {
    color: var(--secondary-orange);
}

.vision-goals {
    margin-top: 30px;
}

.goal {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.goal:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.goal-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.goal-text h5 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.goal-text p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Leadership Team */
.leadership {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.leader-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.leader-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
}

.leader-info {
    padding: 25px 20px;
}

.leader-info h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.position {
    color: var(--secondary-orange);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.experience {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 3rem;
    }
    
    .page-header .lead {
        font-size: 1.3rem;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header .lead {
        font-size: 1.2rem;
    }
    
    .history-badge {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .value-card, .mission-box, .vision-box, .leader-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .mission-header, .vision-header {
        padding: 20px;
    }
    
    .mission-content, .vision-content {
        padding: 20px;
    }
}