@font-face {
    font-family: neu;
    src: url(./NeueHaasDisplayMediu.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(./NeueHaasDisplayLight.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 200;
    src: url(./NeueHaasDisplayRoman.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: neu;
}

html, body {
    height: 100%;
    width: 100%;
}

#main {
    /* background-color: #000; */
    position: relative;
    z-index: 10;
}

    /*================================
                PAGE 1
    ================================= */
#page1 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
    padding: 0 2vw;
}


nav {
    padding: 2vw 0;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    justify-content: space-between;
}

nav img {
    height: 6vw;

}

#nav-part2 {
    display: flex;
    align-items: center;
    gap: 1vw;
}

#nav-part2 h4 {
    padding: 10px 20px;
    border: 1px solid #0000003c;
    border-radius: 50px;
    font-weight: 500;
    color: #000000bb;
    transition: all ease 0.4s;
    position: relative;
    font-size: 18px;
    overflow: hidden;
}

#nav-part2 h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
}

#nav-part2 h4:hover::after {
    bottom: 0;
    border-radius: 0;
}

#nav-part2 h4 a {
    color: #000000bb;
    text-decoration: none;
    position: relative;
    z-index: 9;
}

#nav-part2 h4:hover a {
    color: #fff;
}

#nav-part3 {
    display: flex;
    gap: 20px;
}

#nav-part3 i {
    font-size: 2vw;
}

nav h3 {
    display: none;
}

@media (max-width: 768px) {
    #nav-part2 {
        display: none;
    }
    nav h3 {
        display: block;
    }
    nav img {
        height: 8vw;
    }
    #nav-part3 i {
        font-size: 4vw;
    }
}

#full-scr {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transition: top 0.4s ease;
    z-index: 99;
}


#center {
    height: 65vh;
    width: 100%;
    /* background-color: orange; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #0000003c;
    padding-bottom: 2.5vw;
}

#left h3 {
    width: 25vw;
    font-size: 1.8vw;
    line-height: 2vw;
}

#center h1 {
    font-size: 10vw;
    text-align: right;
    line-height: 8vw;
}

#page1 video {
    position: relative;
    border-radius: 30px;
    margin-top: 4vw;
    width: 100%;
}

@keyframes anime1 {
    from {
        transform: translate(55%, -3%);
    }

    to {
        transform: translate(0%, 10%);
    }
}

@keyframes anime2 {
    from {
        transform: translate(5%, -5%);
    }

    to {
        transform: translate(-20%, 30%);
    }
}



 /*================================
                PAGE 2
    ================================= */



#page2 {
    height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
    padding: 2.5vw 10.5vw;
    padding-bottom: 8vw;
    display: flex;
    align-items: center;
    border-top: 1px solid #333;
    justify-content: space-between;
}

#page2-left {
    height: 100%;
    width: 40%;
    /* background-color: #333; */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 3vw 0;
}

#page2-left p {
    font-size: 0.8vw;
}

#page2-left h5 {
    width: 75%;
    font-weight: 400;
    font-size: 1.1vw;
}


#page2-right {
    height: 100%;
    width: 50%;
    /* background-color: #333; */
}

.right-elem {
    position: relative;
    /* background-color: red; */
    padding-top: 2vw;
    padding-bottom: 5vw;
    border-bottom: 1px solid #333;
}

.right-elem h2 {
    font-size: 1.4vw;
    font-weight: 400;
}

.right-elem img {
    height: 7vw;
    width: 7vw;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    scale: 0;
}




 /*================================
                PAGE 3
    ================================= */




#page3 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 8vw 0;
    position: relative;
}

#moving-text {
    overflow-x: auto;
    white-space: nowrap;
}

#moving-text::-webkit-scrollbar {
    display: none;
}

.con {
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#moving-text h1 {
    font-size: 9vw;
    /* background-color: lightblue; */
    display: inline-block;
}

#gola {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: inline-block;
    background-color: #FE320A;
    margin: 1vw 2vw;
}

@keyframes move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

#page3-bottom {
    height: 80vh;
    width: 100%;
    /* background-color: aliceblue; */
    padding: 4.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

#page3-bottom h1 {
    font-size: 4vw;
    width: 60%;
    line-height: 4vw;
}

#bottom-part3 {
    width: 20%;
    /* background-color: aqua; */
}

#bottom-part3 img {
    width: 100%;
    border-radius: 15px;
}

#bottom-part3 p {
    font-weight: 200;
    margin-top: 2vw;
    font-size: 1vw;
}

#page3 #gooey {
    height: 32vw;
    width: 32vw;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to top right, #ff2d03, #ff5c0b);
    /* background: linear-gradient(to top right,red,blue); */
    top: 58%;
    left: 25%;
    filter: blur(20px);
    animation-name: gooey;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;

}

@keyframes gooey {
    from {
        filter: blur(20px);
        transform: translate(10%, -10%) skew(0);
    }

    to {
        filter: blur(30px);
        transform: translate(-10%, 10%) skew(-12deg);
    }
}


 /*================================
                PAGE 4
    ================================= */


    #page4 {
        min-height: 100vh;
        width: 100%;
        background-color: #EFEAE3;
        padding: 4vw 0;
    }
  
    .elem {
        height: 150px;
        width: 100%;
        position: relative;
        border-bottom: 1px solid #38383864;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 0 2vw;
    }
    
    .elem h2 {
        font-size: 3vw;
        position: relative;
        z-index: 9;
    }
    
    .elem .overlay {
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: orange;
        left: 0;
        top: -100%;
        transition: all ease 0.25s;
    }
    
    .elem:hover .overlay {
        top: 0;
    }
    
    #fixed-image {
        height: 30vw;
        width: 24vw;
        border-radius: 15px;
        position: fixed;
        z-index: 99;
        left: 50%;
        top: 25%;
        display: none;
        background-size: cover;
        background-position: center;
    }
 
  

 /*================================
                PAGE 5
    ================================= */




#page5 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 3vw;
    background-color: #EFEAE3;

}

#page5-top {
    /* background-color: red; */
    text-align: center;

}

#page5-top h4 {
    margin-bottom: 1vw;
    font-size: 1vw;
    font-weight: 500;
}

#page5-top h4 span {
    font-size: 0.7vw;
    background-color: #000;
    color: #fff;
    padding: 4px 10px;
    border-radius: 10px;
}

#page5-top h2 {
    font-size: 4vw;
    font-weight: 500;
}

#page5-elements {
    height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 8vw;
    /* background-color: red; */


}

#page5-elements .box {
    height: 100%;
    width: 32.5%;
    /* background-color: blue; */
    position: relative;
    border-radius: 5px;

}

#page5-elements .box video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
}

#page5-elements .box img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all linear 0.7s;
    border-radius: 2px;
}

#page5-elements .box:hover img {
    opacity: 0;
}




 /*================================
                PAGE 6
    ================================= */


/* Base Styles */
body {
   
    overflow-x: hidden;
    background-color: #EFEAE3;
    color: #333;
}

#main6 {
    width: 100%;
    position: relative;
    padding: 5vw 10.5vw;
    display: flex;
    align-items: center;
    border-top: 1px solid #ccc;
    justify-content: space-between;
    /* background: linear-gradient(135deg, #ececec 0%, #f5f5f5 100%); */
    flex-wrap: wrap;
}

.main6-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2vw 0;
}

.main6-left h2 {
    font-weight: 700;
    font-size: 2.5vw;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    position: relative;
    padding-left: 1vw;
    border-left: 3px solid #333;
}

.main6-right {
    width: 55%;
    padding: 3vw;
    margin: 2vw 0;
    background-color: #ffffff;
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.main6-right h3 {
    font-weight: 500;
    color: #555;
    font-size: 2.5vw;
    margin: 0;
}

.main6-right p {
    margin-top: 1.5vw;
    color: #444;
    font-size: 1vw;
    line-height: 1.8;
    font-weight: 800;
}

.allcontents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2vw 5%;
    /* background-color: #fff; */
    background-color: #EFEAE3;
    border-top: 1px solid #ccc;
}

.boxd {
    background-color: #fafafa;
    padding: 3vw;
    margin: 2vw;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boxd:hover {
    transform: translateY(-50px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.boxd h1 {
    font-weight: 700;
    font-size: 2.5vw;
    margin: 0;
    color: #333;
}

.boxd h4 {
    font-weight: 400;
    font-size: 1.2vw;
    margin: 0.5vw 0 0;
    color: #666;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .main6-left, .main6-right {
        width: 100%;
        text-align: center;
    }

    .main6-left h2, .main6-right h3, .main6-right p {
        font-size: 4vw;
    }
    
    .main6-left h2 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #main6 {
        padding: 5vw 5vw;
    }

    .main6-left h2, .main6-right h3, .main6-right p {
        font-size: 5vw;
    }

    .allcontents {
        padding: 4vw 3%;
    }

    .boxd {
        width: 45%;
    }
}

@media (max-width: 480px) {
    #main6 {
        flex-direction: column;
        padding: 5vw 3vw;
    }

    .main6-left, .main6-right {
        width: 100%;
        padding: 0;
    }

    .main6-left h2, .main6-right h3, .main6-right p {
        font-size: 6vw;
    }

    .allcontents {
        flex-direction: column;
        padding: 4vw 2%;
    }

    .boxd {
        width: 90%;
        margin: 2vw 0;
    }
}


/* -===============================================
                 PAGE 7
===============================================  */

#page7 {
    height: 100vh;
    width: 110%;
    padding: 10vw 2vw;
    background-color: #EFEAE3;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    border-radius: 3px;
    width: 50%; /* Increased width for larger images */
    border-left: 1px solid #aeadad;
    padding: 0 2vw;
    opacity: 0; /* Initially hide the slides for animation */
    transform: translateY(50px); /* Initial position for animation */
    transition: opacity 0.5s, transform 0.5s; /* Smooth transition for animation */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
    width: 100%;
    height: 77vh; /* Increase the height of the images */
    object-fit: cover; /* Ensure the images cover the container without distortion */
    display: block;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.swiper-slide img:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        width: 100%;
        padding: 0 1vw;
    }
}


/* -===============================================
                 PAGE 8
===============================================  */



#page8 {
    min-height: 100vh;
    width: 100%;
    border-top: .5px solid #cac6c6;
    /* background-color: #111; */
    background-color: #EFEAE3;
    padding: 10vh 10vw;
}

#page8 > h1 {
    font-size: 5.5vw;
    color: #000;
    /* background-color: red; */
    padding-left: 25vw;
    padding-right: 5vw;
    line-height: 5.8vw;
    padding-bottom: 10vh;
    border-bottom: 1px solid #dadada;
}

#page8-content {
    /* background-color: red; */
    color: #000;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8vh 0;
}

#page8-content #right-8 {
    width: 70%;
}

#page8-content #right-8 p {
    font-size: 1.5vw;
    color: #434343;
    margin-bottom: 5vh;
    width: 80%;
}

#blue-btn {
    color: #fff;
    background-color: #4f5bff;
    width: 18vw;
    height: 3.5vw;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 1vw; 
    transition: background-color 0.3s ease;
}

#blue-btn:hover {
    background-color: #3c47d9; /* Darker shade on hover */
}

#blue-btn h4 {
    font-weight: 300;
    font-size: 0.85vw;
    display: flex;
    align-items: center;
    margin: 0; /* Removed default margin */
}

#blue-btn h4 i {
    font-size: 1.1vw;
    font-weight: 100;
    margin-left: 0.5vw;
}

#page8-bottom {
    height: 44vh;
    width: 100%;
    /* background-color: red; */
    border-top: 1px solid #dadada;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* background-color: rgb(48, 48, 48); */
    /* color: #000; */
}

#btm8-part1 {
    border-right: 1px solid #dadada;
    width: 30%;
    /* background-color: red; */
    height: 100%;
}

#btm8-part2 {
    border-right: 1px solid #dadada;
    width: 28%;
    /* background-color: red; */
    height: 100%;
}

#btm8-part3 {
    border-right: 1px solid #dadada;
    width: 15%;
    /* background-color: red; */
    height: 100%;
}

#btm8-part4 {
    border-right: 1px solid #dadada;
    width: 15%;
    /* background-color: red; */
    height: 100%;
}

#btm8-part5 {

    width: 15%;
    /* background-color: red; */
    height: 100%;
}

.btm8-parts {
    padding: 3vh 0.6vw;
}

.btm8-parts h5 {
    /* color: #000; */
    font-weight: 500;
    font-size: 0.9vw;
    margin-bottom: 4vh;
}

.btm8-parts h4 {
    background-color: #111;
    color: #fff;
    width: 75%;
    padding: 5px 10px;
    margin-bottom: 0.3vh;
    border-radius: 50px;
    font-size: 0.85vw;
    display: flex;
    align-items: center;
    font-weight: 500;

}

.btm8-parts h4 span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5vw;
    height: 1.5vw;
    background-color: #333;
    color: #fff;
    padding: 0.5vw;
    border-radius: 50%;
    margin-right: 1vw;
}
#btm8-part2 h4:nth-child(2){
    transform: translateX(0);
}
#btm8-part2 h4:nth-child(3){
    transform: translateX(10%);
}
#btm8-part2 h4:nth-child(4){
    transform: translateX(20%);
}
#btm8-part2 h4:nth-child(5){
    transform: translateX(30%);
}
#btm8-part2 h4:nth-child(6){
    transform: translateX(40%);
}
#btm8-part2 h4:nth-child(7){
    transform: translateX(50%);
}




/* -===============================================
                 PAGE 9
===============================================  */



#page9 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
    padding-bottom: 13vh;
}

.section9 {
    width: 100%;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13vh 10vw;
    padding-bottom: 0;
}

.sec-left9 {
    height: 100%;
    width: 25%;
    padding-top: 3vh;
    border-top: 2px solid #000;
}

.sec-left9 h2 {
    font-size: 2.1vw;
    font-weight: 500;
    color: #000;
}

.sec-left9 p {
    color: #000;
    margin-top: 10vh;
    font-size: 1.2vw;
}

.sec-right9 {
    height: 100%;
    width: 70%;
    background-color: blanchedalmond;
    position: relative;
}

.sec-right9 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.sec-right9 video {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sec-right9:hover img {
    opacity: 0;
}

.sec-right9:hover video {
    opacity: 1;
}




/* -===============================================
                 PAGE 10 footer
===============================================  */

footer{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: #000000ff;
    color: #fff;
    width: 100%;
    min-height: 350px;
    padding: 3rem 1rem;

}
.container{
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.col{
    min-width: 250px;
    color: #f2f2f2f2;
    font-family: popins;
    padding: 0 2rem;

}
.col .logo{
    width: 100px;
    margin-bottom: 25px;
}
.col h3{
    color: #ff014fff;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.col h3::after{
    content: '';
    height: 3px;
    width: 0;
    background-color: #ff014fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;

}
.col h3:hover::after{
    width: 30px;
}

.col .social a{ 
    text-decoration: none;
}

.col .social a i{
    color: #ff014fff;
    margin-top: 2vw;
    margin-right: 5px;
    transition: 0.3 ease;

}
.col .social  i{
    font-size: 2vw;
     
}


.col .social a i:hover{
    transform: scale(1.5);
    filter: grayscale(50);
}

/* hower effers */
.col .social  a.fb:hover {
    background-color: #4267B2;
    transition: 0.5s;
}
.col .social a.tw:hover {
    background-color: #009dff;
    transition: 0.5s;
}

.col.social  a.insta:hover {
    background-color: #C13584;
    transition: 0.5s;
}

.col .social  a.youtube:hover {
    background-color: #FF0000;
    transition: 0.5s;
}
.col.social  a:hover {
    color: white;
    transition: 0.5s;
}


.col .links a{
    display: block;
    text-decoration: none;
    color: #fffffff2;
    margin-bottom: 10px;
    position: relative;
    transition: 0.3s ease;

}

.col .links a::before{
content: '';
height: 16px;
width: 3px;
position: absolute;
top: 5px;
left: -10px;
background-color: #ff014fff;
transition: 0.5 ease;
opacity: 0;
}
.col .links a:hover::before{
    opacity: 1;

}
.col .contact-details{
    display: inline-block;
    justify-content: space-between;

}

.col .contact-details{
    margin-right: 15px;

}

.row{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.row .form input{
    background-color: #fff;
    border: 0;
    outline: none;
    padding: 14px 20px;
    border-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.icon-btn i {
    font-size: 20px;
    color: #222;
}

.icon-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

.icon-btn:hover i {
    color: #fff;
}


.form button{
    padding: 14px 20px;
    border: 0;
    border-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #ff014fff;

}

footer .copyright {
    width: 100%;
    text-align: center;

}
@media(max-width:900px){
    .row{
        flex-direction: column;

    }
    .col{
        width: 100%;
        text-align: left;
        margin-bottom: 25px;
    }
}
@media(max-width:768px){
    .row{
        flex-direction: column;

    }
    .col{
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }
}


#loader{
    height: 100%;
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 999;
    top: 0;
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader h1{
    font-size: 4vw;
    color: transparent;
    background: linear-gradient(to right,orange,orangered);
    background-clip: text;
    -webkit-background-clip: text;
    position: absolute;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: linear;
}
#loader h1:nth-child(2){
    animation-delay: 2s;
}
#loader h1:nth-child(3){
    animation-delay: 3s;
}

@keyframes load {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@media (max-width:600px) {
    #loader h1{
        font-size: 9vw;
      
    }
}
