/* background: linear-gradient(to right, #2c3e50, #1a1a1a); */

.job-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.125);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.company-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.job-card:hover .company-logo {
    background-color: #e9ecef;
}

.badge-new {
    display: flex;
    align-items: center;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.btn-view, .btn-apply {
    transition: all 0.2s ease;
}

.btn-view:hover, .btn-apply:hover {
    transform: translateY(-2px);
}

.deadline {
    color: #dc3545;
    font-weight: 500;
    font-size: 0.875rem;
}

.job-company {
    color: #6610f2;
    font-weight: 500;
}

.job-tag {
    background-color: #f8f9fa;
    color: #495057;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 0.25rem;
}

.navbar-brand {
    font-weight: bold;
    color: #6610f2;
}

.hero-section {
    background: linear-gradient(to right, #6610f2, #6f42c1);
    color: white;
    padding: 5rem 0;
}

.search-box {
    margin-top: -3rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
}

.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.category-icon i {
    font-size: 1.75rem;
    color: #6610f2;
}

.how-it-works-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.how-it-works-icon i {
    font-size: 2rem;
    color: #6610f2;
}

/* Kalibrr-style job card hover effect */
.job-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(0,0,0,0.1);
    gap: 10px;
}

.job-card:hover .job-actions {
    transform: translateY(0);
}

.job-card-content {
    padding-bottom: 20px;
}

/* Improved job card styling */
.job-card {
    border-radius: 8px;
    background-color: #ffffff;
}

.job-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.job-location {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 8px;
}

.job-location i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.job-salary {
    color: #198754;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Button styling */
.btn-apply {
    background-color: #6610f2;
    border: 2px solid #6610f2;
    padding: 0.5rem 1.5rem;
    color: white;
    font-weight: 500;
}

.btn-apply:hover {
    background-color: #5a0dbd;
    border-color: #5a0dbd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 16, 242, 0.2);
}

.btn-view {
    color: #6610f2;
    border: 2px solid #6610f2 !important;
    background-color: transparent;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-view:hover {
    background-color: #6610f2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 16, 242, 0.2);
}

.btn {
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Footer Styles */
.footer {
    background-color: #1e2124;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
