/* Popular Companies Section - Shared across modules */
.popular-companies-section {
    padding: 2rem 0;
    background-color: #ffffff;
}

.popular-companies-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.popular-companies-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.21;
    color: #000000;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popular-companies-section .section-title .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    cursor: help;
    line-height: 1;
}

.popular-companies-section .view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 38px;
    padding: 0 20px;
    background-color: transparent;
    border: 2px solid #F2F2F2;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.popular-companies-section .view-all-btn:hover {
    border-color: #04C4D2;
    color: #04C4D2;
    text-decoration: none;
}

.popular-companies-section .company-carousel {
    position: relative;
}

.popular-companies-section .owl-stage-outer {
    overflow: visible;
    clip-path: inset(-12px -12px -20px -12px);
}

.popular-companies-section .owl-item {
    padding-top: 4px;
}

.popular-companies-section .company-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #F2F2F2;
    border-radius: 15px;
    padding: 20px 15px;
    min-height: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.popular-companies-section .company-card:hover {
    border-color: #04C4D2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.popular-companies-section .company-card img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.popular-companies-section .company-card:hover img {
    transform: scale(1.05);
}

/* Owl Carousel Dots Override */
.popular-companies-section .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.popular-companies-section .owl-dot span {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.popular-companies-section .owl-dot.active span {
    background: #04C4D2;
    width: 24px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .popular-companies-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .popular-companies-section .view-all-btn {
        align-self: flex-end;
    }

    .popular-companies-section .section-title {
        font-size: 20px;
    }
}
