html {
    box-sizing: border-box;
    font-size: 62.5%; /*making the base font size to 10px*/
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

/*Reset default body settings*/
body {
    margin: 0;
    border: none;
    outline: 0;
    padding: 0;
    background-color: red;
    overflow: hidden;
    overflow-y: scroll;
}
/*Reset of the button default styling*/
button, input[type="button"], input[type="submit"], input[type="reset"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    margin: 0;
    padding: 0;
    background: none;
    text-decoration: none;
    cursor: pointer;
}

/* Remove default styling of ul and li */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
    padding: 0;
}


/* Reset default styles for heading tags */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;       /* Remove top margin */
    margin-bottom: 0; /* Add a small bottom margin for spacing */
    font-weight: normal;  /* Reset font weight */
}

:root{

    --main-font-family: 'Montserrat', sans-serif;
    --secondary-font-family: 'Oswald', sans-serif;
    --heading-hover: #edbfff;
    --background: #0F0D0D;
    --border-color: #717171;
    --text-color: #3f3f3f;

}



/*cursor div*/

.cursor{
    height: 3rem;
    width: 3rem;
    background-color: #edbfff;
    position: fixed;
    border-radius: 50%;
    z-index: 100;
    mix-blend-mode: difference;
    transition: top linear 0.1s left linear 0.1s;
    pointer-events: none;  /* important to be set */
    opacity: 0;
    transition: opacity 0.3s ease;
}

body:hover .cursor{
    opacity: 1;
}

/* .cursor-info{
    border-radius: 0%;
} */


.main-container{
    background-color: #0f0d0d;

}

.page1,.page2,.page3,.page4{
    /* width: 100%; */
    min-height: 100vh;
    max-width: 100vw;
}

.page1{
    /* background-color: #0f0d0d; */
    color: white;
}


.page2{
    border-bottom: 1px solid #9ca3af;
}


.page4{
    /* background-color: red; */
    /* background-color:#0F0D0D; */
    /* background-color: white; */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0;
    padding: 0;
}

.navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.navbar-logo span{
    font-family: var(--secondary-font-family);
    font-weight: 500;
    font-size: 2.2rem;
}

.navbar-menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    height: auto;
    font-family: var(--main-font-family);
    cursor: pointer;
    font-size: 1.6rem;
}

.navbar-menu h4{
    font-weight: 400;
}

.navbar h4:nth-child(1){
    border-bottom: 1px solid white;
}


.circle{
    background-color: white;
    border-radius: 50%;
    height: 20px;
    width: 20px;
}



.heading1,.heading2{
    font-size: 12rem;
    font-family: var(--main-font-family);
    font-weight: 500;
    text-transform: capitalize;

}

.heading1{
    margin-top: 15rem;
    margin-left: 12rem;
}

.heading2{
    margin-left: 30rem;
}

.heading3{
    font-size: 12rem;
    font-family: var(--main-font-family);
    font-weight: 500;
    margin-top: 15rem; 
    margin-left: 10rem;  
}

.video-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.video1{
    width: 70%;
    margin-top: 20rem;
}

.page2_inner-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20rem;
    margin-bottom: 20rem;
    padding: 0 10rem;
    height: 100%;

}

    .left-container{
        line-height: 6rem;
        font-size: 7rem;
        text-transform: uppercase;
        font-family: var(--main-font-family);
        font-weight: 500;
        width: 45%;

    }

    .right-container{
        font-size: 2rem;
        font-family: var(--main-font-family);
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 100%;

    }

    .right-container p{
        margin: 0;
        padding: 0;
        outline: 0;
    }


button{
    text-transform: uppercase;
    font-family: var(--main-font-family);
    background-color: #edbffe ;
    padding: 0.5rem;
    width: 100%;

}

.page3_div1{
    display: flex;
    align-items: center;
}

.page3 img{
    object-fit: cover;
}


.card-container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
    background-color: red;
    /* margin: 5rem; */
}

.card_row{
    width: 100% ;
    height: 50%;
    background-color: bisque;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.card{
    background-color: #c4c4c4;
}

.card_video{
    width: 30%;
    height: 15%;
}

.card_image{
    width: 40%;
    height: 20%;
}

.page3{
    padding: 8rem;
}

.page3 img{
    width: 75rem;
    height: 40rem;
    object-fit: cover;
    margin-top: 20rem;
    object-position: center center;
}

.page3 video{
    width: 50rem;
    height: 30rem;
    object-fit: cover;
    margin-top: 11rem;
}


.page3_part1{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* gap: 20rem; */
}

/* .page4_inner-container{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--main-font-family);
    font-size: 8rem;
    color: white;

}
.page4_inner-continer_text-container{
    display: flex;
    flex-direction: column;

}

.page4_inner-container_text-container_text{
    width: auto;
    overflow: hidden;
    height: 20rem;
    transition: all ease 0.3s;
}


.page4_inner-container_text-container_text:hover{
    transform: translateY(-100%);
} */

/* .page4{
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* .text-container{
    font-size: 8rem;
    font-family: var(--main-font-family);
    
    background-color: black;
    color: white;

}

.inner-text{
    height: 20rem;
    width: auto;
    overflow: hidden;
    transition: all ease 0.2s;
}

.inner-text:hover h1{
    transform: translateY(-100%);
} */


/* ---------------------------------------------------------- page 4 code ------------------------------------------------------------------*/

.page4_container{
    /* background-color: red; */
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 4rem 0; */
}

.page4_text-container{
    /* background-color: green; */
    width: 40%;
}

.scrolling-text{
    position: relative;
    width: 100%;
    text-align: center;
    line-height: 15rem; /* to create separation between multiple lines of text */
    /* background-color: orange; */
    height: 15rem;
    overflow: hidden;
}

.text, .text-follow{
    position: absolute;
}

.text{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
}
.scrolling-text:hover .text{
    transform: translateY(-100%);
}

.text-follow{
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
}

.scrolling-text:hover .text-follow{
    transform: translateY(-100%);
    color: #edbfff;
}

span{
    display: block;
    font-size: 10rem;
    font-family: var(--main-font-family);
    color: white;
}

img{
    width: 60%; 
    transition: opacity 0.3s ease;
    filter: brightness(60%);
}


.image{
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.image-visible{
    visibility: visible;
    opacity: 1;
} 

/* .page4_image-container{
    position: relative;
    background-color: pink;
    height: 100%;
    width: 30%;
} */

/* .page4_image-container{
    background-color: pink;
} */

.image1{
    top: 50%;
    right: 10%;
    transform: translate(0,-50%);
}

.image2{
    bottom: 0;
    right: 0;
}

.image3{
    bottom: 0;
    right: 0;
}

.image5{
    right: 0;
    bottom: 0;

}

.image6{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

}


/*------------------------------------------------------- page 5 code ------------------------------------------------------------------------- */


    