/* apply.css */

.apply-card {
    background-color: #fff;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 15px -1px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb; /* gray-200 */
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.apply-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.apply-card-icon {
    margin: 0 auto 1.5rem auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff1e6, #ffedd5); /* light orange gradient */
    color: #f97316; /* orange-500 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
}

.apply-card:hover .apply-card-icon {
    background: linear-gradient(135deg, #f97316, #ea580c); /* orange gradient */
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.15);
}

.apply-card-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: #1f2937; /* gray-800 */
    margin-bottom: 1rem;
}

.apply-card-description {
    color: #4b5563; /* gray-600 */
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; 
}

.apply-card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    color: #374151; /* gray-700 */
}

.apply-card-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.apply-card-list .icon {
    color: #16a34a; /* green-600 */
    font-size: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.apply-card-button-wrapper {
    margin-top: auto; /* Push button to the bottom */
}

.apply-card-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 9999px; /* rounded-full */
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #f97316; /* orange-500 */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 1px solid transparent;
}

.apply-card-button:hover {
    background-color: #ea580c; /* orange-600 */
    transform: scale(1.05);
}

.apply-card-button:active {
    transform: scale(0.98);
}
