.internship-card {
    flex: 1;
    min-width: 240px; /* کاهش عرض حداقل */
    max-width: 260px; /* کاهش عرض حداکثر */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.internship-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px; /* فاصله بین کارت‌ها */
}



.internship-container h2 {
    margin: 0 auto 50px auto; /* مرکز‌چین کردن و ایجاد فاصله از جدول */
    font-size: 26px; /* افزایش اندازه فونت */
    font-weight: bold; /* ضخامت متن */
    color: #fff; /* رنگ متن سفید */
    text-align: center; /* وسط‌چین کردن متن */
    background: #4f545e; /* پس‌زمینه */
    padding: 15px 0; /* فضای داخلی بالا و پایین */
    border-radius: 10px; /* گرد کردن گوشه‌ها */
    width: 95%; /* عرض متناسب */
    max-width: 900px; /* جلوگیری از کشیدگی بیش‌ازحد */
    display: block; /* نمایش به عنوان یک بلاک */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* سایه برای زیبایی */
    border-bottom: 4px solid #676e73; /* خط زیر تیتر */
}


.internship-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    
    
}


.internship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.basic-plan .card-header {
    background: #d1cac0;
}

.advanced-plan .card-header {
    background: #bab0a6;
}

.vip-plan .card-header {
    background: #ac9c8d;
}

.features {
    list-style: none;
    padding: 15px;
    text-align: right;
}

.features li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}


.apply-btn {
    display: block;
    width: 80%;
    margin: 15px auto;
    padding: 10px;
    background: #72383d;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background: #573134;
    color: #fff
}  
.project-access-btn {
    display: block;
    width: 90%; /* دکمه بزرگ‌تر از تیتر شود */
    max-width: 700px; /* دکمه بیش از حد کشیده نشود */
    margin: 15px auto;
    padding: 15px; /* بزرگ‌تر کردن دکمه */
    background: #72383d;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px; /* کمی گردتر کردن دکمه */
    font-weight: bold;
    font-size: 18px; /* بزرگ‌تر کردن متن دکمه */
    transition: background 0.3s ease;
}

.project-access-btn:hover {
    background: #573134;
    color: #fff;
}


.project-access-btn:hover {
    background-color: #005177;
}
.internship-heading {
    font-size: 14px !important; /* کاهش اندازه فونت + بالا بردن اولویت */
    color: #fff !important;
    text-align: center !important;
    background: #4f545e !important;
    padding: 8px 0 !important; /* کاهش فضای داخلی */
    border-radius: 8px !important;
    width: 90% !important; /* تیتر بزرگ‌تر از دکمه شود */
    max-width: 700px !important; /* جلوگیری از بیش‌ازحد کشیده شدن */
    display: block !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2) !important;
    border-bottom: 3px solid #676e73 !important;
    margin-bottom: 15px !important; /* کاهش فاصله از دکمه */
}




.internship-centered {
    display: flex;
    flex-direction: column;
    align-items: center; /* وسط‌چین کردن متن و دکمه */
    justify-content: center; /* قرار دادن محتوا در مرکز صفحه */
    height: 60vh; /* تنظیم ارتفاع برای وسط آوردن محتوا */
    margin-top: 50px; /* تنظیم فاصله از بالای صفحه */
}
/* ✅ فرم مودال */
#upload-file-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#upload-file-modal .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    text-align: right;
}

/* ❌ بستن */
#upload-file-modal .close {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* ✅ آپلود سفارشی */
.custom-file-upload {
    position: relative;
    margin-bottom: 15px;
    width: 100%; 
}

.file-upload-label {
    display: block;
    width: 100%; 
    background: #4f545e;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease;
}

.file-upload-label:hover {
    background: #3d4148;
}

#file-upload {
    display: none;
}

#file-name {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 14px;
    color: #2e2e2e;
    font-weight: bold;
    text-align: center;
}


/* ✅ دکمه ارسال */
.styled-upload-button {
    display: inline-block;
    background: #72383d;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.styled-upload-button:hover {
    background: #573134;
}

textarea {
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ccc;
    resize: vertical;
}
#upload-file-modal textarea {
    width: 100%;
    min-height: 100px;
    max-height: 200px;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    background: #f8f8f8;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-family: inherit;
    color: #333;
    resize: vertical;
    transition: all 0.3s ease;
    outline: none;
}

#upload-file-modal textarea:focus {
    background: #fff;
    border: 1px solid #aaa;
    box-shadow: 0 0 0 3px rgba(114, 56, 61, 0.2);
}

#upload-file-modal textarea::-webkit-scrollbar {
    width: 8px;
}
#upload-file-modal textarea::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}
#upload-file-modal textarea::-webkit-scrollbar-thumb:hover {
    background: #999;
}


