.hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.hero-title {
    font-size: 5rem;
    font-weight: 900;
}

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

.hero-content {
    position: absolute;
    left: 5rem;
    top: 25rem;
    z-index: 2;
}


.logo {
    position: absolute;
    top: 2rem;
    left: 4rem;
    z-index: 2;
}

.logo img {
    height: 12rem;
}

.p_content {
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.p_content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.p_content ul li {
    height: fit-content;
    min-height: 20px;
    text-align: left;
    font-size: 1.8rem;
    background-size: 20px;
    background-repeat: no-repeat;
    padding-left: 30px;
    margin-bottom: 20px;
    background-position: left center;
}



.title {
    color: #000;
    font-size: 4rem;
    font-weight: 900;
}

.sub-title {
    color: #000;
    font-weight: 700;
    font-size: 2.2rem;
}

.sub-title::after {
    content: '';
    display: block;
    width: 5rem;
    height: 2px;
    background-color: #FD7E14;
    margin: 10px 10px 0 0;
    position: absolute;
    left: 1.5rem;
}

.custom-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-radio-label {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    /* border: 2px solid #ccc; */
    background-color: #FDFDFD;
    box-shadow: 0 4px 4px 0 #00000040;
    color: #FD7E14;
    font-size: 1.8rem;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.custom-radio:checked + .custom-radio-label {
    background-color: #FD7E14;
    border-color: #FD7E14;
    color: white;
}

.buy-pack-btn[disabled] {
    pointer-events: none; 
    opacity: 0.5; 
}

.buy-pack-btn.loading {
    pointer-events: none; 
    opacity: 0.5; 
}

/* Add some hover effects */
.custom-radio-label:hover {
    background-color: #e0e0e0;
}

.nav-tabs {
    border: none;
}

.custom-tabs .nav-link {
    border: none;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 20px;
    margin-right: 5px;
    color: #495057;
    background-color: #fff;
    position: relative;
}

.custom-tabs .nav-link.active {
    color: #FD7E14;
}

.custom-tabs .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: #FD7E14;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease, transform 0.3s ease;
}

.custom-tabs .nav-link.active::after {
    width: 5rem;
    transform: translateX(40%);
}

.custom-tabs .nav-link:hover {
    color: #FD7E14;
}

.tab-content {
    border: none;
    padding: 20px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    margin: 0 auto;
    border-radius: 10px;
}

.slider {
    height: 70vh;
    display: flex;
    aspect-ratio: auto;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 10px;
}

.slider img {
    height: 70vh;
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}

.slider-overlay {
    height: 70vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    pointer-events: none;
}


.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}


.slider-nav a {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: white;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.slider-nav a:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 30px;
    height: 2px;
    background: white;
    transform: translateY(-50%);
    transition: none;
}

.slider-nav a:last-child::before {
    display: none;
}

.slider-nav a.active {
    background: orange;
}



.start-icon, .end-icon {
    position: absolute;
}

.start-icon {
    top: -40px;
    left: -5px;
    width: 30px;
    height: 30px;
}

.end-icon {
    bottom: 0;
    width: 30px;
    height: 30px;
}

.slider-buttons {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.slider-button {
    border: none;
    background: none;
    cursor: pointer;
}

.slider-title {
    width: 40%;
    position: absolute;
    top: 25%;
    left: 3rem;
    z-index: 2;
}

.slider-title h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 4rem;
    text-align: left;
}

.slider-sub-title {
    position: absolute;
    top: 50%;
    z-index: 2;
    left: 3rem;
    width: 40%;

}

.slider-sub-title p {
    color: #ffffff;
    font-size: 1.8rem;
    letter-spacing: 1px;
    font-weight: 300;
    line-height: 2.6rem;
}

.slider-active .slider-title,
.slider-active .slider-sub-title {
    opacity: 1;
    transform: translateY(0);
}

.arrow-icon {
    width: 4rem;
    height: 4rem;
    transition: transform 0.3s ease;
}

.prev-button .arrow-icon {
    transform: rotate(-90deg);
}

.next-button .arrow-icon {
    transform: rotate(90deg);
}

@media (max-width: 1366px) {
    .hero-title {
        font-size: 3rem;
    }

    /* .hero-content {
        left: 3rem;
        bottom: 20rem;
    } */


    .logo img {
        height: 8rem;
    }

    .title {
        font-size: 3rem;
    }

    .sub-title {
        font-size: 2rem;
    }

    .slider-wrapper {
        height: 65vh;
    }

    .slider {
        height: 65vh;
    }

    .slider img {
        height: 65vh;
    }

    .slider-overlay {
        height: 65vh;
    }

    .slider-title h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .slider-sub-title p {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }

    .slider-nav {
        bottom: 2.5rem;
        left: 2.5rem;
        gap: 1.5rem;
    }

    .slider-nav a {
        width: 2rem;
        height: 2rem;
    }

    .slider-nav a:not(:last-child)::before {
        width: 25px;
    }

    .start-icon, .end-icon {
        width: 25px;
        height: 25px;
    }

    .start-icon {
        top: -35px;
        left: -3px;
    }

    .end-icon {
        bottom: 2rem;
        left: 10rem;
    }

    .arrow-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
}



@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    /* .hero-content {
        left: 2rem;
        bottom: 15rem;
    } */


    .logo img {
        height: 5rem;
    }

    .title {
        font-size: 2rem;
    }

    .sub-title {
        font-size: 1.8rem;
    }

    .slider-wrapper {
        height: 60vh;
    }

    .slider {
        height: 60vh;
    }

    .slider img {
        height: 60vh;
    }

    .slider-overlay {
        height: 60vh;
    }

    .slider-title h1 {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }

    .slider-sub-title p {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }

    .slider-nav {
        bottom: 2rem;
        left: 2rem;
        gap: 1rem;
    }

    .slider-nav a {
        width: 2rem;
        height: 2rem;
    }

    .slider-nav a:not(:last-child)::before {
        width: 20px;
    }

    .start-icon, .end-icon {
        width: 20px;
        height: 20px;
    }

    .start-icon {
        top: -25px;
        left: 0;
    }

    .end-icon {
        left: 10rem;
    }

    .arrow-icon {
        width: 3rem;
        height: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    /* .hero-content {
        left: 2rem;
        bottom: 15rem;
    } */

    .logo img {
        height: 5rem;
    }

    .title {
        font-size: 2rem;
    }

    .sub-title {
        font-size: 1.8rem;
    }

    .custom-radio-label {
        font-size: 1.2rem;
    }

    .custom-tabs .nav-link {
        font-size: 1.4rem;
        padding: 8px 16px;
    }

    .nav-tabs {
        flex-direction: column;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .tab-content {
        padding: 10px;
    }

    .slider-wrapper {
        height: 50vh;
    }

    .slider {
        height: 50vh;
    }

    .slider img {
        height: 50vh;
    }

    .slider-overlay {
        height: 50vh;
    }

    .slider-title {
        width: 80%;
        top: 20%;
        left: 1rem;
    }

    .slider-title h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .slider-sub-title {
        top: 40%;
        left: 1rem;
        width: 80%;
    }

    .slider-sub-title p {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .slider-nav {
        bottom: 1rem;
        left: 1rem;
        gap: 0.5rem;
    }

    .slider-nav a {
        width: 1.5rem;
        height: 1.5rem;
    }

    .slider-nav a:not(:last-child)::before {
        width: 15px;
    }

    .start-icon, .end-icon {
        width: 15px;
        height: 15px;
    }

    .start-icon {
        top: -20px;
    }

    .end-icon {
        left: 13rem;
        bottom: 1rem;
    }

    .arrow-icon {
        width: 2rem;
        height: 2rem;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        height: 40vh;
    }

    .slider {
        height: 40vh;
    }

    .slider img {
        height: 40vh;
    }

    .slider-overlay {
        height: 40vh;
    }

    .slider-title {
        width: 90%;
        top: 15%;
        left: 0.5rem;
    }

    .slider-title h1 {
        font-size: 2rem;
        line-height: 2.2rem;
    }

    .slider-sub-title {
        top: 45%;
        left: 0.5rem;
        width: 70%;
    }

    .slider-sub-title p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .slider-nav {
        bottom: 0.5rem;
        left: 0.5rem;
        gap: 0.5rem;
    }

    .slider-nav a {
        width: 1rem;
        height: 1rem;
    }

    .slider-nav a:not(:last-child)::before {
        width: 10px;
    }

    .start-icon, .end-icon {
        width: 10px;
        height: 10px;
    }

    .arrow-icon {
        width: 2rem;
        height: 2rem;
    }
}