/* Hero Section Styles */
    .hero-section {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 600px;
        max-height: 800px;
        overflow: hidden;
        margin: 0 !important;
        margin-top: -21.33px !important;
        padding: 0 !important;
        display: block;
    }

    .hero-video-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(59, 130, 246, 0.4) 100%);
        z-index: 2;
    }

    /* Features Section - Overlay on Video (Below Buttons) */
    .features-section-overlay {
        position: absolute;
        bottom: 120px;
        left: 0;
        right: 0;
        z-index: 4;
        padding: 0 20px;
    }

    .features-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        position: relative;
    }

    .feature-block {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px 18px;
        border-radius: 18px;
        text-align: center;
        box-shadow: 
            0 10px 35px rgba(59, 130, 246, 0.15),
            0 4px 12px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    /* Gradient Backgrounds for Each Block */
    .feature-block-1 {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
        border-left: 4px solid #3b82f6;
    }

    .feature-block-1::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    }

    .feature-block-1:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(255, 255, 255, 0.98) 100%);
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .feature-block-2 {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
        border-left: 4px solid #8b5cf6;
    }

    .feature-block-2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
    }

    .feature-block-2:hover {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(255, 255, 255, 0.98) 100%);
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 40px rgba(236, 72, 153, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .feature-block-3 {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
        border-left: 4px solid #10b981;
    }

    .feature-block-3::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
    }

    .feature-block-3:hover {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(255, 255, 255, 0.98) 100%);
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 40px rgba(16, 185, 129, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .feature-block-4 {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
        border-left: 4px solid #f59e0b;
    }

    .feature-block-4::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    }

    .feature-block-4:hover {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(255, 255, 255, 0.98) 100%);
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 40px rgba(245, 158, 11, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        margin: 0 auto 12px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: white;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }

    /* Colorful Icons for Each Block with Enhanced Gradients */
    .feature-block-1 .feature-icon {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    }

    .feature-block-2 .feature-icon {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    }

    .feature-block-3 .feature-icon {
        background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    }

    .feature-block-4 .feature-icon {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    }

    .feature-block:hover .feature-icon {
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }

    .feature-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 8px;
        line-height: 1.4;
        position: relative;
        z-index: 1;
        letter-spacing: -0.02em;
    }

    .feature-description {
        font-size: 0.8rem;
        color: #475569;
        line-height: 1.6;
        margin: 0;
        position: relative;
        z-index: 1;
        font-weight: 400;
    }

    /* Responsive Design for Features Overlay */
    @media (max-width: 1200px) {
        .features-section-overlay {
            bottom: 90px;
        }

        .features-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
    }

    @media (max-width: 768px) {
        .features-section-overlay {
            bottom: 10px;
            padding: 0 10px;
        }

        .features-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .feature-block {
            padding: 14px 10px;
            border-radius: 14px;
        }

        .feature-icon {
            width: 18px;
            height: 18px;
            font-size: 8px;
            margin-bottom: 8px;
            border-radius: 10px;
        }

        .feature-title {
            font-size: 0.75rem;
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .feature-description {
            font-size: 0.7rem;
            line-height: 1.4;
        }

        .hero-content {
            margin-top: 0;
        }
    }

    @media (max-width: 480px) {
        .features-section-overlay {
            bottom: 8px;
            padding: 0 8px;
        }

        .features-container {
            gap: 8px;
        }

        .feature-block {
            padding: 12px 8px;
            border-radius: 12px;
        }

        .feature-icon {
            width: 16px;
            height: 16px;
            font-size: 7px;
            margin-bottom: 6px;
            border-radius: 8px;
        }

        .feature-title {
            font-size: 0.7rem;
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .feature-description {
            font-size: 0.65rem;
            line-height: 1.3;
        }
    }

/* Hero Section Styles */
    .hero-section {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 600px;
        max-height: 800px;
        overflow: hidden;
        margin: 0 !important;
        margin-top: -21.33px !important;
        padding: 0 !important;
        display: block;
    }

    .hero-video-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(59, 130, 246, 0.4) 100%);
        z-index: 2;
    }

    .hero-content {
        position: absolute;
        top: 28%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 3;
        width: 90%;
        max-width: 800px;
        padding: 0 20px;
        margin-top: 0;
    }

    @media (max-width: 768px) {
        .hero-content {
            top: 35%;
            transform: translate(-50%, -50%);
            width: 95%;
            padding: 0 15px;
            margin-top: 0;
        }
    }

    .hero-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 20px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        line-height: 1.2;
        animation: fadeInUp 1s ease-out;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        color: #e2e8f0;
        margin-bottom: 30px;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    @media (max-width: 768px) {
        .hero-section {
            height: 100vh;
            min-height: 100vh;
            max-height: none;
        }

        .hero-title {
            font-size: 1.8rem;
            margin-bottom: 12px;
            line-height: 1.3;
            white-space: normal;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .hero-buttons {
            gap: 12px;
            margin-bottom: 0;
        }

        .hero-btn {
            padding: 10px 20px;
            font-size: 0.85rem;
            gap: 6px;
            border-radius: 25px;
        }

        .hero-btn i {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            white-space: normal;
        }

        .hero-subtitle {
            font-size: 0.85rem;
            margin-bottom: 16px;
        }

        .hero-buttons {
            gap: 10px;
            flex-direction: column;
            width: 100%;
        }

        .hero-btn {
            padding: 10px 18px;
            font-size: 0.8rem;
            width: 100%;
            justify-content: center;
        }
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease-out 0.6s both;
        margin-bottom: 15px;
    }

    .hero-btn {
        padding: 12px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
        .hero-buttons {
            gap: 12px;
            margin-bottom: 0;
        }

        .hero-btn {
            padding: 10px 20px;
            font-size: 0.85rem;
            gap: 6px;
            border-radius: 25px;
        }

        .hero-btn i {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .hero-buttons {
            gap: 10px;
            flex-direction: column;
            width: 100%;
        }

        .hero-btn {
            padding: 10px 18px;
            font-size: 0.8rem;
            width: 100%;
            justify-content: center;
        }
    }
    /* Fixed unmatched closing brace above, removed extra closing brace */

    .hero-btn-primary {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: white !important;
        border: none;
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
        position: relative;
        overflow: hidden;
    }

    .hero-btn-primary,
    .hero-btn-primary *,
    .hero-btn-primary i {
        color: white !important;
    }

    .hero-btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .hero-btn-primary:hover::before {
        left: 100%;
    }

    .hero-btn-primary:hover {
        background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    }

    .hero-btn-primary:active {
        transform: translateY(-1px) scale(1.02);
    }

    .hero-btn-secondary {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }

    .hero-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    }

    .hero-btn i {
        font-size: 1rem;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .hero-title {
            font-size: 2rem;
            white-space: nowrap;
        }

        .hero-subtitle {
            font-size: 1.2rem;
        }

        .hero-btn {
            padding: 12px 24px;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 768px) {
        .hero-section {
            height: 100vh;
            min-height: 100vh;
            max-height: none;
        }

        .hero-content {
            top: 30%;
            transform: translate(-50%, -50%);
            width: 95%;
            padding: 0 15px;
            margin-top: 0;
        }

        .hero-title {
            font-size: 1.8rem;
            margin-bottom: 12px;
            line-height: 1.3;
            white-space: normal;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .hero-buttons {
            gap: 12px;
            margin-bottom: 0;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-btn {
            padding: 10px 20px;
            font-size: 0.85rem;
            gap: 6px;
            border-radius: 25px;
            width: auto;
            max-width: none;
        }

        .hero-btn i {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .hero-section {
            height: 100vh;
            min-height: 100vh;
        }

        .hero-content {
            top: 25%;
        }

        .hero-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            white-space: normal;
        }

        .hero-subtitle {
            font-size: 0.85rem;
            margin-bottom: 16px;
        }

        .hero-buttons {
            gap: 10px;
            flex-direction: column;
            width: 100%;
        }

        .hero-btn {
            padding: 10px 18px;
            font-size: 0.8rem;
            width: 100%;
            justify-content: center;
        }
    }

/* Statistics Section */
    .statistics-section {
        padding: 40px 20px;
        background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #fef3c7 100%);
        position: relative;
        overflow: hidden;
    }

    .statistics-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.03) 1px, transparent 0);
        background-size: 100% 100%, 100% 100%, 30px 30px;
        pointer-events: none;
        z-index: 0;
    }

    .statistics-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .stat-item {
        text-align: center;
        padding: 20px 20px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 20px;
        border: 2px solid rgba(226, 232, 240, 0.8);
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.12),
            0 6px 18px rgba(0, 0, 0, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .stat-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
            linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.03) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .stat-item:hover::after {
        opacity: 1;
    }

    .stat-content-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 12px;
    }


    .stat-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: white;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
        box-shadow: 
            0 6px 20px rgba(59, 130, 246, 0.4),
            0 3px 10px rgba(59, 130, 246, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }

    .stat-item:nth-child(2) .stat-icon {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
        box-shadow: 
            0 6px 20px rgba(139, 92, 246, 0.4),
            0 3px 10px rgba(139, 92, 246, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    }

    .stat-item:nth-child(3) .stat-icon {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
        box-shadow: 
            0 6px 20px rgba(245, 158, 11, 0.4),
            0 3px 10px rgba(245, 158, 11, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    }

    .stat-item:nth-child(4) .stat-icon {
        background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
        box-shadow: 
            0 6px 20px rgba(16, 185, 129, 0.4),
            0 3px 10px rgba(16, 185, 129, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    }


    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        letter-spacing: -0.02em;
    }

    .stat-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #475569;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 8px;
    }

    @media (max-width: 968px) {
        .statistics-section {
            padding: 35px 20px;
        }

        .statistics-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .stat-item {
            padding: 18px 18px;
        }

        .stat-content-row {
            gap: 12px;
            margin-bottom: 10px;
        }

        .stat-icon {
            width: 34px;
            height: 34px;
            font-size: 15px;
        }

        .stat-number {
            font-size: 1.75rem;
        }
    }

    @media (max-width: 480px) {
        .statistics-section {
            padding: 30px 15px;
        }

        .statistics-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .stat-item {
            padding: 16px 12px;
            border-radius: 16px;
        }

        .stat-content-row {
            gap: 10px;
            margin-bottom: 8px;
        }

        .stat-icon {
            width: 32px;
            height: 32px;
            font-size: 14px;
            border-radius: 8px;
        }

        .stat-number {
            font-size: 1.5rem;
        }

        .stat-label {
            font-size: 0.8rem;
            margin-top: 6px;
        }
    }

/* Toppers Students Section */
    .toppers-section {
        padding: 35px 20px;
        background: linear-gradient(135deg, #ffffff 0%, #fefce8 30%, #ffffff 70%, #f0fdf4 100%);
        position: relative;
        overflow: hidden;
    }

    .toppers-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .toppers-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .toppers-title {
        font-size: 1.65rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .toppers-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        margin: 0 auto 12px;
        border-radius: 2px;
    }

    .toppers-subtitle {
        font-size: 0.9rem;
        color: #64748b;
        font-weight: 400;
    }

    .toppers-slider-wrapper {
        position: relative;
        margin-bottom: 30px;
    }

    .toppers-slider {
        display: flex;
        gap: 25px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
    }

    .toppers-slider::-webkit-scrollbar {
        display: none;
    }

    .topper-card {
        flex: 0 0 280px;
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        border-radius: 20px;
        padding: 25px;
        text-align: center;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.12),
            0 6px 18px rgba(0, 0, 0, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid rgba(226, 232, 240, 0.7);
        position: relative;
        overflow: hidden;
    }

    .topper-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
            linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.04) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .topper-card:hover::after {
        opacity: 1;
    }

    .topper-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 
            0 18px 45px rgba(0, 0, 0, 0.18),
            0 10px 25px rgba(0, 0, 0, 0.12),
            0 4px 10px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .topper-image {
        position: relative;
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
        border-radius: 50%;
        border: 4px solid rgba(59, 130, 246, 0.2);
        box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.12),
            inset 0 0 0 2px rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
    }

    .topper-card:hover .topper-image {
        border-color: rgba(59, 130, 246, 0.4);
        transform: scale(1.05);
    }

    .topper-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 50%;
    }

    .topper-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        box-shadow: 
            0 4px 12px rgba(245, 158, 11, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
        border: 3px solid white;
        z-index: 10;
    }

    .topper-info {
        margin-top: 10px;
    }

    .topper-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .topper-class {
        font-size: 0.85rem;
        color: #64748b;
        margin-bottom: 10px;
    }

    .topper-percentage {
        font-size: 1.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 0;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 
            0 4px 15px rgba(59, 130, 246, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        z-index: 2;
    }

    .slider-btn:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 
            0 6px 20px rgba(59, 130, 246, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.4);
    }

    .slider-prev {
        left: -25px;
    }

    .slider-next {
        right: -25px;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active,
    .dot:hover {
        background: #3b82f6;
        transform: scale(1.2);
    }

    @media (max-width: 968px) {
        .topper-card {
            flex: 0 0 240px;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .slider-prev {
            left: -15px;
        }

        .slider-next {
            right: -15px;
        }
    }

    @media (max-width: 768px) {
        .toppers-section {
            padding: 30px 15px;
        }

        .toppers-header {
            margin-bottom: 30px;
        }

        .toppers-title {
            font-size: 1.45rem;
        }

        .topper-card {
            flex: 0 0 220px;
            padding: 20px;
        }

        .topper-image {
            width: 130px;
            height: 130px;
        }

        .topper-name {
            font-size: 1rem;
        }

        .topper-percentage {
            font-size: 1.3rem;
        }

        .slider-btn {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }

        .slider-prev {
            left: -10px;
        }

        .slider-next {
            right: -10px;
        }
    }

    @media (max-width: 480px) {
        .toppers-section {
            padding: 35px 10px;
        }

        .topper-card {
            flex: 0 0 200px;
            padding: 18px;
        }

        .topper-image {
            width: 120px;
            height: 120px;
        }

        .topper-badge {
            width: 35px;
            height: 35px;
            font-size: 16px;
        }
    }

/* About School Section - Merged Styling */
    .about-school-section {
        padding: 50px 20px;
        background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 30%, #ffffff 70%, #fef3f2 100%);
        position: relative;
        overflow: hidden;
    }

    .about-school-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.04) 1px, transparent 0);
        background-size: 100% 100%, 100% 100%, 35px 35px;
        pointer-events: none;
        z-index: 0;
    }

    .about-school-section::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }


    .about-school-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .about-school-container::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
        border-radius: 50%;
        filter: blur(40px);
        z-index: -1;
    }

    .about-school-image-wrapper {
        position: relative;
        height: 100%;
        min-height: 420px;
    }

    .about-school-image {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.12),
            0 4px 15px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .about-school-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
        pointer-events: none;
    }

    .about-school-image:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 20px 60px rgba(59, 130, 246, 0.2),
            0 8px 25px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .about-school-image:hover::before {
        opacity: 1;
    }

    .about-school-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        filter: brightness(1) contrast(1);
    }

    .about-school-image:hover img {
        transform: scale(1.08);
        filter: brightness(1.05) contrast(1.05);
    }

    .about-school-content {
        padding: 20px 0;
        position: relative;
    }

    .about-school-content::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -30px;
        width: 4px;
        height: 80px;
        background: linear-gradient(180deg, #3b82f6 0%, #8b5cf6 100%);
        border-radius: 2px;
        opacity: 0.6;
    }

    .about-school-title {
        font-size: 1.85rem;
        font-weight: 700;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 24px;
        line-height: 1.3;
        position: relative;
        padding-bottom: 18px;
        letter-spacing: -0.02em;
    }

    .about-school-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }

    .about-school-text {
        margin-bottom: 28px;
    }

    .about-school-text p {
        font-size: 0.95rem;
        line-height: 1.75;
        color: #475569;
        margin-bottom: 18px;
        text-align: left;
        position: relative;
        padding-left: 20px;
    }

    .about-school-text p::before {
        content: '▸';
        position: absolute;
        left: 0;
        color: #3b82f6;
        font-size: 0.8rem;
        opacity: 0.6;
    }

    .about-school-text p:last-child {
        margin-bottom: 0;
    }

    .about-school-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            0 4px 15px rgba(59, 130, 246, 0.3),
            0 2px 6px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

    .about-school-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .about-school-btn:hover::before {
        left: 100%;
    }

    .about-school-btn:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
        transform: translateY(-3px);
        box-shadow: 
            0 8px 25px rgba(59, 130, 246, 0.4),
            0 4px 10px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        gap: 12px;
    }

    .about-school-btn i {
        font-size: 0.9rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }

    .about-school-btn:hover i {
        transform: translateX(4px);
    }

    .about-school-btn span {
        position: relative;
        z-index: 1;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .about-school-container {
            gap: 40px;
        }

        .about-school-title {
            font-size: 1.65rem;
        }

        .about-school-text p {
            font-size: 0.93rem;
        }

        .about-school-content::before {
            height: 70px;
        }
    }

    @media (max-width: 968px) {
        .about-school-section {
            padding: 40px 20px;
        }

        .about-school-container {
            grid-template-columns: 1fr;
            gap: 35px;
        }

        .about-school-image-wrapper {
            min-height: 350px;
            order: 1;
        }

        .about-school-content {
            order: 2;
            padding: 0;
        }

        .about-school-title {
            font-size: 1.6rem;
            margin-bottom: 20px;
            padding-bottom: 14px;
        }

        .about-school-text {
            margin-bottom: 24px;
        }

        .about-school-text p {
            font-size: 0.92rem;
            line-height: 1.65;
            margin-bottom: 16px;
        }

        .about-school-btn {
            padding: 12px 24px;
            font-size: 0.9rem;
        }

        .about-school-content::before {
            height: 60px;
            left: -20px;
        }
    }

    @media (max-width: 768px) {
        .about-school-section {
            padding: 35px 15px;
        }

        .about-school-container {
            gap: 28px;
        }

        .about-school-image-wrapper {
            min-height: 280px;
        }

        .about-school-image {
            border-radius: 16px;
        }

        .about-school-title {
            font-size: 1.45rem;
            margin-bottom: 18px;
            padding-bottom: 12px;
        }

        .about-school-title::after {
            width: 50px;
            height: 2.5px;
        }

        .about-school-text {
            margin-bottom: 22px;
        }

        .about-school-text p {
            font-size: 0.9rem;
            line-height: 1.65;
            margin-bottom: 16px;
            padding-left: 18px;
        }

        .about-school-btn {
            padding: 12px 24px;
            font-size: 0.88rem;
            width: 100%;
            justify-content: center;
        }

        .about-school-content::before {
            height: 50px;
            left: -15px;
        }
    }

    @media (max-width: 480px) {
        .about-school-section {
            padding: 30px 10px;
        }

        .about-school-image-wrapper {
            min-height: 220px;
        }

        .about-school-image {
            border-radius: 14px;
        }

        .about-school-title {
            font-size: 1.3rem;
            margin-bottom: 16px;
            padding-bottom: 10px;
        }

        .about-school-title::after {
            width: 45px;
            height: 2px;
        }

        .about-school-text {
            margin-bottom: 20px;
        }

        .about-school-text p {
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .about-school-btn {
            padding: 10px 18px;
            font-size: 0.83rem;
        }
    }

/* Why Choose Our School Section */
    .why-choose-section {
        padding: 35px 20px;
        background: linear-gradient(135deg, #fefce8 0%, #ffffff 30%, #ffffff 70%, #f0fdf4 100%);
        position: relative;
        overflow: hidden;
    }

    .why-choose-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 1px 1px, rgba(245, 158, 11, 0.03) 1px, transparent 0);
        background-size: 100% 100%, 100% 100%, 32px 32px;
        pointer-events: none;
        z-index: 0;
    }

    .why-choose-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .why-choose-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .why-choose-title {
        font-size: 1.65rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .title-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        margin: 0 auto 12px;
        border-radius: 2px;
    }

    .why-choose-subtitle {
        font-size: 0.9rem;
        color: #64748b;
        font-weight: 400;
    }

    .why-choose-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .why-choose-card {
        padding: 25px 20px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.12),
            0 6px 18px rgba(0, 0, 0, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(226, 232, 240, 0.6);
    }
    
    /* Card backgrounds with light icon colors */
    .why-choose-card.card-1 {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 50%, rgba(239, 246, 255, 1) 100%) !important;
    }
    
    .why-choose-card.card-2 {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 50%, rgba(236, 253, 245, 1) 100%) !important;
    }
    
    .why-choose-card.card-3 {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(245, 243, 255, 1) 100%) !important;
    }
    
    .why-choose-card.card-4 {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 50%, rgba(255, 251, 235, 1) 100%) !important;
    }

    .why-choose-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
            linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.04) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .why-choose-card:hover::after {
        opacity: 1;
    }

    .why-choose-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }

    .card-1::before {
        background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    }

    .card-2::before {
        background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    }

    .card-3::before {
        background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .card-4::before {
        background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    }

    .why-choose-card:hover::before {
        transform: scaleX(1);
    }

    .why-choose-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.15),
            0 8px 20px rgba(0, 0, 0, 0.1),
            0 4px 10px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .card-title-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .card-icon {
        width: 1.47rem;
        height: 1.47rem;
        min-width: 1.47rem;
        min-height: 1.47rem;
        flex-shrink: 0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        color: white;
        box-shadow: 
            0 5px 15px rgba(0, 0, 0, 0.15),
            0 2px 8px rgba(0, 0, 0, 0.1),
            inset 0 1px 2px rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }

    .card-1 .card-icon {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    }

    .card-2 .card-icon {
        background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    }

    .card-3 .card-icon {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    }

    .card-4 .card-icon {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    }

    .why-choose-card:hover .card-icon {
        transform: scale(1.12) rotate(5deg);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.2),
            0 4px 12px rgba(0, 0, 0, 0.15),
            inset 0 1px 2px rgba(255, 255, 255, 0.5),
            inset 0 -1px 2px rgba(0, 0, 0, 0.15);
    }

    .card-title {
        font-size: 1.05rem;
        font-weight: 600;
        color: #0f172a;
        margin: 0;
        line-height: 1.4;
    }

    .card-description {
        font-size: 0.85rem;
        line-height: 1.6;
        color: #475569;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .why-choose-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
    }

    @media (max-width: 768px) {
        .why-choose-section {
            padding: 30px 15px;
        }

        .why-choose-header {
            margin-bottom: 30px;
        }

        .why-choose-title {
            font-size: 1.45rem;
            margin-bottom: 10px;
        }

        .why-choose-subtitle {
            font-size: 0.85rem;
        }

        .title-underline {
            margin-bottom: 10px;
        }

        .why-choose-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .why-choose-card {
            padding: 22px 18px;
        }

        .card-title-row {
            gap: 10px;
            margin-bottom: 10px;
        }

        .card-icon {
            width: 1.4rem;
            height: 1.4rem;
            min-width: 1.4rem;
            min-height: 1.4rem;
            font-size: 0.85rem;
        }

        .card-title {
            font-size: 1rem;
            margin: 0;
        }

        .card-description {
            font-size: 0.83rem;
        }
    }

    @media (max-width: 480px) {
        .why-choose-section {
            padding: 28px 10px;
        }

        .why-choose-header {
            margin-bottom: 25px;
        }

        .why-choose-title {
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .why-choose-subtitle {
            font-size: 0.8rem;
        }

        .title-underline {
            width: 50px;
            height: 2.5px;
            margin-bottom: 8px;
        }

        .why-choose-card {
            padding: 20px 16px;
            border-radius: 14px;
        }

        .card-title-row {
            gap: 10px;
            margin-bottom: 10px;
        }

        .card-icon {
            width: 1.3rem;
            height: 1.3rem;
            min-width: 1.3rem;
            min-height: 1.3rem;
            font-size: 0.8rem;
            border-radius: 8px;
        }

        .card-title {
            font-size: 0.95rem;
            margin: 0;
        }

        .card-description {
            font-size: 0.8rem;
            line-height: 1.55;
        }
    }

/* Facilities Section */
    .facilities-section {
        padding: 35px 20px;
        background: linear-gradient(135deg, #fef3f2 0%, #ffffff 50%, #f0f9ff 100%);
        position: relative;
        overflow: hidden;
    }

    .facilities-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 1px 1px, rgba(245, 158, 11, 0.03) 1px, transparent 0);
        background-size: 100% 100%, 100% 100%, 28px 28px;
        pointer-events: none;
        z-index: 0;
    }

    .facilities-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .facilities-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .facilities-title {
        font-size: 1.65rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .facilities-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        margin: 0 auto;
        border-radius: 2px;
    }

    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
    }

    .facility-card {
        padding: 22px 16px;
        border-radius: 14px;
        text-align: center;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.1),
            0 4px 15px rgba(0, 0, 0, 0.06),
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(226, 232, 240, 0.7);
        cursor: pointer;
    }
    
    /* Facility card backgrounds with light icon colors */
    .facility-card.facility-1 {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 50%, rgba(239, 246, 255, 1) 100%) !important;
    }
    
    .facility-card.facility-2 {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(245, 243, 255, 1) 100%) !important;
    }
    
    .facility-card.facility-3 {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(245, 243, 255, 1) 100%) !important;
    }
    
    .facility-card.facility-4 {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 50%, rgba(236, 253, 245, 1) 100%) !important;
    }
    
    .facility-card.facility-5 {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 50%, rgba(255, 251, 235, 1) 100%) !important;
    }
    
    .facility-card.facility-6 {
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.1) 50%, rgba(236, 254, 255, 1) 100%) !important;
    }

    .facility-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
            linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.04) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .facility-card:hover::after {
        opacity: 1;
    }

    .facility-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }

    .facility-1::before {
        background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    }

    .facility-2::before {
        background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .facility-3::before {
        background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .facility-4::before {
        background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    }

    .facility-5::before {
        background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    }

    .facility-6::before {
        background: linear-gradient(90deg, #06b6d4 0%, #0891b2 100%);
    }

    .facility-card:hover::before {
        transform: scaleX(1);
    }

    .facility-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.15),
            0 8px 20px rgba(0, 0, 0, 0.1),
            0 4px 10px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .facility-icon-wrapper {
        margin-bottom: 16px;
        display: flex;
        justify-content: center;
    }

    .facility-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: white;
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.15),
            0 3px 12px rgba(0, 0, 0, 0.1),
            inset 0 1px 2px rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }

    .facility-1 .facility-icon {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    }

    .facility-2 .facility-icon {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    }

    .facility-3 .facility-icon {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    }

    .facility-4 .facility-icon {
        background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    }

    .facility-5 .facility-icon {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    }

    .facility-6 .facility-icon {
        background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    }

    .facility-card:hover .facility-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.15),
            inset 0 1px 2px rgba(255, 255, 255, 0.4);
    }

    .facility-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: #0f172a;
        margin: 0;
        line-height: 1.4;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .facilities-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
    }

    @media (max-width: 768px) {
        .facilities-section {
            padding: 30px 15px;
        }

        .facilities-header {
            margin-bottom: 30px;
        }

        .facilities-title {
            font-size: 1.45rem;
        }

        .facilities-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .facility-card {
            padding: 25px 18px;
        }

        .facility-icon {
            width: 48px;
            height: 48px;
            font-size: 20px;
        }

        .facility-title {
            font-size: 0.88rem;
        }
    }

    @media (max-width: 480px) {
        .facilities-section {
            padding: 28px 10px;
        }

        .facilities-title {
            font-size: 1.3rem;
        }

        .facilities-underline {
            width: 50px;
            height: 2.5px;
        }

        .facilities-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .facility-card {
            padding: 22px 16px;
            border-radius: 14px;
        }

        .facility-icon-wrapper {
            margin-bottom: 14px;
        }

        .facility-icon {
            width: 44px;
            height: 44px;
            font-size: 18px;
            border-radius: 10px;
        }

        .facility-title {
            font-size: 0.85rem;
        }
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 
            0 8px 25px rgba(59, 130, 246, 0.4),
            0 4px 15px rgba(139, 92, 246, 0.3),
            0 2px 8px rgba(245, 158, 11, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px) scale(0.8);
        z-index: 9999;
        outline: none;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .back-to-top:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 
            0 12px 35px rgba(59, 130, 246, 0.5),
            0 6px 20px rgba(139, 92, 246, 0.4),
            0 3px 10px rgba(245, 158, 11, 0.3);
        background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #d97706 100%);
    }

    .back-to-top:active {
        transform: translateY(-3px) scale(1.05);
    }

    .back-to-top i {
        transition: transform 0.3s ease;
    }

    .back-to-top:hover i {
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .back-to-top {
            width: 45px;
            height: 45px;
            bottom: 20px;
            right: 20px;
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        .back-to-top {
            width: 42px;
            height: 42px;
            bottom: 15px;
            right: 15px;
            font-size: 16px;
        }
    }

    /* Sticky Social Media Widget */
    .sticky-social-widget {
        position: fixed;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9998;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .sticky-social-icon {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
    }

    .sticky-social-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .sticky-social-icon i {
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }

    .sticky-social-icon:hover {
        transform: translateX(-5px) scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .sticky-social-icon:hover i {
        transform: scale(1.2);
    }

    .sticky-social-icon:hover::before {
        opacity: 1;
    }

    /* Individual Social Media Colors */
    .sticky-social-icon.facebook {
        background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    }

    .sticky-social-icon.facebook::before {
        background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    }

    .sticky-social-icon.twitter {
        background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    }

    .sticky-social-icon.twitter::before {
        background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    }

    .sticky-social-icon.instagram {
        background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
    }

    .sticky-social-icon.instagram::before {
        background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
    }

    .sticky-social-icon.youtube {
        background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    }

    .sticky-social-icon.youtube::before {
        background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    }

    .sticky-social-icon.whatsapp {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    }

    .sticky-social-icon.whatsapp::before {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    }

    .sticky-social-icon.whatsapp:hover {
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
        50% {
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }
    }

    @media (max-width: 768px) {
        .sticky-social-widget {
            right: 5px;
            gap: 8px;
        }

        .sticky-social-icon {
            width: 36px;
            height: 36px;
            font-size: 15px;
        }
    }

    @media (max-width: 480px) {
        .sticky-social-widget {
            right: 5px;
            gap: 6px;
        }

        .sticky-social-icon {
            width: 34px;
            height: 34px;
            font-size: 14px;
        }
    }

    /* Sticky Left Side Widget */
    .sticky-left-widget {
        position: fixed;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9998;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .sticky-left-icon {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
    }

    .sticky-left-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .sticky-left-icon i {
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }

    .sticky-left-icon:hover {
        transform: translateX(5px) scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .sticky-left-icon:hover i {
        transform: scale(1.2);
    }

    .sticky-left-icon:hover::before {
        opacity: 1;
    }

    /* Individual Left Icon Colors */
    .sticky-left-icon.fee-payment {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    .sticky-left-icon.fee-payment::before {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    .sticky-left-icon.admission {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    }

    .sticky-left-icon.admission::before {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    }

    .sticky-left-icon.campus-tour {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .sticky-left-icon.campus-tour::before {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .sticky-left-icon.app-download {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    .sticky-left-icon.app-download::before {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    .sticky-left-icon.event {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    }

    .sticky-left-icon.event::before {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    }

    @media (max-width: 768px) {
        .sticky-left-widget {
            left: 5px;
            gap: 8px;
        }

        .sticky-left-icon {
            width: 36px;
            height: 36px;
            font-size: 15px;
        }
    }

    @media (max-width: 480px) {
        .sticky-left-widget {
            left: 5px;
            gap: 6px;
        }

        .sticky-left-icon {
            width: 34px;
            height: 34px;
            font-size: 14px;
        }
    }

/* Activities & Achievements Section */
    .activities-section {
        padding: 35px 20px;
        background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 50%, #fef3f2 100%);
        position: relative;
        overflow: hidden;
    }

    .activities-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 1px 1px, rgba(139, 92, 246, 0.03) 1px, transparent 0);
        background-size: 100% 100%, 100% 100%, 30px 30px;
        pointer-events: none;
        z-index: 0;
    }

    .activities-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .activities-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .activities-title {
        font-size: 1.65rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .activities-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        margin: 0 auto;
        border-radius: 2px;
    }

    .activities-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .activity-card {
        padding: 30px 20px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.12),
            0 6px 18px rgba(0, 0, 0, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(226, 232, 240, 0.7);
        cursor: pointer;
    }
    
    /* Activity card backgrounds with light icon colors */
    .activity-card.activity-1 {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 50%, rgba(236, 253, 245, 1) 100%) !important;
    }
    
    .activity-card.activity-2 {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(245, 243, 255, 1) 100%) !important;
    }
    
    .activity-card.activity-3 {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 50%, rgba(255, 251, 235, 1) 100%) !important;
    }
    
    .activity-card.activity-4 {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 50%, rgba(239, 246, 255, 1) 100%) !important;
    }

    .activity-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
            linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.04) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .activity-card:hover::after {
        opacity: 1;
    }

    .activity-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }

    .activity-1::before {
        background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    }

    .activity-2::before {
        background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .activity-3::before {
        background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    }

    .activity-4::before {
        background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    }

    .activity-card:hover::before {
        transform: scaleX(1);
    }

    .activity-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.15),
            0 8px 20px rgba(0, 0, 0, 0.1),
            0 4px 10px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .activity-icon-wrapper {
        margin-bottom: 16px;
        display: flex;
        justify-content: center;
    }

    .activity-icon {
        width: 64px;
        height: 64px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: white;
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.15),
            0 3px 12px rgba(0, 0, 0, 0.1),
            inset 0 1px 2px rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        /* Fixed: removed invalid 'inset' line, no duplicate properties */
    }

    .activity-1 .activity-icon {
        background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    }

    .activity-2 .activity-icon {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    }

    .activity-3 .activity-icon {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    }

    .activity-4 .activity-icon {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    }

    .activity-card:hover .activity-icon {
        transform: scale(1.15) rotate(8deg);
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.2),
            0 5px 15px rgba(0, 0, 0, 0.15),
            inset 0 1px 2px rgba(255, 255, 255, 0.5),
            inset 0 -1px 2px rgba(0, 0, 0, 0.15);
    }

    .activity-title {
        font-size: 1rem;
        font-weight: 600;
        color: #0f172a;
        margin: 0;
        line-height: 1.4;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .activities-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
    }

    @media (max-width: 768px) {
        .activities-section {
            padding: 30px 15px;
        }

        .activities-header {
            margin-bottom: 30px;
        }

        .activities-title {
            font-size: 1.45rem;
        }

        .activities-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .activity-card {
            padding: 25px 18px;
        }

        .activity-icon {
            width: 56px;
            height: 56px;
            font-size: 24px;
        }

        .activity-title {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .activities-section {
            padding: 28px 10px;
        }

        .activities-title {
            font-size: 1.3rem;
        }

        .activities-underline {
            width: 50px;
            height: 2.5px;
        }

        .activities-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .activity-card {
            padding: 22px 16px;
            border-radius: 14px;
        }

        .activity-icon-wrapper {
            margin-bottom: 14px;
        }

        .activity-icon {
            width: 52px;
            height: 52px;
            font-size: 22px;
            border-radius: 12px;
        }

        .activity-title {
            font-size: 0.9rem;
        }
    }

/* Admission Process Section */
    .admission-process-section {
        padding: 35px 20px;
        background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 30%, #ffffff 70%, #fefce8 100%);
        position: relative;
        overflow: hidden;
    }

    .admission-process-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 25% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 75% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 1px 1px, rgba(16, 185, 129, 0.03) 1px, transparent 0);
        background-size: 100% 100%, 100% 100%, 32px 32px;
        pointer-events: none;
        z-index: 0;
    }

    .admission-process-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .admission-process-header {
        text-align: center;
        margin-bottom: 35px;
    }

    .admission-process-title {
        font-size: 1.65rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .admission-process-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        margin: 0 auto;
        border-radius: 2px;
    }

    .process-steps {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 200px;
        max-width: 280px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        padding: 25px 18px;
        border-radius: 14px;
        text-align: center;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.1),
            0 4px 15px rgba(0, 0, 0, 0.06),
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border: 2px solid rgba(226, 232, 240, 0.8);
        overflow: visible;
    }

    .process-step::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
            linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.04) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .process-step:hover::after {
        opacity: 1;
    }

    .process-step:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.15),
            0 8px 20px rgba(0, 0, 0, 0.1),
            0 4px 10px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .step-number {
        position: absolute;
        top: -14px;
        right: 15px;
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.85rem;
        box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
        z-index: 2;
    }

    .step-1 .step-number {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    }

    .step-2 .step-number {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .step-3 .step-number {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    .step-title-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .step-icon {
        width: 1.4rem;
        height: 1.4rem;
        min-width: 1.4rem;
        min-height: 1.4rem;
        flex-shrink: 0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        color: white;
        box-shadow: 
            0 3px 10px rgba(0, 0, 0, 0.1),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .step-1 .step-icon {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    }

    .step-2 .step-icon {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    }

    .step-3 .step-icon {
        background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    }

    .process-step:hover .step-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.15),
            inset 0 1px 2px rgba(255, 255, 255, 0.4);
    }

    .step-title {
        font-size: 1rem;
        font-weight: 600;
        color: #0f172a;
        margin: 0;
        line-height: 1.4;
    }

    .step-description {
        font-size: 0.85rem;
        color: #64748b;
        line-height: 1.5;
        margin: 0;
        white-space: nowrap;
    }

    .step-arrow {
        font-size: 22px;
        color: #cbd5e1;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .step-arrow i {
        transition: transform 0.3s ease;
    }

    .process-steps:hover .step-arrow i {
        transform: translateX(3px);
    }

    .admission-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .admission-process-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            0 3px 12px rgba(0, 0, 0, 0.08),
            0 2px 5px rgba(0, 0, 0, 0.04);
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .btn-download {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
    }

    .btn-download:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        transform: translateY(-3px);
        box-shadow: 
            0 8px 25px rgba(59, 130, 246, 0.3),
            0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .btn-contact {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
    }

    .btn-contact:hover {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        transform: translateY(-3px);
        box-shadow: 
            0 8px 25px rgba(16, 185, 129, 0.3),
            0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .admission-process-btn i {
        font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .process-steps {
            flex-direction: column;
            gap: 20px;
        }

        .step-arrow {
            transform: rotate(90deg);
            font-size: 24px;
        }

        .process-steps:hover .step-arrow i {
            transform: translateY(3px);
        }

        .process-step {
            max-width: 100%;
            width: 100%;
        }

        .admission-buttons {
            flex-direction: column;
            width: 100%;
        }

        .admission-process-btn {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .admission-process-section {
            padding: 30px 15px;
        }

        .admission-process-header {
            margin-bottom: 30px;
        }

        .admission-process-title {
            font-size: 1.45rem;
        }

        .process-step {
            padding: 22px 16px;
        }

        .step-title-row {
            gap: 10px;
            margin-bottom: 10px;
        }

        .step-icon {
            width: 1.3rem;
            height: 1.3rem;
            min-width: 1.3rem;
            min-height: 1.3rem;
            font-size: 0.85rem;
        }

        .step-title {
            font-size: 0.95rem;
        }

        .step-description {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 480px) {
        .admission-process-section {
            padding: 28px 10px;
        }

        .admission-process-title {
            font-size: 1.3rem;
        }

        .admission-process-underline {
            width: 50px;
            height: 2.5px;
        }

        .process-step {
            padding: 25px 18px;
            border-radius: 14px;
        }

        .step-number {
            width: 30px;
            height: 30px;
            font-size: 0.9rem;
            top: -15px;
            right: 15px;
        }

        .step-icon {
            width: 56px;
            height: 56px;
            font-size: 24px;
            border-radius: 14px;
            margin-bottom: 16px;
        }

        .step-title {
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .step-description {
            font-size: 0.8rem;
        }

        .step-arrow {
            font-size: 20px;
        }

        .admission-process-btn {
            padding: 12px 24px;
            font-size: 0.9rem;
        }
    }

/* Photo Gallery Section with Right-to-Left Scrolling */
    .photo-gallery-section {
        padding: 35px 20px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .photo-gallery-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }

    .photo-gallery-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .photo-gallery-title {
        font-size: 1.65rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .photo-gallery-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        margin: 0 auto;
        border-radius: 2px;
    }

    .photo-gallery-wrapper {
        overflow: hidden;
        position: relative;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .photo-gallery-scroll {
        display: flex;
        gap: 20px;
        animation: scrollRightToLeft 30s linear infinite;
        width: fit-content;
    }

    .photo-gallery-scroll:hover {
        animation-play-state: paused;
    }

    @keyframes scrollRightToLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .photo-gallery-item {
        flex: 0 0 300px;
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.12),
            0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .photo-gallery-item:hover {
        transform: scale(1.05);
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.18),
            0 6px 18px rgba(0, 0, 0, 0.12);
    }

    .photo-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    @media (max-width: 768px) {
        .photo-gallery-item {
            flex: 0 0 250px;
            height: 160px;
        }

        .photo-gallery-scroll {
            gap: 15px;
            animation-duration: 25s;
        }
    }

    @media (max-width: 480px) {
        .photo-gallery-item {
            flex: 0 0 200px;
            height: 140px;
        }

        .photo-gallery-scroll {
            gap: 12px;
            animation-duration: 20s;
        }
    }

/* Gallery / Events Section */
    .gallery-section {
        padding: 35px 20px;
        background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f5f3ff 100%);
        position: relative;
        overflow: hidden;
    }

    .gallery-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.03) 1px, transparent 0);
        background-size: 100% 100%, 100% 100%, 30px 30px;
        pointer-events: none;
        z-index: 0;
    }

    .gallery-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .gallery-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .gallery-title {
        font-size: 1.65rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .gallery-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        margin: 0 auto;
        border-radius: 2px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .gallery-item {
        padding: 30px 20px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.1),
            0 4px 12px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border: 2px solid rgba(226, 232, 240, 0.7);
        cursor: pointer;
    }
    
    /* Gallery item backgrounds - first item orange, second green, third purple, fourth orange */
    .gallery-item:nth-child(1) {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 50%, rgba(255, 251, 235, 1) 100%) !important;
    }
    
    .gallery-item:nth-child(2) {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 50%, rgba(236, 253, 245, 1) 100%) !important;
    }
    
    .gallery-item:nth-child(3) {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(245, 243, 255, 1) 100%) !important;
    }
    
    .gallery-item:nth-child(4) {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 50%, rgba(255, 251, 235, 1) 100%) !important;
    }

    .gallery-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    }

    .gallery-item:hover::before {
        transform: scaleX(1);
    }

    .gallery-item:hover {
        transform: translateY(-6px);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.1),
            0 4px 10px rgba(0, 0, 0, 0.06);
        border-color: rgba(59, 130, 246, 0.3);
    }

    .gallery-title-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .gallery-icon {
        width: 1.47rem;
        height: 1.47rem;
        min-width: 1.47rem;
        min-height: 1.47rem;
        flex-shrink: 0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        color: white;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
        box-shadow: 
            0 3px 10px rgba(59, 130, 246, 0.25),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .gallery-icon::after {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .gallery-item:hover .gallery-icon::after {
        opacity: 1;
    }

    .gallery-item:hover .gallery-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 
            0 4px 15px rgba(59, 130, 246, 0.35),
            inset 0 1px 2px rgba(255, 255, 255, 0.4);
    }

    .gallery-item-title {
        font-size: 1.05rem;
        font-weight: 600;
        color: #0f172a;
        margin: 0;
        line-height: 1.4;
    }

    .gallery-item-desc {
        font-size: 0.85rem;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }

    @media (max-width: 1200px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
    }

    @media (max-width: 768px) {
        .gallery-section {
            padding: 30px 15px;
        }

        .gallery-header {
            margin-bottom: 30px;
        }

        .gallery-title {
            font-size: 1.45rem;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .gallery-item {
            padding: 25px 18px;
        }

        .gallery-icon {
            width: 56px;
            height: 56px;
            font-size: 24px;
        }
    }

/* Message Section */
    .message-section {
        padding: 35px 20px;
        background: linear-gradient(135deg, #fef3f2 0%, #ffffff 50%, #f0f9ff 100%);
        position: relative;
        overflow: hidden;
    }

    .message-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .message-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .message-title {
        font-size: 1.65rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .message-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        margin: 0 auto;
        border-radius: 2px;
    }

    .message-content {
        display: flex;
        align-items: flex-start;
        gap: 30px;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        padding: 40px 35px;
        border-radius: 20px;
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.12),
            0 6px 20px rgba(0, 0, 0, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(226, 232, 240, 0.8);
        position: relative;
        overflow: hidden;
    }

    .message-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
        z-index: 1;
    }

    .message-content::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
        opacity: 0.6;
        pointer-events: none;
        z-index: 0;
    }

    .message-image-wrapper {
        flex-shrink: 0;
    }

    .message-image {
        width: 180px;
        height: 220px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 
            0 15px 40px rgba(59, 130, 246, 0.25),
            0 8px 20px rgba(59, 130, 246, 0.15),
            0 4px 12px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        border: 4px solid rgba(59, 130, 246, 0.3);
        transition: all 0.3s ease;
        background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
        padding: 4px;
        position: relative;
        z-index: 1;
    }

    .message-image:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 
            0 20px 50px rgba(59, 130, 246, 0.35),
            0 12px 30px rgba(59, 130, 246, 0.25),
            0 6px 18px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
        border-color: rgba(59, 130, 246, 0.5);
    }

    .message-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }

    .message-text {
        flex: 1;
    }

    .message-quote {
        font-size: 1rem;
        line-height: 1.8;
        color: #475569;
        margin-bottom: 20px;
        font-style: italic;
    }

    .message-author {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .author-name {
        font-size: 1.05rem;
        font-weight: 600;
        color: #0f172a;
    }

    .author-role {
        font-size: 0.9rem;
        color: #64748b;
    }

    @media (max-width: 768px) {
        .message-section {
            padding: 30px 15px;
        }

        .message-header {
            margin-bottom: 30px;
        }

        .message-title {
            font-size: 1.45rem;
        }

        .message-content {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 30px 25px;
            gap: 25px;
        }

        .message-image {
            width: 150px;
            height: 180px;
        }

        .message-quote {
            font-size: 0.95rem;
        }
    }

/* Parent Testimonials Section */
    .testimonials-section {
        padding: 35px 20px;
        background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 50%, #fefce8 100%);
        position: relative;
        overflow: hidden;
    }

    .testimonials-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 1px 1px, rgba(139, 92, 246, 0.03) 1px, transparent 0);
        background-size: 100% 100%, 100% 100%, 28px 28px;
        pointer-events: none;
        z-index: 0;
    }

    .testimonials-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .testimonials-title {
        font-size: 1.65rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .testimonials-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        margin: 0 auto;
        border-radius: 2px;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .testimonial-card {
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        padding: 30px 25px;
        border-radius: 16px;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.12),
            0 6px 18px rgba(0, 0, 0, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border: 2px solid rgba(226, 232, 240, 0.7);
        overflow: hidden;
    }

    .testimonial-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
            linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.04) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .testimonial-card:hover::after {
        opacity: 1;
    }

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        border-radius: 16px 16px 0 0;
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }

    .testimonial-card:hover::before {
        transform: scaleX(1);
    }

    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.15),
            0 8px 20px rgba(0, 0, 0, 0.1),
            0 4px 10px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .testimonial-icon {
        font-size: 32px;
        color: #cbd5e1;
        margin-bottom: 15px;
        opacity: 0.5;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #475569;
        margin-bottom: 20px;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 15px;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
    }

    .author-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        flex-shrink: 0;
    }

    .author-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .testimonial-author-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: #0f172a;
    }

    .testimonial-author-role {
        font-size: 0.85rem;
        color: #64748b;
    }

    @media (max-width: 1200px) {
        .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .testimonials-section {
            padding: 30px 15px;
        }

        .testimonials-header {
            margin-bottom: 30px;
        }

        .testimonials-title {
            font-size: 1.45rem;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .testimonial-card {
            padding: 25px 20px;
        }
    }

/* Notice & App Download Section */
    .notice-app-section {
        padding: 35px 20px;
        background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #f0f9ff 100%);
        position: relative;
        overflow: hidden;
    }

    .notice-app-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .notice-app-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: stretch;
    }

    /* Notice Column */
    .notice-column {
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 30%, #bfdbfe 60%, #e0f2fe 100%);
        border-radius: 16px;
        padding: 25px;
        box-shadow: 
            0 12px 35px rgba(59, 130, 246, 0.2),
            0 6px 20px rgba(59, 130, 246, 0.15),
            0 4px 15px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(59, 130, 246, 0.3);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .notice-column::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
        z-index: 1;
    }

    .notice-header {
        margin-bottom: 18px;
        padding-top: 0;
        padding-bottom: 12px;
        border-bottom: 2px solid rgba(59, 130, 246, 0.2);
        display: flex;
        align-items: center;
        min-height: 32px;
    }

    .notice-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
        line-height: 1.2;
    }

    .notice-title i {
        color: #3b82f6;
        font-size: 0.85rem;
    }

    .notice-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        height: auto;
        min-height: 200px;
        overflow: hidden;
    }

    .notice-item-hidden {
        display: none !important;
    }


    .notice-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px;
        background: #ffffff;
        border-radius: 10px;
        border-left: 3px solid #3b82f6;
        transition: all 0.3s ease;
        overflow: hidden;
        min-height: 56px;
    }

    .notice-item:hover {
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .notice-icon {
        color: #3b82f6;
        font-size: 0.5rem;
        margin-top: 6px;
        flex-shrink: 0;
    }

    .notice-text {
        flex: 1;
        min-width: 0;
        overflow-x: hidden;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .notice-message {
        font-size: 0.8rem;
        font-weight: 500;
        color: #0f172a;
        margin: 0;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-x: hidden;
        flex: 1;
        min-width: 0;
    }

    .notice-date {
        font-size: 0.7rem;
        color: #64748b;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Admission Process Column */
    .admission-process-column {
        background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 30%, #bbf7d0 60%, #d1fae5 100%);
        border-radius: 16px;
        padding: 25px;
        box-shadow: 
            0 12px 35px rgba(16, 185, 129, 0.2),
            0 6px 20px rgba(16, 185, 129, 0.15),
            0 4px 15px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(16, 185, 129, 0.3);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .admission-process-column::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
        z-index: 1;
    }

    .admission-process-header {
        margin-bottom: 18px;
        padding-top: 0;
        padding-bottom: 12px;
        border-bottom: 2px solid rgba(59, 130, 246, 0.2);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        min-height: 32px;
    }

    .admission-process-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
        line-height: 1.2;
    }

    .admission-process-title i {
        color: #3b82f6;
        font-size: 0.85rem;
    }

    .admission-process-header-link {
        text-decoration: none;
        font-weight: 600;
        font-size: 0.85rem;
        color: #3b82f6;
        transition: all 0.3s ease;
        flex-shrink: 0;
        white-space: nowrap;
        border-bottom: 2px solid transparent;
    }

    .admission-process-header-link:hover {
        color: #2563eb;
        border-bottom-color: #2563eb;
    }

    .admission-process-content {
        position: relative;
        z-index: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .admission-process-steps {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
        flex: 1;
        overflow: hidden;
        height: auto;
        min-height: 200px;
    }


    .admission-step {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 10px;
        border: 2px solid rgba(226, 232, 240, 0.8);
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.05),
            0 1px 4px rgba(0, 0, 0, 0.03),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        min-height: 56px;
    }

    .admission-step::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #3b82f6 0%, #8b5cf6 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .admission-step:hover {
        transform: translateX(8px);
        box-shadow: 
            0 8px 20px rgba(59, 130, 246, 0.2),
            0 4px 10px rgba(0, 0, 0, 0.08);
        border-color: rgba(59, 130, 246, 0.4);
        background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    }

    .admission-step:hover::before {
        opacity: 1;
    }

    .step-number-badge {
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #8b5cf6 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.85rem;
        box-shadow: 
            0 3px 10px rgba(59, 130, 246, 0.3),
            0 1px 4px rgba(59, 130, 246, 0.2),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }

    .admission-step:hover .step-number-badge {
        transform: scale(1.05) rotate(3deg);
        box-shadow: 
            0 4px 14px rgba(59, 130, 246, 0.4),
            0 2px 8px rgba(59, 130, 246, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.4);
    }

    .step-content {
        flex: 1;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        overflow-x: hidden;
    }

    .step-icon-wrapper {
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: white;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
        box-shadow: 
            0 3px 10px rgba(59, 130, 246, 0.25),
            0 1px 5px rgba(59, 130, 246, 0.15),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }

    .admission-step:hover .step-icon-wrapper {
        transform: scale(1.08) rotate(-3deg);
        box-shadow: 
            0 4px 14px rgba(59, 130, 246, 0.35),
            0 2px 8px rgba(59, 130, 246, 0.25),
            inset 0 1px 2px rgba(255, 255, 255, 0.4);
    }

    .step-title {
        font-size: 0.8rem;
        font-weight: 600;
        color: #0f172a;
        margin: 0;
        line-height: 1.3;
        letter-spacing: -0.01em;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .step-description {
        font-size: 0.75rem;
        color: #64748b;
        line-height: 1.4;
        margin: 0;
        flex: 1;
        min-width: 0;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    .admission-process-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 0;
    }

    .admission-process-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.8rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .admission-process-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .admission-process-btn:hover::before {
        left: 100%;
    }

    .admission-process-btn.btn-primary {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
        color: white;
        box-shadow: 
            0 4px 15px rgba(59, 130, 246, 0.35),
            0 2px 8px rgba(59, 130, 246, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .admission-process-btn.btn-primary:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
        transform: translateY(-3px);
        box-shadow: 
            0 8px 25px rgba(59, 130, 246, 0.45),
            0 4px 12px rgba(59, 130, 246, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .admission-process-btn.btn-primary:active {
        transform: translateY(-1px);
    }

    .admission-process-btn.btn-secondary {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        color: #3b82f6;
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 
            0 2px 8px rgba(59, 130, 246, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .admission-process-btn.btn-secondary:hover {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        transform: translateY(-3px);
        box-shadow: 
            0 6px 18px rgba(59, 130, 246, 0.25),
            0 3px 10px rgba(59, 130, 246, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        border-color: rgba(59, 130, 246, 0.5);
        color: #2563eb;
    }

    .admission-process-btn.btn-secondary:active {
        transform: translateY(-1px);
    }

    .admission-process-btn i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .admission-process-btn:hover i {
        transform: translateX(3px);
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .notice-app-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
    }

    @media (max-width: 768px) {
        .notice-app-section {
            padding: 30px 15px;
        }

        .notice-column,
        .admission-process-column {
            padding: 20px;
        }

        .notice-title,
        .admission-process-title {
            font-size: 0.9rem;
        }

        .admission-process-header {
            flex-wrap: wrap;
            gap: 12px;
        }

        .admission-process-header-link {
            font-size: 0.8rem;
        }

        .notice-content {
            height: auto;
            min-height: 180px;
        }

        .notice-item {
            min-height: 48px;
            padding: 12px;
        }

        .admission-process-steps {
            gap: 10px;
            margin-bottom: 15px;
            height: auto;
            min-height: 180px;
        }

        .admission-step {
            padding: 12px;
            gap: 10px;
            align-items: center;
            min-height: 48px;
        }

        .step-number-badge {
            width: 24px;
            height: 24px;
            min-width: 24px;
            font-size: 0.75rem;
        }

        .step-icon-wrapper {
            width: 26px;
            height: 26px;
            min-width: 26px;
            font-size: 11px;
        }

        .step-content {
            gap: 6px;
        }

        .step-title {
            font-size: 0.75rem;
        }

        .step-description {
            font-size: 0.7rem;
        }

        .admission-process-buttons {
            gap: 8px;
        }

        .admission-process-btn {
            padding: 9px 18px;
            font-size: 0.8rem;
        }
    }

    @media (max-width: 480px) {
        .notice-app-section {
            padding: 28px 10px;
        }

        .notice-column,
        .admission-process-column {
            padding: 20px 15px;
            border-radius: 14px;
        }

        .admission-process-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .admission-process-header-link {
            font-size: 0.75rem;
        }

        .notice-item {
            padding: 12px;
            min-height: 44px;
        }

        .notice-content {
            height: auto;
            min-height: 160px;
        }

        .admission-process-steps {
            gap: 10px;
            margin-bottom: 15px;
            height: auto;
            min-height: 160px;
        }

        .admission-step {
            padding: 12px;
            gap: 8px;
            flex-direction: row;
            align-items: center;
            min-height: 44px;
        }

        .admission-step:hover {
            transform: translateX(5px);
        }

        .step-number-badge {
            width: 22px;
            height: 22px;
            min-width: 22px;
            font-size: 0.7rem;
        }

        .step-icon-wrapper {
            width: 24px;
            height: 24px;
            min-width: 24px;
            font-size: 10px;
        }

        .step-content {
            gap: 6px;
        }

        .step-title {
            font-size: 0.72rem;
        }

        .step-description {
            font-size: 0.68rem;
            line-height: 1.3;
        }

        .admission-process-buttons {
            gap: 8px;
        }

        .admission-process-btn {
            padding: 8px 16px;
            font-size: 0.78rem;
        }
    }

.notification-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 10000;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .notification-content {
        background: #ffffff;
        border-radius: 8px;
        padding: 25px 30px;
        max-width: 700px;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .notification-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 28px;
        color: #64748b;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .notification-close:hover {
        color: #0f172a;
    }

    .notification-message h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 15px;
        padding-right: 30px;
    }

    .notification-message ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .notification-message ul li {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #475569;
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
    }

    .notification-message ul li:before {
        content: "•";
        position: absolute;
        left: 0;
        color: #3b82f6;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .notification-message ul li:last-child {
        margin-bottom: 0;
    }

    @media (max-width: 768px) {
        .notification-content {
            padding: 20px 25px;
            max-width: 90%;
        }

        .notification-message h3 {
            font-size: 1.15rem;
            margin-bottom: 12px;
        }

        .notification-message ul li {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
    }