/* Courses Page Styles */
.courses {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.course-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.course-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-card h3 {
    margin: 15px 0 10px;
    color: #1d4e89;
}

.card-buttons {
    display: flex;
    justify-content: space-around;
    padding: 10px 10px;
}

.apply-btn,
.pdf-btn {
    padding: 8px 15px;
    font-size: 14px;
    background: #1d4e89;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.apply-btn:hover,
.pdf-btn:hover {
    background-color: #163d6c;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    max-width: 500px;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.modal-content form input,
.modal-content form textarea,
.modal-content form button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.modal-content form button {
    background: #1d4e89;
    color: #fff;
    border: none;
}

/* Why Choose Our Courses */
.why-courses {
    background-color: #f0f8ff;
    padding: 60px 20px;
}

.why-courses h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #003366;
    font-size: 2.2rem;
}

.why-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-courses-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s;
}

.why-courses-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2rem;
    color: #0074cc;
    background: #e0efff;
    padding: 15px;
    border-radius: 50%;
}

.why-courses-card h3 {
    margin-bottom: 8px;
    color: #003366;
}

/* Career Opportunities */
.career-opportunities {
    background-color: #ffffff;
    padding: 60px 20px;
}

.career-opportunities h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #003366;
    font-size: 2.2rem;
}

.career-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.career-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-circle {
    background-color: #0074cc;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.career-text h3 {
    margin-bottom: 5px;
    color: #002244;
}

.career-text p {
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .career-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-text {
        text-align: left;
    }
}



/* Download Brochures Section */
.brochures-section {
    padding: 60px 20px;
    background-color: #f4faff;
    text-align: center;
}

.brochures-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #003366;
}

.brochure-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.brochures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.brochure-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.brochure-card:hover {
    transform: translateY(-5px);
}

.brochure-icon {
    font-size: 3rem;
    color: #e63946;
    margin-bottom: 15px;
}

.brochure-card h3 {
    margin-bottom: 15px;
    color: #003366;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0074cc;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.download-btn:hover {
    background-color: #005a9c;
}

/* Responsive */
@media (max-width: 768px) {
    .brochures-section h2 {
        font-size: 1.8rem;
    }
}