
        .schedule-section {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
            background: linear-gradient(135deg, #f9f9f9 0%, #f3f3f3 100%);
        }

        .schedule-decor {
            position: absolute;
            z-index: 0;
            border-radius: 50%;
        }

        .schedule-decor-1 {
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: var(--primary);
            opacity: 0.03;
        }

        .schedule-decor-2 {
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: var(--secondary);
            opacity: 0.03;
        }

        .section-header {
            position: relative;
            z-index: 1;
            margin-bottom: 60px;
        }

        .section-intro {
            max-width: 900px;
            margin: 25px auto 0;
            font-size: 1.1rem;
            color: var(--secondary);
            line-height: 1.7;
        }

        /* Conference Day Tabs */
        .schedule-tabs {
            position: relative;
            z-index: 1;
        }

        .nav-pills {
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            padding: 10px;
            display: inline-flex;
            margin-bottom: 40px !important;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .nav-pills .nav-item {
            margin: 0 5px;
        }

        .nav-pills .nav-link {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--secondary);
            background: #00000014;
        }

        .nav-pills .nav-link .day-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary-light);
            
        }

        .nav-pills .nav-link .day-title {
            font-size: 1rem;
        }

        .nav-pills .nav-link.active {
            background: var(--primary);
            color: white;
            box-shadow: 0 5px 15px rgba(204, 54, 52, 0.2);
        }

        .nav-pills .nav-link.active .day-label,
        .nav-pills .nav-link.active .day-title {
            color: white; /* Make sure all text is white when active */
        }

        /* Day Overview Card */
        .day-overview-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--primary);
        }

        .day-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .day-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--secondary-dark);
            margin: 0;
            max-width: 70%; /* Allow space for date */
            flex: 1;
        }

        .day-date {
            display: flex;
            align-items: center;
            justify-content: flex-end; /* Align to right */
            font-weight: 500;
            font-size: 1.1rem;
            color: var(--primary);
            flex: 0 0 auto; /* Don't shrink */
        }

        .day-date i {
            margin-right: 8px;
        }

        .day-description p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .day-description p:last-child {
            margin-bottom: 0;
        }

        .topics-heading {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--secondary-dark);
            margin-bottom: 30px;
            text-align: center;
        }

        /* Session Cards */
        .session-card {
            display: flex;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .session-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .session-number {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            width: 80px;
            flex-shrink: 0;
            padding: 20px;
        }

        .session-content {
            padding: 30px;
            flex-grow: 1;
        }

        .session-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-dark);
            margin-bottom: 20px;
            line-height: 1.4;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 15px;
        }

        .session-type {
            background: rgba(204, 54, 52, 0.1);
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 5px 15px;
            border-radius: 50px;
            display: inline-block;
        }

        .session-details ul {
            padding-left: 20px;
            margin-bottom: 0;
        }

        .session-details li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .session-details li:last-child {
            margin-bottom: 0;
        }

        /* Page Header Section */
        .page-header {
            position: relative;
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.9) 0%, rgba(87, 86, 86, 0.9) 100%), 
                        url('../images/conference-header-bg.jpg') no-repeat center center/cover;
            padding: 120px 0 80px;
            color: white;
            margin-top: 70px; /* Space for fixed navbar */
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .breadcrumb-wrapper {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
        }

        .custom-breadcrumb {
            background: rgba(0, 0, 0, 0.2);
            display: inline-flex;
            padding: 10px 20px;
            border-radius: 50px;
        }

        .breadcrumb-item, 
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Registration Section */
        .registration-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .reg-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .reg-shape-1 {
            width: 400px;
            height: 400px;
            top: -150px;
            right: -150px;
        }

        .reg-shape-2 {
            width: 300px;
            height: 300px;
            bottom: -100px;
            left: -100px;
        }

        .registration-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .registration-text {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-white:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            color: var(--primary-dark);
        }

        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .day-title {
                font-size: 1.4rem;
                max-width: 60%;
            }
            
            .session-title {
                font-size: 1.2rem;
            }
            
            .nav-pills .nav-link {
                padding: 12px 20px;
            }
            
            .day-overview-card {
                padding: 30px;
            }
            
            .session-content {
                padding: 25px;
            }
            
            .session-number {
                width: 70px;
                font-size: 1.6rem;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 767.98px) {
            .schedule-section {
                padding: 70px 0;
            }
            
            .nav-pills {
                display: flex;
                width: 100%;
            }
            
            .nav-pills .nav-item {
                flex: 1;
            }
            
            .nav-pills .nav-link {
                padding: 12px 38px;
            }
            
            .day-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .day-title {
                font-size: 1.3rem;
                max-width: 100%;
            }

            .day-date {
                justify-content: center;
            }
            
            .session-card {
                flex-direction: column;
            }
            
            .session-number {
                width: 100%;
                padding: 10px;
            }
            
            .session-title {
                font-size: 1.1rem;
            }
            
            .session-content {
                padding: 20px;
            }
            
            .day-overview-card {
                padding: 25px;
            }

            .page-header {
                padding: 56px 0 95px;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .registration-title {
                font-size: 2rem;
            }
        }
		
		/* Fix for tab functionality */
			.nav-pills .nav-link.active,
			.nav-pills .show > .nav-link {
				background-color: var(--primary) !important;
				color: white !important;
			}
			
			.nav-pills .nav-link.active .day-label,
			.nav-pills .nav-link.active .day-title {
				color: white !important;
			}
			
			/* Fix for register button hover color */
			.btn-white:hover {
				background-color: #f8f8f8;
				color: var(--primary-dark);
				transform: translateY(-5px);
				box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
			}
			
			/* Make sure Bootstrap JS is working for tabs */
			.tab-pane {
				display: none;
			}
			
			.tab-pane.active {
				display: block;
			}
			
			.tab-pane.fade.show.active {
				display: block;
				opacity: 1;
			}