.news_row {
        display: flex;
        gap: 30px;
        align-items: stretch;
    }

    .news_col {
        flex: 1;
        display: flex;
        align-items: stretch;
    }

    .keetabon_section,
    .news_post_large_container {
        flex: 1;
        max-width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .news_post_image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }

    /* MOBILE STYLES */
    @media (max-width: 768px) {
        .news_row {
            flex-direction: column;
        }

        .news_col {
            max-width: 100% !important;
            width: 100% !important;
            margin-bottom: 20px;
        }

        /* APPLY order ON .news_col */
        .news_col.image-col {
            order: 1;
        }

        .news_col.content-col {
            order: 2;
        }
    }


    .courses {
    /* background-color: #fffdf2; */
    padding: 60px 0;
}

.course {
    /* background-color: #fffef6; */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    transition: transform 0.3s ease;
    height: 100%;
}

.course:hover {
    transform: translateY(-5px);
}

.course_image img {
    border-radius: 10px;
    margin-bottom: 15px;
}

.course_title a {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.course_teacher {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.course_text p {
    color: #444;
    font-size: 15px;
    margin-bottom: 15px;
}

.course_footer {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.course_info {
    margin-right: 15px;
    font-size: 14px;
    color: #555;
}

.courses_button a {
    background-color: transparent;
    border: 2px solid #8b0000;
    color: #8b0000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.courses_button a:hover {
    background-color: #8b0000;
    color: #fff;
}
/* .card-testimonial-style {
    background-color: #FFFBF0;
} */



.news {
    background-color: #fffdf2;
    /* padding: 60px 0; */
}


.counter {
    background-color: #fffdf2;
    /* padding: 60px 0; */
}


.newsletter_background parallax-window {
    background-color: #fffdf2;
    /* padding: 60px 0; */
}



 .eye-icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        font-size: 1.1rem;
        color: #888;
    }

    .form-control:focus {
        box-shadow: none;
        border-color: #ff5d5d;
    }





