.hero-section {
    background-color: #f9f9f9;
    border-radius: 10px;
    
}
.hero-section h5 {
    color: #004080;
    margin-bottom: 30px;
}
.hero-section p {
    color: #333;
}
.hero-section .highlight-orange {
    color: orange;
}
.hero-section .highlight-blue {
    color: #004080;
}
.hero-section .description {
    color: #555;
    margin-top: 30px;
}
.hero-section .btn-primary {
    background-color: #004080;
    border-color: #004080;
    padding: 10px 30px;
    border-radius: 30px;
    width: 38.5%;
}
.hero-section img {
    max-height: 158px;
}
.hero-section .image-text {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}
.set_the_font_hero {
    font-size: 60px;
}

@media screen and (max-width: 768px) {
    .set_the_font_hero {
        font-size: 25px;
    }
    .hero-section .btn-primary {
        background-color: #004080;
        border-color: #004080;
        padding: 9px 0px;
        border-radius: 30px;
        width: 65%;
        margin-bottom: 12px;
    }
    .make_it_center {
        text-align: center;
    }
}

.courses-section {
    background-color: #f0f8ff;
    padding: 4px 3px;
    border-radius: 10px;
    position: relative;
}

.courses-section h2 {
    color: #004080;
    text-align: center;
    margin-bottom: 30px;
}
.courses-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    margin: 0px 39px;
}

.courses-carousel.no-scrollbar {
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.courses-carousel.no-scrollbar::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.course-item {
    flex: 0 0 auto;
    width: 200px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}
.course-item i {
    font-size: 40px;
    color: #004080;
    margin-bottom: 10px;
}
.course-item p {
    font-size: 14px;
    color: #333;
    margin: 0;
}
.nav-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #004080;
    cursor: pointer;
    z-index: 10;
}

.nav-icon.left {
    left: 20px; /* Added margin */
}

.nav-icon.right {
    right: 20px; /* Added margin */
}
