body {
    background: #f5f7fb;
    font-family: Inter, Arial, sans-serif;
}

/* Filter */
.filter-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e6e9f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* Cards */
.company-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e6e9f0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all .25s ease;
    height: 100%;
}

.company-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Header */
.company-card h5 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #014E80;
}

/* Logo */
.company-card img {
    width: 48px;
    height: 48px;
    padding: 6px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    object-fit: contain;
}

/* Text */
.company-card span {
    font-size: 13px;
    color: #6b7280;
}

.company-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* Links */
.company-card a {
    text-decoration: none;
    color: inherit;
}

/* Pagination */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 4px;
    border-color: #014E80;
    color: #014E80;
}

.pagination .page-item.active .page-link {
    background-color: #014E80;
    border-color: #014E80;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(1, 78, 128, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .col-md-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}


/* Wrapper background */
.mnc-scroll-wrapper {
    background: #e1f1fc;
    ;
    padding: 18px 48px;
    border-radius: 18px;
    position: relative;
}

/* Horizontal scroll container */
.mnc-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 6px;
}

/* Hide scrollbar (modern browsers) */
.mnc-scroll::-webkit-scrollbar {
    display: none;
}

.mnc-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Individual cards */
.mnc-card {
    min-width: 220px;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid #d7d9e0;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
}

/* Title */
.mnc-card h5 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #014E80;
}

/* Subtitle */
.mnc-card span {
    font-size: 14px;
    color: #2563eb;
    font-weight: 500;
}

/* Hover effect */
.mnc-card:hover {
    border-color: #2563eb;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
}

/* Active card */
.mnc-card.active {
    border: 1.5px solid #0f172a;
}

/* Check icon (top-right) */
.check-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scroll buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

/* Left & Right */
.scroll-btn.left {
    left: 12px;
}

.scroll-btn.right {
    right: 12px;
}

/* Hover on scroll buttons */
.scroll-btn:hover {
    background: #2563eb;
    color: #fff;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .mnc-scroll-wrapper {
        padding: 14px 38px;
    }

    .mnc-card {
        min-width: 200px;
    }
}