 /* === Custom Unique Class Names === */
  .bansal-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    background-color: #f5f7fa !important;
    border-radius: 16px !important;
}

        .bansal-tabs-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
        }

        .bansal-tab-btn {
            padding: 12px 26px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 130px;
        }

        .bansal-tab-btn.bansal-active {
            background-color: #007bff;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
        }

        .bansal-tab-btn:not(.bansal-active) {
            background-color: #e9ecef;
            color: #495057;
        }

        .bansal-tab-btn:hover:not(.bansal-active) {
            background-color: #dee2e6;
        }

        .bansal-courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 22px;
            padding: 10px 0;
        }

        .bansal-course-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .bansal-course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }

        .bansal-card-banner {
            position: relative;
            height: 160px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            overflow: hidden;
        }

        .bansal-card-banner.jee-theme {
            background: linear-gradient(135deg, #007bff, #0056b3);
        }

        .bansal-card-banner.foundation-theme {
            background: linear-gradient(135deg, #28a745, #1e7e34);
        }

        .bansal-card-banner.neet-theme {
            background: linear-gradient(135deg, #dc3545, #a71d2a);
        }

        .bansal-card-banner::before {
            content: "∫ ∑ √ α β γ π ∞ ∂ ∇";
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 36px;
            opacity: 0.15;
            color: white;
            pointer-events: none;
        }

        .bansal-banner-title {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            z-index: 2;
            max-width: 80%;
        }

        .bansal-student-img {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 110px;
            height: auto;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .bansal-card-details {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bansal-batch-tag {
            background-color: #007bff;
            color: white;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 12px;
        }

        .bansal-batch-tag.foundation {
            background-color: #28a745;
        }

        .bansal-batch-tag.neet {
            background-color: #dc3545;
        }

        .bansal-course-name {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .bansal-details-btn {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            color: #495057;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            align-self: center;
            margin-top: auto;
        }

        .bansal-details-btn:hover {
            background-color: #007bff;
            color: white;
            border-color: #007bff;
        }

        .bansal-section-content {
            display: none;
        }

        .bansal-section-content.bansal-active {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .bansal-tab-btn {
                padding: 10px 18px;
                font-size: 14px;
                min-width: 100px;
            }

            .bansal-banner-title {
                font-size: 18px;
            }

            .bansal-student-img {
                width: 90px;
            }

            .bansal-card-banner {
                height: 140px;
            }
        }

        @media (max-width: 480px) {
            .bansal-wrapper {
                padding: 10px;
            }

            .bansal-tabs-nav {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
                white-space: nowrap;
            }

            .bansal-tabs-nav::-webkit-scrollbar {
                height: 6px;
            }

            .bansal-tabs-nav::-webkit-scrollbar-thumb {
                background: #ccc;
                border-radius: 3px;
            }

            .bansal-courses-grid {
                grid-template-columns: 1fr;
            }
        }