.mobile-floating-register {
    position: fixed;
    bottom: 30px;
    right: -200px;
    z-index: 9999;
    transition: right 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 50px 0 0 50px;
    display: none;
    background-color: var(--primary, #cc3634);
  }
  
  .mobile-floating-register.show {
    right: 0;
  }
  
  .mobile-floating-btn {
    display: flex;
    align-items: center;
    padding: 12px 25px 12px 20px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px 0 0 50px;
    white-space: nowrap;
    font-size: 14px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  
  /* Icons styling */
  .mobile-floating-btn .ticket-icon {
    margin-right: 8px;
  }
  
  .mobile-floating-btn .dropdown-icon {
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s ease;
  }
  
  /* Rotate the dropdown icon when dropdown is open */
  .mobile-floating-btn.active .dropdown-icon {
    transform: rotate(180deg);
  }
  
  .mobile-floating-btn:hover,
  .mobile-floating-btn:focus {
    color: #fff;
    outline: none;
  }
  
  .mobile-floating-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    min-width: 220px;
    display: none;
  }
  
  .mobile-floating-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
  }
  
  .mobile-floating-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-floating-dropdown li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .mobile-floating-dropdown li:last-child {
    border-bottom: none;
  }
  
  .mobile-floating-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
  }
  
  .mobile-floating-dropdown a:hover {
    background-color: rgba(204, 54, 52, 0.1);
    color: var(--primary, #cc3634);
  }
  
  /* Show only on mobile */
  @media (max-width: 991px) {
    .mobile-floating-register {
      display: block;
    }
  }
  
  /* Smaller screens adjustment */
  @media (max-width: 576px) {
    .mobile-floating-register {
      bottom: 20px;
    }
    
    .mobile-floating-btn {
      padding: 10px 20px 10px 15px;
      font-size: 13px;
    }
  }

/* Floating Registration Button - Works on both Desktop and Mobile */
.floating-register {
    position: fixed;
    bottom: 30px;
    right: -250px;
    z-index: 9999;
    transition: right 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px 0 0 50px;
    background: linear-gradient(135deg, #cc3634, #b32e2c);
    display: block;
}

.floating-register.show {
    right: 0;
}

.floating-btn {
    display: flex;
    align-items: center;
    padding: 15px 30px 15px 25px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px 0 0 50px;
    white-space: nowrap;
    font-size: 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-btn:hover,
.floating-btn:focus {
    color: #fff;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.floating-btn .ticket-icon {
    margin-right: 12px;
    font-size: 16px;
}

.floating-btn .dropdown-icon {
    margin-left: 12px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.floating-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

.floating-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
    min-width: 280px;
    display: none;
    overflow: hidden;
}

.floating-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 25px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.floating-dropdown ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.floating-dropdown li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.floating-dropdown li:last-child {
    border-bottom: none;
}

.floating-dropdown a {
    display: block;
    padding: 16px 24px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.floating-dropdown a:hover {
    background: linear-gradient(135deg, rgba(204, 54, 52, 0.1), rgba(179, 46, 44, 0.1));
    color: #cc3634;
    transform: translateX(5px);
}

.floating-dropdown a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Desktop specific styles */
@media (min-width: 992px) {
    .floating-register {
        bottom: 40px;
    }
    
    .floating-btn {
        padding: 18px 35px 18px 30px;
        font-size: 16px;
    }
    
    .floating-dropdown {
        min-width: 300px;
    }
}

/* Mobile specific styles */
@media (max-width: 991px) {
    .floating-register {
        bottom: 25px;
    }
    
    .floating-btn {
        padding: 14px 25px 14px 20px;
        font-size: 14px;
    }
    
    .floating-dropdown {
        min-width: 260px;
    }
}

/* Small mobile screens */
@media (max-width: 576px) {
    .floating-register {
        bottom: 20px;
    }
    
    .floating-btn {
        padding: 12px 20px 12px 18px;
        font-size: 13px;
    }
    
    .floating-btn .ticket-icon {
        margin-right: 10px;
        font-size: 14px;
    }
    
    .floating-btn .dropdown-icon {
        margin-left: 10px;
        font-size: 11px;
    }
    
    .floating-dropdown {
        min-width: 240px;
    }
    
    .floating-dropdown a {
        padding: 14px 20px;
        font-size: 13px;
    }
}

/* Animation for smooth entrance */
.floating-register {
    opacity: 0;
    transform: translateX(20px);
    transition: right 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.floating-register.show {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse animation to draw attention */
@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(204, 54, 52, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(204, 54, 52, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(204, 54, 52, 0.4); }
}

.floating-register.pulse {
    animation: pulse 2s infinite;
}



 /* Custom dropdown container */
  .custom-dropdown-container {
    position: relative;
    display: inline-block;
  }
  
  /* Button styling */
  .dropdown-toggle {
    position: relative;
    padding-right: 40px !important; /* Make room for arrow */
  }
  
  /* Clear any existing arrows */
  .btn-hero.dropdown-toggle::after,
  .btn-hero.dropdown-toggle::before {
    display: none !important;
  }
  
  /* Custom arrow */
  .dropdown-arrow {
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
  }
  
  /* Dropdown menu styling */
  .dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 250px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    overflow: visible;
  }
  
  /* Triangle pointer */
  .dropdown-menu-custom::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
  }
  
  /* List styling */
  .dropdown-menu-custom ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
  }
  
  .dropdown-menu-custom li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .dropdown-menu-custom li:last-child {
    border-bottom: none;
  }
  
  .dropdown-menu-custom li a {
    display: block;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
  }
  
  .dropdown-menu-custom li a:hover {
    background-color: rgba(204, 54, 52, 0.1);
    color: #cc3634;
  }
  
  /* When dropdown is shown */
  .dropdown-menu-custom.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* Arrow animation */
  .custom-dropdown-container.active .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  /* NAVBAR SPECIFIC STYLING */
  .navbar .dropdown-menu-custom {
    left: auto;
    right: 0;
    background-color: #fff;
  }
  
  .navbar .dropdown-menu-custom::before {
    left: auto;
    right: 20px;
  }
  
  .navbar .dropdown-menu-custom li a {
    color: #333; /* Ensure text is dark for visibility */
    font-weight: 600; /* Make it bolder */
    padding: 16px 24px; /* More padding */
  }
  
  /* For mobile view in navbar */
  @media (max-width: 992px) {
    .navbar .custom-dropdown-container {
      width: 100%;
    }
    
    .navbar .dropdown-toggle {
      width: 100%;
      display: flex;
      justify-content: center;
    }
    
    .navbar .dropdown-menu-custom {
      position: static;
      width: 100%;
      margin-top: 15px;
      border-radius: 5px;
      background-color: rgba(255,255,255,0.95); /* Nearly opaque */
      box-shadow: none;
    }
    
    .navbar .dropdown-menu-custom::before {
      display: none;
    }
    
    .navbar .dropdown-menu-custom li a {
      color: #333;
      padding-left: 30px;
    }
  }

/* Schedule Section Specific Styles */
.schedule-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

/* Schedule Cards */
.schedule-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.schedule-card-header {
    padding: 25px 25px 0;
}

.schedule-card-body {
    padding: 15px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.track-badge {
    background: linear-gradient(135deg, var(--primary, #cc3634), #b32e2c);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.track-badge.track-1 {
    background: linear-gradient(135deg, #cc3634 0%, #cc3634 100%);
}

.track-badge.track-2 {
    background: linear-gradient(135deg, #cc3634 0%, #cc3634 100%);
}

.track-badge.track-3 {
    background: linear-gradient(135deg, #cc3634 0%, #cc3634 100%);
}

.schedule-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
}

.schedule-time i {
    color: var(--primary, #cc3634);
}

.schedule-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 0;
}

.schedule-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    font-size: 0.95rem;
}

.schedule-actions {
    margin-top: auto;
}

.zoom-link {
    background: #0d6efd;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
	    padding: 14px;
}

.zoom-link:hover {
    background: #b32e2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 54, 52, 0.3);
}

.zoom-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.meeting-info {
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .schedule-nav {
        flex-direction: column;
        border-radius: 15px;
        padding: 15px;
    }
    
    .schedule-nav .nav-link {
        min-width: auto;
        width: 100%;
        margin-bottom: 5px;
        border-radius: 10px;
    }
    
    .schedule-nav .nav-link:last-child {
        margin-bottom: 0;
    }
    
    .schedule-card-header,
    .schedule-card-body {
        padding: 20px;
    }
    
    .schedule-card-body {
        padding-top: 10px;
    }
    
    .schedule-title {
        font-size: 1.1rem;
    }
    
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .schedule-nav .nav-link {
        padding: 15px 20px;
    }
    
    .schedule-card {
        margin-bottom: 20px;
    }
    
    .meeting-info small {
        font-size: 0.75rem;
    }
}

/* Animation for tab content */
.tab-pane {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-pane.active {
    opacity: 1;
}


  
 :root {
            --primary: #cc3634;
            --primary-light: rgba(204, 54, 52, 0.1);
            --primary-dark: #a12b29;
            --gradient-primary: linear-gradient(135deg, #cc3634 0%, #a12b29 100%);
            --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
            --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        /* Modal Styles */
        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: var(--shadow-heavy);
            overflow: hidden;
        }
        
        .modal-header {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 25px;
            position: relative;
        }
        
        .modal-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.3) 100%);
        }
        
        .modal-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0;
        }
        
        .btn-close {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            opacity: 1;
            transition: all 0.3s ease;
        }
        
        .btn-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .modal-body {
            padding: 30px;
            max-height: 70vh;
            overflow-y: auto;
        }

        /* Person Cards */
        .person-section {
            margin-bottom: 35px;
        }
        
        .section-divider {
            text-align: center;
            margin: 40px 0;
            position: relative;
        }
        
        .section-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, var(--primary-light) 20%, var(--primary) 50%, var(--primary-light) 80%, transparent 100%);
        }
        
        .section-divider span {
            background: white;
            padding: 0 20px;
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .moderator-section h5,
        .panelists-section h5 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .moderator-section h5 i,
        .panelists-section h5 i {
            background: var(--gradient-primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .person-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.9) 100%);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
            border: 2px solid rgba(204, 54, 52, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .person-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .person-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary);
        }
        
        .person-card:hover::before {
            opacity: 1;
        }

        .person-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .person-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(204, 54, 52, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .person-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .person-details h6 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 5px 0;
        }
        
        .person-title {
            color: #6c757d;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .modal-body {
                padding: 20px;
            }
            .person-info {
                gap: 12px;
            }
            .person-avatar {
                width: 70px;
                height: 70px;
                font-size: 1.3rem;
            }
        }

        /* Demo button for testing */
        .demo-container {
            padding: 50px 0;
            text-align: center;
            background: #f8f9fa;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .demo-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            max-width: 800px;
        }
        
        .demo-btn {
            background: white;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            border-radius: 12px;
            padding: 12px 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .demo-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(204, 54, 52, 0.3);
        }