/* Buttons Styling */
.index-btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary-highlight {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding: 15px 40px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(243, 176, 26, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(243, 176, 26, 0.5);
}

.btn-sample-test {
    background-color: #fff;
    color: var(--color-primary);
    padding: 15px 40px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-sample-test:hover {
    transform: translateY(-3px);
    background-color: transparent;
    color: #fff;
}

.btn-how-it-works {
    background-color: transparent;
    color: #fff;
    padding: 15px 40px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 20px;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-how-it-works:hover {
    background-color: #fff;
    color: var(--color-primary);
}

/* Success Stories Styles */
.success-stories-section .swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.3;
}

.success-stories-section .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.success-stories-section .swiper-slide {
    height: auto;
}

.success-stories-section .swiper {
    padding-bottom: 50px !important;
}

.play-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--color-primary);
    position: relative;
}

.btn-how-it-works:hover .play-icon-wrapper {
    background-color: var(--color-primary);
    color: #fff;
}

/* Animation for play icon */
.play-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Video Popup Modal */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.video-popup::before {
    display: none !important;
}

.video-popup .popupCloseBg {
    display: none !important;
}

.video-popup.popupShow {
    display: flex;
}

.video-container {
    width: 80%;
    max-width: 900px;
    position: relative;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.close-video-popup {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* Sample Test Popup */
.sample-test-container {
    max-height: 90vh;
    overflow-y: auto;
}

.option-btn {
    cursor: pointer;
}

.test-step.hidden {
    display: none;
}

@media (max-width: 640px) {
    .index-btn-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-primary-highlight, .btn-how-it-works, .btn-sample-test {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
