

        .course-category__card__icon-container {
            position: relative;
            margin-bottom: 20px;
        }

        .course-category__card__image-container {
            width: 100%;
            height: 300px;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            margin-bottom: 20px;
            border: 1px solid #c8c8c8;
        }

        .course-category__card__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            /*opacity: 0.82;*/
            /* border: 2px solid #00706e;
                border-radius: 12px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                box-sizing: border-box;
                transition: all 0.3s ease;
                background-color: #00706e;*/
        }

        .course-category__card__image-container .course-category__card__icon-box {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }


        .course-category__card:hover .course-category__card__image {
            transform: scale(1.05);
        }
    


        .medeed-vision-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 0;
        }



        .vision-content {
            text-align: center;
            margin: 0 auto;
        }


        .vision-title {
            color: #2c3e50;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: 20px;
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .medeed-vision-section {
                padding: 40px 0;
            }
        }
    