/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/HeroBanner.jpg');
    background-size: cover;
    background-position: center;
    padding: 160px 0 60px;
    text-align: left;
    color: var(--light-color);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    justify-content: left;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--light-color);
}

/* About Intro Section */
.about-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* What We Do Section */
.service-category {
    margin-bottom: 60px;
}

.category-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.category-desc {
    color: #666;
    margin-bottom: 30px;
}

.feature-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Why Choose Us Section */
.achievement-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.achievement-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

.achievement-icon i {
    font-size: 2rem;
    color: var(--light-color);
}

.achievement-card h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.achievement-card p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.achievement-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Vision & Mission Section */
.vision-box,
.mission-box {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.vision-box h2,
.mission-box h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.vision-box h2::after,
.mission-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .achievement-card {
        margin-bottom: 30px;
    }
    
    .vision-box,
    .mission-box {
        margin-bottom: 30px;
    }
}
