/* SECTION 1 */
/* body {
    background: linear-gradient(to right, #f8fcff, #eefaff);
} */

.hero-section {
    display: flex;
    align-items: center;
    min-height: 60vh;
    /* padding: 20px; */
    background: linear-gradient(280deg, #EDFEFC 13.84%, #FEF6EC 96.14%);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.hero-content p {
    margin: 10px 0;
    font-size: 1rem;
    color: #666;
}

.hero-content .btn-primary {
    background-color: #007bff;
    border: none;
}

.hero-content .btn-secondary {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    color: #555;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 0% 25% 0 25%;
}

.decorative {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* SECTION 2 */

body {
    background-color: #f9fafb;
}

.programs-section {
    padding: 60px 20px;
    text-align: center;
}

.programs-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.programs-section p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
}

.program-card {
    background-color: #fff;
    border: 1px dashed #ddd;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
}

.program-card:hover {
    background-color: #0193DC;
    color: #fff;
    transform: translateY(-10px);
}

.program-card img {
    width: 60px;
    margin-bottom: 15px;
}

.program-card h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.program-card .btn {
    background-color: transparent;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.program-card:hover .btn {
    background-color: #fff;
    color: #007bff;
}

/* SECTION 3 */
.program-image {
    border-radius: 50% 0 50% 0;
    width: 100%;
    height: auto;
}

.program-container {
    align-items: center;
    text-align: center;
}

.stats-box {
    background-color: #0193DC;
    border-radius: 32px;
    padding: 10px;
}

.bullet-icon {
    color: #0193DC;
}

.add-view-more-btn {
    border-radius: 42px;
    background: #0193DC;
    color: #fff;
    border: none;
    display: flex;

    padding: 10px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* SECTION 5 */

.testimonial-card {
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
    background-color: #f8f9fa;
    /* Light background color */
}

.testimonial-card:hover {
    background-color: #0193DC;
    /* Blue color on hover */
    color: white;
    /* Change text color to white */
    transform: scale(1.05);
    /* Pop-out effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow on hover */
}

.testimonial-card img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.testimonial-card:hover img {
    transform: scale(1.1);
    /* Slight zoom effect on image hover */
}

.testimonial-card .card-title {
    font-size: 1rem;
    font-weight: bold;
}

.testimonial-card .role {
    font-size: 0.9rem;
    color: gray;
}

.testimonial-card:hover .role {
    color: #d9d9d9;
    /* Slightly lighter gray text for the role on hover */
}