.recruiters-area {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}
.recruiters-card {
    transition: all 0.3s ease;
    border-radius: 16px !important;
}
.recruiters-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}
.recruiters-card .title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-bottom: 12px;
}
.recruiters-card .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #133674;
    border-radius: 2px;
}
.recruiters-controls .input-group-text {
    background: #f1f1f1;
    border: 1.5px solid #e0e0e0;
    border-right: none;
    border-radius: 10px 0 0 10px;
}
.recruiters-controls .form-control {
    border: 1.5px solid #e0e0e0;
    border-radius: 0 10px 10px 0;
    padding: 10px 15px;
    font-size: 1rem;
}
.recruiters-controls .form-control:focus {
    border-color: #133674;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    outline: none;
}
.recruiter-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}
.recruiter-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.recruiter-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}
.company-name {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .recruiters-card {
        padding: 20px;
    }
    .recruiters-card .title {
        font-size: 1.6rem;
    }
    .recruiter-card {
        padding: 15px;
    }
    .recruiter-logo {
        max-height: 80px;
    }
    .company-name {
        font-size: 0.9rem;
    }
    .recruiters-controls .input-group {
        width: 100%;
    }
}