.carousel-wrapper {
    position: relative;
    overflow-x: hidden;
    padding-bottom: 80px;
}

.owl-carousel {
    width: 100vw;
}

.slide {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.slide-1,
.slide-2 {
    flex-direction: column;
    color: #676767;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.slide-1 p,
.slide-2 p {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: normal;
    color: #FFFFFF;
    max-width: 60%;
    margin-bottom: 40px;
    height: 80px;
}

.vid-1 {
    width: 96%;
    height: 100%;
    min-height: 581px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 65px 30px;
}

.vid-2 {
    width: 96%;
    height: 100%;
    min-height: 581px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 65px 30px;
}

.play-button {
    background-color:#242743BA;
    font-size: 15px;
    font-weight: 500;
    border-radius: 35px;
    padding: 20px 40px;
    text-decoration: none;
    transition: all ease 0.3s;
}

.play-button:hover {
    background-color: #6B60AD;
}

.play-button svg {
    margin-bottom: -5px;
    margin-right: 5px;
}

.play-button span {
    color: #FFFFFF;
    line-height: 22px;
    font-family: 'Poppins', sans-serif;
}

.nav-button {
    position: absolute;
    bottom: 20px;
    padding: 0;
    background: none !important;
    border: none;
    cursor: pointer;
    color: #FFFFFF !important;
    font-size: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.nav-button.visible {
    opacity: 1;
    pointer-events: auto;
}

.next-btn {
    right: 12%;
}

.prev-btn {
    left: 12%;
}

.next-btn svg {
    transform: rotate(180deg);
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 5px;
    border-radius: 50%;
    background: #D9D9D9 !important;
    transition: background 0.3s;
}

.owl-dot.active {
    background: #6B60AD !important;
}

@media (max-width: 1024px) {
    .nav-button {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: -50px;
    }
    .next-btn, .prev-btn {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .slide-1 p,
    .slide-2 p {
        height: 140px;
    }
    .slide p {
        max-width: 80%;
        font-size: 16px;
    }

    .vid-1,
    .vid-2 {
        min-height: 350px;
        border-radius: 25px;
    }
}

@media (max-width: 768px) {
    .slide {
        padding-top: 15px;
        padding-bottom: 30px;
    }

    .slide p {
        max-width: 80%;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .vid-1,
    .vid-2 {
        width: 95%;
        min-height: 250px;
        border-radius: 18px;
    }

    .play-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .play-button svg {
        width: 14px;
        height: 16px;
    }

    .nav-button {
        bottom: 10px;
        font-size: 13px;
        padding: 6px 14px;
    }

    .next-btn,
    .prev-btn {
        width: auto;
        height: auto;
    }

    .owl-dots {
        bottom: 40px;
    }

    .owl-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slide p {
        font-size: 14px;
        line-height: 1.3;
    }

    .vid-1,
    .vid-2 {
        min-height: 220px;
    }

    .play-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    .nav-button {
        font-size: 12px;
        padding: 5px 12px;
    }

    .owl-dots {
        bottom: 35px;
    }
}