/* Header Section */
.curriculum-header {
    text-align: center;
    /*font-family: 'Poppins', 'Arial', sans-serif;*/
    font-family: 'Roboto Slab', serif;
    /*background-color: #f3f3f3;*/
    padding: 50px 20px;
    /* margin-top: 150px; */
}

.curriculum-header h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(242, 101, 19, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.curriculum-header h1 {
    /*font-family: 'Poppins', 'Arial', sans-serif;*/
    font-size: 3.2rem;
    font-weight: 700;
    /* color: #333333; */
    color: #384158;
    text-align: center;
    margin-bottom: 25px;
    /*margin-bottom: 20px;*/
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    margin-top: 80px;
    /* padding-top: 50px; */
}

.curriculum-header h1::after {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #f26513, #ff8000);
    width: 70%;
    margin: 15px auto 0;
    border-radius: 3px;
}


.curriculum-header p {
    font-size: 1.3em;
    margin-top: 15px;
}


/* Curriculum Section */
.curriculum-section {
    margin: 50px auto;
    max-width: 1200px;
    padding: 20px;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.curriculum-card {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 20px;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.curriculum-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.curriculum-card h3 {
    color: #333333;
}

.curriculum-card p {
    margin: 10px 0;
}

/* Hover Effect on Curriculum Card */
.curriculum-card:hover {
    border: 1px solid #f26513; /* Change border color */
    cursor: pointer; /* Show pointer cursor for interactivity */
}

.curriculum-card:hover h3 {
    color: #f26513; /* Change card title color */
}

#curriculum-search {
    margin-bottom: 20px;
}

/* Tutoring Benefits Section */
.tutoring-benefits {
    margin: 50px auto;
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

.tutoring-benefits h2 {
    font-size: 2em;
}

.tutoring-benefits ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.tutoring-benefits ul li {
    margin: 15px 0;
    font-size: 1.2em;
}

/* Contact CTA Section */
.contact-cta {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
}

.contact-cta h2 {
    font-size: 2em;
}

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

.cta-button {
    display: inline-block;
    font-size: 1.2em;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #0056b3;
}
