* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400 !important;
    font-style: normal;
    scroll-behavior: smooth;
    background-color: black;
}

body {
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.section {
    scroll-snap-align: start;
    height: 100%;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    color: white;
}

.hero-video {
    position: absolute;
    width: 100vw;
    height: 100vh !important;
    z-index: 0;
    object-fit: cover;
    object-position: bottom center;
}

.main_video_section video {
    position: relative;

    /* transform: translate(-50%, -50%); */
    width: 100%;
    height: 50vh;
    z-index: 1;
}

.ad-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}


/* Default (large screens / desktops) */
.controllers_home {
    position: relative;
    width: 40%;
    /* same as video default (45% near desktop) */
    left: 30%;
}

/* (max-width: 1180px) */
@media (max-width: 1180px) {
    .controllers_home {
        width: 37%;
        /* same as video */
        left: 31.5%;
        /* (100 - 37) / 2 = 31.5% to keep centered */
        top: 30px;
    }
}

/* (max-width: 1100px) */
@media (max-width: 1100px) {
    .controllers_home {
        width: 37%;
        /* same as video */
        left: 31.5%;
        top: 50px;
    }
}

/* (max-width: 1026px) */
@media (max-width: 1026px) {
    .controllers_home {
        width: 37%;
        /* same as video */
        left: 31.5%;
        top: 120px;
    }
}

/* (max-width: 991px) */
@media (max-width: 991px) {
    .controllers_home {
        width: 44%;
        /* same as video */
        left: 28%;
        top: 90px;
    }
}

/* (max-width: 991px) */
@media (max-width: 950px) {
    .controllers_home {
        width: 44%;
        /* same as video */
        left: 28%;
        top: 80px;
    }
}

/* (max-width: 786px) */
@media (max-width: 786px) {
    .controllers_home {
        width: 53%;
        /* same as video */
        left: 23.5%;
        top: 70px;
    }
}

/* (max-width: 725px) */
@media (max-width: 725px) {
    .controllers_home {
        width: 53%;
        /* same as video */
        left: 23.5%;
    }
}

/* (max-width: 650px) */
@media (max-width: 650px) {
    .controllers_home {
        width: 55%;
        /* same as video */
        left: 22.5%;
        top: 110px;
    }
}

/* (max-width: 550px) */
@media (max-width: 550px) {
    .controllers_home {
        width: 75%;
        /* same as video */
        left: 12.5%;
    }
}

/* (max-width: 430px) */
@media (max-width: 430px) {
    .controllers_home {
        width: 99%;
        /* same as video */
        left: 0.5%;
        top: 120px;
    }
}

/* (max-width: 375px) */
@media (max-width: 375px) {
    .controllers_home {
        width: 80%;
        /* matched with main_video_section */
        left: 10%;
        top: 110px;
    }
}

/* (max-width: 320px) */
@media (max-width: 320px) {
    .controllers_home {
        width: 100%;
        /* same as video */
        left: 0;
    }
}




.menu-items {
    position: absolute;
    bottom: 17%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(20px, 5vw, 36px);
    width: 100%;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: gainsboro;
}


.btn-c {
    font-size: clamp(28px, 4.5vw, 43px);
}

button {
    background-color: black;
    border: none;
    color: white;
    padding: 5px 20px;
    cursor: pointer;
    font-size: clamp(28px, 4.5vw, 43px);
    transition: color 0.3s ease;
}



.btn-close {
    font-size: 16px;
    color: white !important;
    filter: brightness(1) invert(1);
    /* makes it white */

}

.heading {
    font-size: clamp(45px, 8vw, 85px);
    margin-top: 10px;
}

.nmbr {
    font-size: clamp(30px, 5vw, 50px);
    margin-top: -10px;
}

.email {
    font-size: clamp(24px, 4vw, 40px);
    margin-top: -5px;
}

.sec-page,
.third-page {
    background: url('img/width_2400.webp') no-repeat;
    background-size: cover;
    background-position: center center;
    /* <-- This centers the background */
    letter-spacing: -1px;
}


.section {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

/* Video Styling */
.sec-page-video,
.third-page-video,
.music-page-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transition: opacity 2s ease-out;
    pointer-events: none;
}

/* Fade-out class */
.sec-page-video.fade-out,
.third-page-video.fade-out {
    opacity: 0;
}

/* Music page */
.music-page {
    background: url('img/width_2400.webp') no-repeat;
    background-size: cover;
    background-position: center center;
    /* <-- This centers the background */
    letter-spacing: -1px;
}


@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .main_video_section video {
        width: 45%;
        height: 53vh;
        top: 32%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .menu-items {
        bottom: 16%;
    }
}

@media screen and (min-device-width: 1536px) and (max-device-width: 1728px) and (-webkit-min-device-pixel-ratio: 2) {

    .main_video_section video {
        width: 45%;
        height: 53vh;
        top: 32%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .menu-items {
        bottom: 16%;
    }
}



@media (max-width: 1550px) {
    .hero-video {
        object-fit: cover;
        ;
        transform-origin: bottom;
    }

    .main_video_section video {
        width: 100%;
        height: 50vh;
        top: 28%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .menu-items {
        bottom: 17%;
    }

}

@media (max-width: 1350px) {

    .heading {
        font-size: 4rem !important;
    }

    .nmbr {
        font-size: 3rem !important;
    }

    .email {
        font-size: 2rem !important;
    }

    .menu-items {
        bottom: 20%;
    }
}


@media (max-width: 1180px) {
    .main_video_section video {
        width: 37%;
        height: 44vh;
        top: 30% !important;
        left: 50%;
    }

    .menu-items {
        bottom: 16%;
    }
}

@media (max-width: 1100px) {
    .main_video_section video {
        width: 37%;
        height: 44vh;
        top: 34% !important;
        left: 50%;
    }
}

@media (max-width: 1026px) {
    .main_video_section video {
        width: 37%;
        height: 39vh;
        top: 41% !important;
        left: 50%;
    }

    .menu-items {
        bottom: 10%;
    }

}

@media (max-width: 991px) {
    .hero-video {
        scale: 1.2;
    }

    .main_video_section video {
        height: 40vh;
        width: 44%;
        top: 36% !important;
        left: 50%;
    }

    .menu-items {
        bottom: 5%;
    }

    .menu-items {
        bottom: 5%;
    }

    .menu {
        flex-direction: column !important;
    }
}

@media (max-width: 786px) {
    .hero-video {
        scale: 1.4;
    }

    .main_video_section video {
        height: 43vh;
        top: 36% !important;
        width: 53%;
    }

    .menu-items {
        bottom: 5%;
    }


}

@media (max-width: 725px) {

    .main_video_section video {
        height: 43vh;
        top: 39% !important;
        width: 53%;
    }

    .menu-items {
        bottom: 4%;
    }
}

@media (max-width: 650px) {
    .hero-video {
        /* transform: translateY(-20%); */
        scale: 1.5;
    }

    .main_video_section video {
        height: 40vh;
        top: 43% !important;
        width: 55%;
    }

    .menu-items {
        bottom: 5%;
    }
}

@media (max-width: 550px) {
    .hero-video {
        /* transform: translateY(-16%); */
        scale: 1.7;
    }

    .main_video_section video {
        height: 40vh;
        top: 50%;
        width: 75%;
    }

    .menu-items {
        bottom: 5%;
    }


}

@media (max-width: 430px) {
    .hero-video {
        /* transform: translateY(-16%); */
        scale: 1.7;
    }

    .main_video_section video {
        height: 41vh;
        top: 43% !important;
        width: 99%;
    }

    .dots {
        display: none;
    }

    .menu-items {
        bottom: 10%;
    }

}

@media (max-width: 375px) {

    .main_video_section {
        height: 31vh;
        top: 50%;
        width: 80%;
    }

    .hero-video {
        /* transform: translateY(-16%); */
        scale: 1.7;
    }
}

@media (max-width: 320px) {

    .main_video_section {
        width: 100%;
    }
}



.dots {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 9999;
}

.dots__item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.dots__item:hover,
.dots__item--active {
    transform: scale(1.5);
}

@media (max-width: 1024px) {

    .sec-page,
    .third-page {
        background: url('img/width_2400.webp') no-repeat center center;
        background-size: cover;
        letter-spacing: -1px;
        position: relative;
        z-index: 10;
    }

    .sec-page::before,
    .third-page::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        /* ~70% visual opacity */
        z-index: -1;
        /* Below content */
    }

}

@media (min-width: 768px) and (max-width: 1024px) {
    .heading {
        font-size: 2.8rem !important;
    }

    .nmbr {
        font-size: 2rem !important;
    }

    .email {
        font-size: 1.7rem !important;
    }
}

@media (max-width: 435px) {
    .heading {
        font-size: 2.3rem !important;
    }
}

.modal.fade {
    border-radius: 0px !important;
}

/* Custom width for modal-dialog */
.modal-70w {
    max-width: 60%;
    width: 60%;
    border-radius: 0px !important;
}

.modal-content {
    border-radius: 0px !important;
}

.about-text {
    height: 80vh !important;
}

/* Responsive adjustments */
@media (max-width: 768.98px) {
    .modal-70w {
        max-width: 90% !important;
        margin: auto;
    }

    .modal-70w .modal-content {
        height: auto;
        /* Let it expand naturally on small screens */
        max-height: 90vh;
    }
}

/* Make modal backdrop black */
.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.95) !important;
    /* Dark black with some transparency */
}

input {
    border-radius: 0px !important;
}

.send-btn {
    border-radius: 0px !important;
}

textarea {
    border-radius: 0px !important;
}

.scrollable-para {
    /* height: 300px; */
    overflow-y: auto;
    scrollbar-width: thin;
    /* For Firefox */
    scrollbar-color: #fff #1a1a1a;
    /* For Firefox */
}

/* For Chrome, Edge, Safari */
.scrollable-para::-webkit-scrollbar {
    width: 6px;
}

.scrollable-para::-webkit-scrollbar-track {
    background: #1a1a1a;
    /* Dark track */
    border-radius: 10px;
}

.scrollable-para::-webkit-scrollbar-thumb {
    background: #ff0066;
    /* Hot pink thumb */
    border-radius: 10px;
}

.scrollable-para::-webkit-scrollbar-thumb:hover {
    background: #ff3385;
    /* Slightly lighter on hover */
}


special-btn{
    margin-top:20px;
}