
        .page-header {
            margin-top: 70px;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, rgba(10, 10, 30, 0.9), rgba(84, 173, 222, 0.4)), url('https://images.unsplash.com/photo-1598550476439-6847785fcea6?w=1920&h=600&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(84, 173, 222, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .page-header h1 {
            font-size: 4.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #54adde, white, #54adde);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            font-size: 1.4rem;
            color: #d1d5db;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.2s both;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

       
        .section-padding {
            padding: 50px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #54adde, white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title p {
            color: #9ca3af;
            font-size: 1.2rem;
        }
        /* Presenter Card Social Media */
.presenter-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.social-link.whatsapp {
    background-color: #25D366;
}

.social-link.whatsapp:hover {
    background-color: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.social-link.instagram {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.social-link.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

        /*  PRESENTER CARDS - image fills card */

        .presenter-card {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            height: 100%;
            min-height: 320px;
            transition: all 0.4s;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 20px;
            color: #fff;
            background: transparent;
        }

        /* moving sheen (kept) */
        .presenter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
            transition: left 0.6s;
            z-index: 2;
            pointer-events: none;
        }

        .presenter-card:hover::before {
            left: 100%;
        }

        .presenter-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.45);
        }

        /* dark overlay to keep text readable */
        .presenter-card::after{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.6) 100%);
            z-index: 1;
            pointer-events: none;
        }

        /* presenter image fills the card */
        .presenter-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            z-index: 0;
            background: #eee;
        }

        /* small circular icon in the corner (keeps backward compatibility) */
        .presenter-card .icon {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(45deg, #54adde, #ffffff);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 14px rgba(16,24,40,0.12);
            font-size: 16px;
            transition: transform .18s ease, background .18s ease;
            z-index: 4;
        }

        .presenter-card .icon:hover{
            transform: scale(1.06);
            background: #54adde;
            color: #fff;
        }

        .presenter-card h5 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0 0 6px;
            color: #fff;
            position: relative;
            z-index: 3;
            text-align: center;
        }

        .presenter-card .show-name {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.9);
            font-weight: 600;
            text-transform: none;
            margin-bottom: 8px;
            display: block;
            position: relative;
            z-index: 3;
            text-align: center;
        }

        .presenter-card p {
            font-size: 0.95rem;
            line-height: 1.4;
            color: rgba(255,255,255,0.95);
            margin: 0;
            position: relative;
            z-index: 3;
            text-align: center;
        }
