/* Hero Section */
.webinar-hero {
    position: relative;
    overflow: hidden;
}

.webinar-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.webinar-hero .container {
    position: relative;
    z-index: 2;
}

/* Hero Image */
.webinar-hero img {
    transition: transform 0.3s ease;
}

.webinar-hero img:hover {
    transform: scale(1.05);
}

/* LIVE dot animation */
.live-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background-color: #DC2626;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}

.live-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #DC2626;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Webinar Description in Hero Section */
.webinar-hero .lead {
    color: #DC2626 !important; /* Primary red for emphasis */
}

/* Webinar Details Section */
.webinar-details .card {
    transition: transform 0.3s ease;
}

.webinar-details .card:hover {
    transform: translateY(-5px);
}

/* Speaker Section */
.speaker-image-placeholder {
    transition: transform 0.3s ease;
}

.speaker-image-placeholder:hover {
    transform: scale(1.05);
}

/* Speaker Title in Speaker Section */
.speaker-section p {
    color: #DC2626 !important; /* Primary red for speaker title */
}

/* Testimonials Slider */
.testimonials-slider .swiper-slide {
    padding: 0 10px;
}

.testimonials-slider .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-slider .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.swiper-button-next, .swiper-button-prev {
    color: #DC2626;
}

.swiper-pagination-bullet-active {
    background-color: #DC2626;
}

/* Registration Section */
.register-section .form-control {
    background-color: #192339;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.register-section .form-control::placeholder {
    color: #DC2626 !important; /* Red placeholder text */
    opacity: 1;
}

.register-section .form-control:focus {
    background-color: #192339;
    border-color: #DC2626;
    box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
    color: #FFFFFF;
}

/* CTA Section */
.cta-section {
    background-color: #1a1a1a; /* Slightly lighter than black for contrast */
}

/* CTA Button */
.btn-outline-light {
    border-color: #FFD700; /* Gold border */
    color: #FFD700; /* Gold text */
}

.btn-outline-light:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1a1a1a; /* Dark text for contrast */
    border-color: #FFD700;
}

/* General Text Overrides for Black Background */
.text-white {
    color: #FFFFFF !important; /* Ensure white text is enforced */
}

.text-primary {
    color: #DC2626 !important; /* Primary red */
}

/* Ensure muted text is visible */
.text-muted {
    color: #DC2626 !important; /* Override muted to red for visibility */
}

/* Original Price Strikethrough */
.text-decoration-line-through {
    color: #DC2626 !important; /* Red for strikethrough price */
}