﻿.text-justify {
            text-align: justify;
        }

        .become-instructor-img {
            position: relative;
            z-index: 1;
        }

            
        /* Make column stretch */
        .col-md-6,
        .col-lg-4,
        .col-xl-4 {
            display: flex;
        }

        /* Card full height */
        .course-item {
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: var(--box-shadow);
            padding: 20px;
            border-radius: 20px;
        }

        /* Image fixed height */
        .course-img img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Content fill remaining space */
        .course-content {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

            /* Push text properly */
            .course-content p {
                flex-grow: 1;
            }

        .pricing-feature ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .pricing-feature li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            line-height: 1.6;
        }

            /* Icon positioning */
            .pricing-feature li i {
                position: absolute;
                left: 0;
                top: 6px;
            }
        /* Box Design */
        .mission-box {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* Heading */
        .site-title {
            font-size: 22px;
            font-weight: 700;
        }

        /* Section spacing */
        @media (max-width: 991px) {
            .mission-right {
                margin-top: 30px;
            }
        }
        /* ✅ Mobile Responsive */
        @media (max-width: 768px) {
            .mission-box {
                padding: 20px;
            }

            .site-title {
                font-size: 18px;
            }
        }