/* General Styles for Courses Page */
.hero-courses {
    text-align: center;
    padding: 40px 20px;
    background: url('https://clickzter.com/click/educlicks/images/courses-banner-bg.jpg') center/cover no-repeat;
    color: white;
}

.hero-courses h1 {
    font-size: 37px;
    margin-bottom: 25px;
    margin-top: 10px;
}

.banner-text {
    background-color: none;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 3px;
    padding-right: 3px;
    
}


.hero-courses p {
    color: yellow;
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 20px;
    margin: 0 auto 7px;
    line-height: 1.5;
    border: 2px solid black;
    border-radius: 5rem;
}

.btn-primary {
    background-color: #ffcc00;
    color: black;
    margin-top: 45px;
    padding: 25px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    
}

.btn-primary:hover {
    background-color: #e6b800;
}



.btn-text {
    
    margin-top: 50px;
    margin-bottom: 35px;
    
}






/* Categories Section */
.categories {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.categories h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.category-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.category-card {
    background: #007bff;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.category-card:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Featured Courses Section */
.courses-list {
    text-align: center;
    padding: 50px 20px;
}

.courses-list h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.course-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.course-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 320px;
    transition: 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.course-card img {
    width: 100%;
    border-radius: 5px;
}

.btn-secondary {
    display: block;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: #0056b3;
}

/* Call to Action Section */
.cta {
    text-align: center;
    padding: 50px 20px;
    background-color: #007bff;
    color: white;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}


.signup-btn {
    margin-top: 45px;
    margin-bottom: 25px;
}





/* Footer */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
