/* Container for the cards */
.model-card {
    background: #ffffff; /* الخلفية بيضاء بالفعل */
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #f0f0f0;
}

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

.model-img-wrapper {
    /* تم تكبير الدائرة من 100px إلى 140px */
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    /* تغيير الخلفية من رمادي فاتح إلى أبيض صافي */
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0; /* إطار خفيف جداً */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.model-img-wrapper img {
    /* تكبير حجم الصورة داخل الدائرة من 65% إلى 85% */
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.model-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.form-select-custom {
    width: 100%;
    height: 45px;
    border-radius: 12px;
    border: 1.5px solid #e9ecef;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    background-color: #fff; /* خلفية بيضاء */
}

.form-select-custom:focus {
    border-color: #000;
}

.btn-submit {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    height: 45px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #333;
}

.year-error {
    display: none;
    font-size: 12px;
    color: #dc3545;
    margin-top: 5px;
}
