 /* Scholarship Banner Section */
        .scholarship-banner-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #dd5119 0%, #cd7411 50%, #2d1b1f 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background */
        .scholarship-banner-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="70" r="1.8" fill="rgba(255,255,255,0.12)"/></svg>') repeat;
            animation: floatPattern 20s linear infinite;
            z-index: 1;
        }

        @keyframes floatPattern {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-100px); }
        }

        .scholarship-banner-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .scholarship-banner-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Grid Layout */
        .scholarship-banner-grid {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 40px;
            align-items: center;
        }

        /* Left - Discount Badge */
        .discount-badge {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
            border: 5px solid rgba(255, 255, 255, 0.3);
            animation: pulse 3s infinite;
            flex-shrink: 0;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .discount-badge .text {
            font-size: 0.75rem;
            color: #2d1b1f;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .discount-badge .number {
            font-size: 3rem;
            font-weight: 900;
            color: #2d1b1f;
            line-height: 1;
        }

        /* Center - Content */
        .banner-content {
            color: white;
        }

        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 215, 0, 0.2);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
            border: 2px solid rgba(255, 215, 0, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .banner-badge i {
            color: #ffd700;
        }

        .banner-title {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 10px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .banner-title .highlights {
            color: #ffd700;
        }

        .banner-description {
            font-size: 1rem;
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.95);
        }

        .banner-features {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .feature-tag {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-tag i {
            color: #ffd700;
            font-size: 12px;
        }

        /* Right - CTA */
        .banner-cta {
            flex-shrink: 0;
        }

        .btn-apply-banner {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #2d1b1f;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .btn-apply-banner:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
            color: #2d1b1f;
        }

        /* Campus Locations */
        .campus-locations {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .campus-locations i {
            color: #ffd700;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .scholarship-banner-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .discount-badge {
                margin: 0 auto;
            }

            .banner-features {
                justify-content: center;
            }

            .banner-cta {
                display: flex;
                justify-content: center;
            }

            .campus-locations {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .scholarship-banner-section {
                padding: 50px 0;
            }

            .banner-title {
                font-size: 1.8rem;
            }

            .discount-badge {
                width: 130px;
                height: 130px;
            }

            .discount-badge .number {
                font-size: 2.5rem;
            }

            .btn-apply-banner {
                padding: 16px 35px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .banner-title {
                font-size: 1.5rem;
            }

            .banner-description {
                font-size: 0.9rem;
            }

            .discount-badge {
                width: 120px;
                height: 120px;
            }

            .discount-badge .number {
                font-size: 2.2rem;
            }

            .btn-apply-banner {
                width: 100%;
                justify-content: center;
                padding: 14px 30px;
                font-size: 14px;
            }

            .banner-features {
                flex-direction: column;
                gap: 10px;
            }
        }