/* Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    font-size: 1.1rem;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.page-header .breadcrumb-item.active {
    color: white;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}


.company-overview {
    padding: 80px 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.mission-vision {
    background-color: var(--light-color);
    padding: 80px 0;
}

.core-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.core-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.core-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-icon i {
    font-size: 2rem;
    color: var(--white);
}

.core-card h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.values-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.values-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.values-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.history-section {
    padding: 80px 0;
    background-color: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    top: 0;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -50px;
}

.timeline-content {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    top: 30px;
    transform: rotate(45deg);
    z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
}

.team-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: rgba(0, 119, 182, 0.8);
    padding: 15px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 5px;
    line-height: 35px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--dark-color);
    color: var(--white);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-info p {
    color: var(--text-light);
    margin-bottom: 0;
}

.certifications {
    padding: 80px 0;
    background-color: var(--white);
}

.certificate-item {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certificate-item img {
    max-width: 100%;
    max-height: 100px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.certificate-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .timeline::before {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: 0;
        right: auto;
    }
    
    .timeline-content::after {
        left: 20px !important;
        right: auto !important;
    }
}