﻿.feature-icon {
    font-size: 2.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

.stats-item {
    text-align: center;
    padding: 16px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.testimonial-card {
    border-left: 4px solid var(--primary-color);
    position: relative;
    transition: all 0.4s ease;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
    }

    .testimonial-card::before {
        /*content: '"';*/
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 5rem;
        color: rgba(37, 99, 235, 0.1);
        font-family: Georgia, serif;
        line-height: 1;
    }

.pricing-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .pricing-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(31, 38, 135, 0.15);
    }

    .pricing-card.popular::before {
        content: 'Most Popular';
        position: absolute;
        top: 20px;
        right: -40px;
        width: 160px;
        background: var(--warning-color);
        color: white;
        text-align: center;
        transform: rotate(45deg);
        font-size: 0.8rem;
        font-weight: 600;
        padding: 3px 0;
    }

.pricing-feature {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
}

    .pricing-feature::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: var(--success-color);
        font-size: 1.1rem;
    }

.form-control {
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .form-control:focus {
        background: rgba(255, 255, 255, 0.6);
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    }

.job-search-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.job-search-bar {
    width: 100%;
}

.search-input-group {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.job-search-input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    outline: none;
}

    .job-search-input::placeholder {
        color: #a0aec0;
    }

.search-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    background-color: #2460e8;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .search-button:hover {
        background-color: #1f53dd;
    }

    .search-button svg {
        flex-shrink: 0;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .job-search-container {
        padding: 1rem;
    }

    .job-search-header h2 {
        font-size: 1.5rem;
    }

    .search-button span {
        display: none;
    }

    .search-button {
        padding: 0 1rem;
    }
}
