/* Company Overview Section */
.company-overview {
    /* background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px); */
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-white);
    opacity: 0.8;
    line-height: 1.6;
}

.company-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    margin-top: 60px;
}

.company-card {
    min-width: 300px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.company-logo {
    width: 160px;
    height: 160px;
    background: var(--color-white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    padding: 16px;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.company-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.company-card p {
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.8;
    margin-bottom: 12px;
}

.company-link {
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--color-white);
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0px;
    right: 0px;
    height: 1px;
    border-radius: 5pc;
    background-color: var(--color-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-link:hover::after {
    transform: scaleX(1);
}

.company-link i {
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .company-grid {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .company-card {
        padding: 32px 24px;
    }
    
    .company-grid {
        gap: 32px;
    }
}