@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;

}

/* Video Banner Design */
.video-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.428);

}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;

}

.video-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    justify-content: start;
}

.video-overlay .video-text1 {
    font-size: clamp(28px, 5vw, 50px);
    line-height: 1.5;
    margin-left: clamp(10%, 15%, 20%);
    font-weight: 500;
    display: flex;
    justify-content: start;
    max-width: 1920px;
    text-align: start;
}

.video-overlay .video-text2 {
    display: flex;
    justify-content: start;
    text-align: start;
    margin: 10px 0 40px clamp(10%, 15%, 20%);
    font-weight: 500;
    font-size: 16px;
    max-width: 1920px;
}

.video-overlay .video-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: clamp(10%, 15%, 20%);
    width: 220px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding-bottom: 4px;
    transition: color ease-in-out 0.2s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-overlay .video-button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease, height 0.1s ease 0.3s;
}

.video-overlay .video-button:hover::after {
    width: 100%;
    height: 2px;
}

#toggleBtn {
    margin: clamp(60px, 10vh, 100px) auto 40px clamp(10%, 15%, 40px);
    max-width: 250px;
    padding: 4px 0;
    display: flex;
    font-weight: 500;
    align-items: center;
    justify-content: space-evenly;
    gap: 36px;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0.63);
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
}

.video-overlay .video-textand {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 40px 0 0 clamp(2%, 6%, 12%);
    max-width: 1920px;
    gap: clamp(10px, 2vh, 20px);
    cursor: default;
}

.video-overlay .video-textand .video-textand1 {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: clamp(10px, 1.2vw, 14px);
}

.video-overlay .video-textand .video-textand2 {
    font-size: clamp(32px, 5vw, 80px);
    line-height: 1.1;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: left;
}

#bgVideo {
    object-fit: cover;
}


/* Responsive styles for .sliderhome and .video-banner */


/* Breakpoint: 996px */
@media screen and (max-width: 996px) {

    /* Video banner responsive styles */
    .video-banner {
        height: 70vh;
    }

    .video-overlay .video-text1 {
        margin-top: 10%;
        margin-left: 10%;
    }

    .video-overlay .video-text2 {
        margin-left: 10%;
        font-size: 15px;
    }

    .video-overlay .video-button {
        margin-left: 10%;
    }

    #toggleBtn {
        margin-left: 10%;
        gap: 24px;
    }

    .video-overlay .video-textand {
        margin-left: 5%;
    }
}

/* Breakpoint: 765px */
@media screen and (max-width: 765px) {


    /* Video banner responsive styles */
    .video-banner {
        height: 60vh;
    }

    .video-overlay .video-text1 {
        margin-top: 10%;
        margin-left: 8%;
    }

    .video-overlay .video-text2 {
        margin-left: 8%;
        font-size: 14px;
        margin-bottom: 30px;
    }

    .video-overlay .video-button {
        margin-left: 8%;
        width: 170px;
        font-size: 14px;
    }

    #toggleBtn {
        margin-top: 50px;
        margin-left: 8%;
        gap: 20px;
        font-size: 11px;
    }

    .video-overlay .video-textand {
        margin-left: 4%;
        gap: 8px;
    }
}

/* Breakpoint: 568px */
@media screen and (max-width: 568px) {

    /* Video banner responsive styles */
    .video-banner {
        height: 50vh;
    }

    .video-overlay {
        padding: 15px;
    }

    .video-overlay .video-text1 {
        margin-top: 10%;
        margin-left: 5%;
    }

    .video-overlay .video-text2 {
        margin-left: 5%;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .video-overlay .video-button {
        margin-left: 5%;
        width: 160px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    #toggleBtn {
        margin-top: 40px;
        margin-left: 5%;
        max-width: 200px;
        gap: 16px;
        font-size: 10px;
        padding: 3px 0;
    }

    .video-overlay .video-textand {
        margin-left: 3%;
        gap: 6px;
    }

    .video-overlay .video-textand .video-textand1 {
        letter-spacing: 1px;
    }

    .video-overlay .video-textand .video-textand2 {
        font-size: clamp(24px, 5vw, 60px);
    }
}