body {
    background: #f0f1f6;
    font-family: "Roboto Condensed", sans-serif;
    height: 90vh;
    display: flex;
    justify-content: center;

}


.course-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    /* Adjust to avoid navbar overlap */
    background: #f0f1f6;
    padding-bottom: 40px;
}

.course-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.course-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* New Card Style */
.course-item {
    position: relative;
    width: 320px;
    margin: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.course-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(45deg, #007BFF, #00C6FF);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: height 0.3s ease;
}

.course-item:hover .overlay {
    height: 100px;
}

.overlay-text {
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    transition: transform 0.3s ease;
}

.course-item:hover .overlay-text {
    transform: translateY(-10px);
}

.ul {
    list-style-type: none;
    overflow: hidden;
    /* background-color:#0F2C4E; */
    font-family: "Roboto Condensed", sans-serif;
    margin-top: 13px;
    margin-left: -10px;
    margin-right: 10px;
    z-index: 100;
    position: fixed;
    width: 100%;
}
.ul li {
    float: right;
    padding-right: 70px;
}
/* h1{color:#0F2C4E;margin-top: 100px;} */
.ul li .a {
    display: block;
    color: #0F2B4E;
    font-size: 20px;
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
}

.name_c {
    padding: 20px;
    left: 70px;
    color: #0F2C4E;
    font-size: 30px;
    font-weight: bold;
    margin-top: -18px;
    position: absolute;
}

.ul li .a:hover {
    /* box-shadow:1px 1px 20px; */
    border-bottom: 5px rgb(150, 146, 146) solid;
}


/* img{width: 100px;position: fixed;  margin-top:64px;} */

.log img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: -5px 5px 10px gray;
    margin-right: 40px;
    position: fixed;
    margin-top: 5px;
}


/* .nav{position: fixed;} */

ul {
    list-style-type: none;
}