/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1, h2 {
    text-align: center;
}


h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fffffffe;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
h2 {
    font-size: 2rem;
    color: #444;
    margin: 20px 0;
}
/* Styling for SUBJECTS */
.h5 {
    color: #d15d43; /* Bright orange */
    font-size: 2rem; /* Larger font size */
    font-weight: bold;
    margin-left: 1rem; /* Maintain the margin */
}
p {
    color: #f9f9f9;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Buttons */
button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 15px 30px;
    text-align: center;
    font-size: 1.2rem;
    margin: 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

/* Links inside Buttons */
button a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
button a:hover {
    text-decoration: underline;
}

/* Div and Row Layout */
.d-flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.justify-content-center {
    justify-content: center;
}
.bgclr {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Columns */
.col-12 {
    width: 100%;
}
.col-4 {
    width: 33%;
    padding: 10px;
}
.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Year Buttons */
.button {
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin: 10px 0;
}
.button:hover {
    background-color: #1e7e34;
    transform: translateY(-3px);
}

/* Dropdown Section */
#sectionyr, #sectionsub, #sectionsub2, #sectionsub3, #sectionsub4 {
    margin: 20px auto;
    text-align: center;
}

/* List */
ul {
    list-style-type: none;
    padding: 0;
    color: #fff;
}
li {
    margin: 10px 0;
    font-size: 1.3rem;
}

/* Misc */
hr {
    border: 1px solid #ddd;
    margin: 20px 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .col-4 {
        width: 100%;
    }
    button {
        width: 90%;
    }
}
