/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(37, 46, 119, 0.8), rgba(37, 46, 119, 0.8)), 
                url('../images/subsidiaries-banner.jpg') no-repeat center center/cover;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 80px;
}

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

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    margin: 0 5px;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Subsidiaries Overview */
.subsidiaries-overview {
    padding: 100px 0;
    background-color: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(37, 46, 119, 0.9));
    color: white;
    padding: 30px;
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.image-overlay p {
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Subsidiaries by Sector */
.subsidiaries-by-sector {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.sector-group {
    margin-bottom: 60px;
}

.sector-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(79, 80, 82, 0.1);
}

.sector-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 46, 119, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.sector-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.subsidiary-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.card-header {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.subsidiary-card:hover .card-header img {
    transform: scale(1.1);
}

.card-header h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(37, 46, 119, 0.9));
    color: white;
    padding: 15px;
    margin: 0;
    font-size: 1.3rem;
}

.card-body {
    padding: 20px;
}

.card-body p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.detail-item i {
    margin-right: 8px;
    color: var(--primary-color);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* CTA Section */
.subsidiaries-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(37, 46, 119, 0.9), rgba(37, 46, 119, 0.9)), 
                url('../images/subsidiaries-cta-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .overview-image {
        height: 300px;
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .subsidiaries-overview {
        padding: 60px 0;
    }
    
    .sector-header h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 100px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-header {
        flex-direction: column;
        text-align: center;
    }
    
    .sector-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .card-details {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}