 /* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Adjust body padding to account for the banner */
body {
    padding-top: 0;
    margin: 0;
}

/* Header */
header {
    background-color: #010110;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: x-large;
    position: relative;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    width: 130px;
    height: 130px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 16px;
}

nav ul li a:hover {
    background-color: #2f57ad;
    border-radius: 5px;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style-type: none;
    padding: 10px;
    border-radius: 10px;
}

.submenu li {
    padding: 8px 16px;
}

.submenu li a {
    color: #020354;
    font-size: 15px;
    white-space: nowrap;
}

nav ul li:hover .submenu {
    display: block;
}

/* Banner */
.banner {
    text-align: center;
    padding: 50px;
    background-color: #e9f1f7;
}

.banner h1 {
    font-size: 2.5em;
    margin: 0;
}

.banner p {
    font-size: 1.2em;
    margin: 20px 0;
}

.banner a {
    background-color: #01020b;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.banner a:hover {
    background-color: #6c1d93;
}

/* Section */
.section {
    padding: 50px;
    background-color: white;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.section h4 {
    text-align: center;
}

.section h3 {
    text-align: center;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-around;
    
}

.timeline div {
    background-color: #01030c;
    color: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    width: 20%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.8s;
    
}
.timeline div:hover {
    transform: scale(1.05);
}

/* Grid */
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.box {
    background-color: white;
    border: 2px solid #ccc;
    padding: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

/* Courses Section */
.courses {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.course {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    width: 30%;
    text-align: center;
}

.course a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.course a:hover {
    background-color: #005bb5;
}

/* Footer */
footer {
    background-color: #010311;
    color: white;
    text-align: center;
    padding: 20px;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    display: inline;
    margin-right: 15px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}


