/* =========================================
COURSES PAGE
========================================= */

.courses-page {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #276cff;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 48px;
    margin-top: 15px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card i {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #5d4dff, #288fff);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 25px;
    font-size: 30px;
}

.course-card h3 {
    margin-bottom: 15px;
}

.course-card p {
    color: #666;
    line-height: 1.8;
}

/* FEATURES */

.course-features {
    padding-bottom: 120px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 35px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card i {
    font-size: 32px;
    color: #276cff;
    margin-bottom: 18px;
}

/* =========================================
INTERNSHIP PAGE
========================================= */

.internship-page {
    padding: 120px 0;
}

.internship-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.internship-left span,
.apply-box span {
    color: #276cff;
    font-weight: 600;
    letter-spacing: 1px;
}

.internship-left h2 {
    font-size: 48px;
    margin: 20px 0;
}

.internship-left p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.internship-left img {
    width: 100%;
    border-radius: 35px;
}

.internship-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.internship-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.internship-card:hover {
    transform: translateX(10px);
}

.internship-card i {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #5d4dff, #288fff);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

/* APPLY */

.apply-section {
    padding-bottom: 120px;
}

.apply-box {
    background: linear-gradient(135deg, #010b2d, #00114d, #011239);
    padding: 80px 40px;
    border-radius: 35px;
    text-align: center;
    color: white;
}

.apply-box h2 {
    font-size: 48px;
    margin: 20px 0 35px;
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .course-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .internship-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .internship-left h2,
    .apply-box h2 {
        font-size: 38px;
    }

}

@media(max-width:700px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================
APPLY SECTION (two-column: info + form)
========================================= */

.apply-section {
    padding-bottom: 120px;
}

.apply-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* LEFT PANEL */

.apply-left {
    background: linear-gradient(135deg, #010b2d, #00114d, #011239);
    color: white;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apply-left span {
    color: #5d9dff;
    font-weight: 600;
    letter-spacing: 1px;
}

.apply-left h2 {
    font-size: 40px;
    margin: 20px 0 25px;
    line-height: 1.3;
}

.apply-left p {
    color: #c7d0e6;
    line-height: 1.9;
    margin-bottom: 30px;
}

.apply-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.apply-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #e6ebf7;
}

.apply-points i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5d4dff, #288fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* RIGHT PANEL - FORM */

.apply-right {
    background: white;
    padding: 60px 50px;
}

.apply-form .form-group {
    margin-bottom: 22px;
    text-align: left;
}

.apply-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.apply-form label span {
    color: #ff4d4d;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e6f0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a2e;
    background: #f8f9fc;
    transition: 0.3s ease;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    outline: none;
    border-color: #276cff;
    background: white;
    box-shadow: 0 0 0 4px rgba(39, 108, 255, 0.1);
}

.apply-form textarea {
    resize: vertical;
}

/* FILE UPLOAD */

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: 1.5px dashed #c3ccdf;
    border-radius: 12px;
    background: #f8f9fc;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.file-upload-label:hover {
    border-color: #276cff;
    background: #eef4ff;
    color: #276cff;
}

.file-upload-label i {
    font-size: 18px;
    color: #276cff;
}

.apply-form .primary-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* ALERTS */

.form-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert-success {
    background: #e6f9ee;
    color: #0f9d58;
    border: 1px solid #b7ecd0;
}

.form-alert-error {
    background: #fdecec;
    color: #d93025;
    border: 1px solid #f7c5c2;
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .apply-wrapper {
        grid-template-columns: 1fr;
    }

    .apply-left,
    .apply-right {
        padding: 50px 30px;
    }

    .apply-left h2 {
        font-size: 32px;
    }

}