/* Tabs Container */

.allcourses-section{
    margin-top: 100px;
    width: 100%;
}

.tabs-container {
    position: sticky;
    top: 0;
    background: #06ABE2;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tabs {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab {
    padding: 12px 20px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    background: transparent;
    border: none;
    border-radius: 8px 8px 0 0;
    margin: 0 4px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: none;
    outline: none;
    font-size: 1rem;
}

.tab:hover {
    background: #0284A8;
    color: #FFD700;
    box-shadow: 0 2px 8px rgba(6,171,226,0.08);
}

.tab.active {
    background: #fff;
    color: #181B4B;
    border-bottom: 3px solid #181B4B;
    box-shadow: 0 4px 16px rgba(6,171,226,0.10);
    z-index: 2;
    position: relative;
}

.tab-section {
    display: block;
}

.hidden-section {
    display: none !important;
}

/* Course Sections */
.allcourse-content {
    padding: 50px 20px;
}

.allcourse {
    background: white;
    padding: 30px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.allcourse h2 {
    color: #03456D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab {
        padding: 10px 15px;
        font-size: 14px;
    }

    .allcourse {
        width: 95%;
    }

}

@media (min-width: 769px) {
    .courses-container {
        width: 100%;
    }
}


.courses-container {

    text-align: center;
    padding: 50px 20px;
    /* background-color: #181B4B; */
}
.courses-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    background-color: #425c6c;
    padding: 10px 15px;
    border-radius: 8px;
    display: block;
    margin: 0 auto 30px auto;
}
.courses-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.program-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    padding: 20px;
    border: 1px solid #ddd;
}
.program-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.program-details {
    font-size: 14px;
    color: #333;
    text-align: left;
}
.program-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #ffd700;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}