:root {
	--primary: #cc3634;
	--primary-dark: #a12b29;
	--secondary: #575656;
	--secondary-dark: #2c3e50;
	--track1-color: #2563eb;
	--track2-color: #16a34a;
	--track3-color: #dc2626;
	--radius: 15px;
	--white: #ffffff;

}
.card-badge.Speaker {
    background: #7b7b7b;
}
.panel-subtitle {
	font-size: 1.2rem;
    color: #6c757d;
    margin: 0 0 12px 0;
    line-height: 1.6;
    padding-top: 5px;
}

.panel-subtitle strong {
    color: var(--primary);
    font-weight: 600;
}      
/* Schedule Section */
        .schedule-section {
            position: relative;
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
        }

        .bg-shape {
            position: absolute;
            border-radius: 40% 60% 60% 40% / 40% 60% 60% 40%;
            opacity: 0.03;
            z-index: 0;
        }

        .bg-shape-1 {
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: var(--primary);
        }

        .bg-shape-2 {
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: var(--secondary);
        }

        /* Section Header */
        .section-header {
            position: relative;
            z-index: 1;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-dark);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
        }

        /* Navigation Pills */
        .schedule-nav {
            background: white;
            border-radius: 50px;
            padding: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .schedule-nav .nav-link {
            border-radius: 30px;
            padding: 18px 45px;
            border: none;
            background: transparent;
            color: #666;
            font-weight: 600;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            min-width: 200px;
        }

        .schedule-nav .nav-link i {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .schedule-nav .nav-link .day-title {
            font-size: 1.1rem;
        }

        .schedule-nav .nav-link small {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .schedule-nav .nav-link.active,
        .schedule-nav .nav-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(204, 54, 52, 0.3);
        }

        /* Track Section */
        .track-section {
            position: relative;
            z-index: 1;
            margin-bottom: 60px;
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.4s ease;
        }

        .track-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .track-section.track-1 {
            border-left: 6px solid var(--track1-color);
        }

        .track-section.track-2 {
            border-left: 6px solid var(--track2-color);
        }

        .track-section.track-3 {
            border-left: 6px solid var(--track3-color);
        }

        .track-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(0, 0, 0, 0.05);
        }

        .track-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .track-1 .track-icon {
            background: linear-gradient(135deg, var(--track1-color), #1d4ed8);
        }

        .track-2 .track-icon {
            background: linear-gradient(135deg, var(--track2-color), #15803d);
        }

        .track-3 .track-icon {
            background: linear-gradient(135deg, var(--track3-color), #b91c1c);
        }

        .track-title-wrapper h4 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
            color: var(--secondary-dark);
        }

        .track-time {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6c757d;
            font-weight: 500;
            margin-top: 5px;
        }

        .track-time i {
            color: var(--primary);
        }

        /* Zoom Banner */
        .zoom-link-banner {
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.05), rgba(204, 54, 52, 0.1));
            border-radius: 20px;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            margin: 25px 0;
            border: 2px solid rgba(204, 54, 52, 0.1);
            transition: all 0.3s ease;
        }

        .zoom-link-banner:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .zoom-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .zoom-icon i {
            font-size: 26px;
            color: var(--primary);
        }

        .zoom-info {
            flex-grow: 1;
        }

        .zoom-info h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-dark);
            margin-bottom: 8px;
        }

        .zoom-info p {
            font-size: 0.95rem;
            color: #6c757d;
            margin: 3px 0;
        }

        .zoom-link-banner .btn {
            padding: 14px 30px;
            border-radius: 50px;
            background: var(--primary);
            color: white;
            font-weight: 700;
            transition: all 0.3s ease;
            white-space: nowrap;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .zoom-link-banner .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(204, 54, 52, 0.3);
        }

        /* Speaker Cards */
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .speaker-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .speaker-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--primary);
        }

        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: white;
            padding: 6px 16px;
            border-radius: 25px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 1;
            box-shadow: 0 4px 12px rgba(204, 54, 52, 0.3);
        }

        .moderator-card .card-badge {
            background: #2c3e50;
        }

        .speaker-image-wrapper {
            padding: 25px;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .speaker-image {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .speaker-card:hover .speaker-image {
            transform: scale(1.08);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }

        .speaker-info {
            padding: 0 25px 25px;
            text-align: center;
        }

        .speaker-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-dark);
            margin-bottom: 8px;
        }

        .speaker-title {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .speaker-company {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .schedule-nav {
                flex-direction: column;
                border-radius: 15px;
                padding: 15px;
            }

            .schedule-nav .nav-link {
                width: 100%;
                margin-bottom: 10px;
                min-width: auto;
            }

            .track-section {
                padding: 30px 20px;
            }

            .track-header {
                flex-direction: column;
                text-align: center;
            }

            .zoom-link-banner {
                flex-direction: column;
                text-align: center;
                padding: 25px;
            }

            .zoom-icon {
                margin: 0 0 15px 0;
            }

            .zoom-link-banner .btn {
                width: 100%;
                margin-top: 15px;
            }

            .speakers-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 20px;
            }
        }

        @media (max-width: 767px) {
            .section-title {
                font-size: 2rem;
            }

            .track-title-wrapper h4 {
                font-size: 1.4rem;
            }

            .speakers-grid {
                grid-template-columns: 1fr;
            }

            .speaker-image {
                width: 140px;
                height: 140px;
            }
        }

        /* Animation */
        .tab-pane {
            animation: fadeIn 0.4s ease;
        }

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