.mission-vision {
            width: 100%;
            padding: 38px 20px;
            background: #fff;
            background-attachment: fixed;
            margin: 0;
            min-height: auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            color: white;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-header p {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 300;
        }

        .container-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }

        .col-lg-6 {
            flex: 0 0 50%;
            padding-left: 15px;
            padding-right: 15px;
            margin-bottom: 8px;
        }

        .card-wrapper {
            perspective: 1000px;
            height: 100%;
        }

        .mission-card, .vision-card {
            background: white;
            border-radius: 12px;
            padding: 15px 36px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 235px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .mission-card::before, .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #ea1b29;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .mission-card:hover .card-icon, .vision-card:hover .card-icon {
            animation: flip 0.6s ease-in-out;
        }

        @keyframes flip {
            0% {
                transform: rotateY(0deg);
            }
            50% {
                transform: rotateY(90deg);
            }
            100% {
                transform: rotateY(0deg);
            }
        }

        .card-icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
            height: 40px;
            width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #c80000;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
            color: #ea1b29;
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #333;
            text-transform: capitalize;
            letter-spacing: 1px;
            text-align: center;
        }

        .card-description {
            font-size: 13px;
            line-height: 1.8;
            color: #555;
            text-align: center;
        }

        /* Tablet View */
        @media (max-width: 992px) {
            .mission-vision {
                padding: 40px 15px;
            }

            .section-header h1 {
                font-size: 2.2rem;
            }

            .container-wrapper {
                padding: 0 15px;
            }

            .col-lg-6 {
                padding-left: 10px;
                padding-right: 10px;
                margin-bottom: 25px;
            }

            .mission-card, .vision-card {
                padding: 35px 25px;
                min-height: 300px;
            }
        }

        /* Mobile View */
        @media (max-width: 768px) {
            .mission-vision {
                padding: 35px 15px;
            }

            .section-header {
                margin-bottom: 35px;
            }

            .section-header h1 {
                font-size: 1.8rem;
                margin-bottom: 10px;
            }

            .section-header p {
                font-size: 1rem;
            }

            .container-wrapper {
                padding: 0 15px;
            }

            .row {
                margin-right: -10px;
                margin-left: -10px;
            }

            .col-lg-6 {
                flex: 0 0 100%;
                padding-left: 10px;
                padding-right: 10px;
                margin-bottom: 20px;
            }

            .mission-card, .vision-card {
                padding: 25px 20px;
                min-height: auto;
                border-radius: 10px;
            }

            .card-icon {
                font-size: 2.5rem;
                height: 60px;
                width: 60px;
                margin-bottom: 15px;
            }

            .card-title {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }

            .card-description {
                font-size: 0.95rem;
                line-height: 1.7;
            }
        }

        /* Small Mobile View */
        @media (max-width: 576px) {
            .mission-vision {
                padding: 30px 12px;
            }

            .container-wrapper {
                padding: 0 12px;
            }

            .row {
                margin-right: -8px;
                margin-left: -8px;
            }

            .section-header {
                margin-bottom: 30px;
            }

            .section-header h1 {
                font-size: 1.5rem;
                letter-spacing: 1px;
                margin-bottom: 8px;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .col-lg-6 {
                flex: 0 0 100%;
                padding-left: 8px;
                padding-right: 8px;
                margin-bottom: 15px;
            }

            .mission-card, .vision-card {
                padding: 20px 15px;
                min-height: auto;
            }

            .card-icon {
                font-size: 2.5rem;
                height: 55px;
                width: 55px;
                margin-bottom: 12px;
            }

            .card-title {
                font-size: 1.3rem;
                margin-bottom: 12px;
                letter-spacing: 0.5px;
            }

            .card-description {
                font-size: 0.9rem;
                line-height: 1.6;
            }
        }