.admission-card {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            padding: 25px;
            transition: 0.3s ease;
        }

        .admission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .admission-scroll {
            max-height: 350px;
            overflow-y: auto;
            padding-right: 10px;
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar */
        .admission-scroll::-webkit-scrollbar {
            width: 6px;
        }

        .admission-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .admission-scroll::-webkit-scrollbar-thumb {
            background: #0d6efd;
            border-radius: 10px;
        }

        .admission-scroll::-webkit-scrollbar-thumb:hover {
            background: #084298;
        }

        /* Optional subtle fade bottom effect */
        .admission-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            border-radius: 0 0 15px 15px;
            pointer-events: none;
        }