/* Webinar specific styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0.65;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.timer-container {
    background-color: rgba(239, 100, 53, 0.25);
    border: 1px solid #EF6235;
}

.challenge-box {
    border-left: 4px solid #035891;
    border: 1px solid rgba(3, 88, 145, 0.23);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card {
    border: 1px solid rgba(3, 88, 145, 0.3);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(3, 88, 145, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    text-align: left;
}

.testimonial-card:hover {
    box-shadow: 0 8px 16px rgba(3, 88, 145, 0.4);
    border-color: rgba(3, 88, 145, 0.6);
}

.faq-item {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid #dee2e6;
}

.faq-answer.active {
    display: block;
}

.text-secondary-custom {
    color: rgba(245, 103, 56, 0.95);
}

.btn-css {
    background-color: #035891;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    /* py-2 px-4 */
    border-radius: 0.25rem;
    /* rounded */
    margin-top: 1rem;
    /* my-4 */
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.btn-css:hover {
    background-color: #0475c0;
    color: #fff;
}

.webinar-hero {
    text-align: center;
    padding: 40px 20px;
}

.webinar-hero h1 {
    color: #f15a24;
    font-size: 2.5rem;
    font-weight: bold;
}

.webinar-hero h3 {
    color: #000;
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.webinar-hero p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 30px;
}

.webinar-info {
    background-color: #f1f1f1;
    display: inline-block;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.info-box {
    background: white;
    border: 1px solid #dce0e6;
    padding: 15px;
    border-radius: 6px;
    text-align: left;
}

.info-box strong {
    color: #035891;
    display: block;
    margin-bottom: 5px;
}

.book-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #035891;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

.book-btn:hover {
    background-color: #023f68;
}

.speaker-info {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.speaker-info img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

.speaker-details {
    background-color: #f1f1f1;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #dce0e6;
}

.speaker-details strong {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.speaker-details span {
    font-size: 0.9rem;
    color: #777;
}

.text-custom-blue {
    color: rgb(3 88 145 / var(--tw-text-opacity, 1));
}

.text-orange {
    color: #F46A30;
    font-size: 36px;
}

.border-custom {
    border: 1px solid rgb(3 88 145 / 1);
}

.btn-custom {
    background-color: rgb(3 88 145);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-custom:hover {
    background-color: #034c81;
}

.section-heading {
    color: #F46A30;
    font-weight: 700;
}

.custom-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-card img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.custom-card p {
    font-weight: 500;
    color: #333;
    margin: 0;
}

.fw-semibold {
    font-weight: bold;
    font-size: 36px;
}

.sticky-timer-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1050;
    /* higher than navbar */
}

.workshop-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.timeline-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #ff6b00;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 15px 20px;
    border: 1px solid;
    box-shadow: blue;
    box-shadow: 7px 0 1px rgba(13, 110, 253, 0.4), 0 7px 3px rgba(13, 110, 253, 0.4);
    border-radius: 8px;
    background-color: #fff;
}

.timeline-content p {
    margin: 0;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

.left-content {
    left: 0;
}

.right-content {
    left: 55%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #4CAF50;
    border-radius: 50%;
    left: 50%;
    top: 15px;
    margin-left: -10px;
    z-index: 10;
}

.register-banner {
    background-color: #ff6b00;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    margin-top: 30px;
    font-weight: bold;
}

.register-note {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: #666;
}

/* Responsive styles */
@media (max-width: 767px) {
    .timeline::before {
        left: 40px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }

    .left-content,
    .right-content {
        left: 0;
    }

    .timeline-dot {
        left: 40px;
    }
}
