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

html, body {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}
#main{
    position: relative;
    z-index: 10;
}


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

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

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

#nav-part2 h4 {
    padding: 10px 20px;
    border: 1px solid #8a8a8a89;
    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 h3{
    display: none;
}

#center {
    height: 65vh;
    width: 100%;
    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;
    z-index: 9999;
    border-radius: 30px;
    margin-top: 4vw;
    width: 100%;
}

.video-class {
    position: relative;
    z-index: 9;
    width: 92%;
    margin: 0 auto;
    text-align: center;
    display: block;
}

#hero-shape {
    position: absolute;
    z-index: 1;
    width: 46vw;
    height: 36vw;
    right: 0;
    top: 65vh;
}

#hero1 {
    background-color: #FE320A;
    width: 100%;
    height: 100%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(15px);
    position: absolute;
}

#hero2 {
    background: linear-gradient(#FE320A, #fe3f0a);
    height: 30vw;
    position: absolute;
    width: 30vw;
    border-radius: 50%;
    animation-name: anime2;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    filter: blur(25px);
}

#hero3 {
    background: linear-gradient(#FE320A, #fe3f0a); 
    height: 30vw;
    position: absolute;
    width: 30vw;
    border-radius: 50%;
    filter: blur(25px);
    animation-name: anime1;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

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

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

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

.moving-text {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: hidden; /* hide scrollbar */
    white-space: nowrap; /* keep in one line */
}

.con {
    display: flex; /* keep flex */
    align-items: center;
    gap: 20px;
    animation-name: move;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    white-space: nowrap;
}

@keyframes move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* try -50% for smoother loop */
    }
}

.moving-text h1 {
    font-size: 9vw;
    margin: 0;
}

.gola {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #FE320A;
    margin: 1vw 2vw;
}


@keyframes move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

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

#page2-bottom h1 {
    font-size: 4vw;
    width: 50%;
    line-height: 4vw;
    bottom:0 ;
    
}

#bottom-part2 {
    width: 20%;
}

#bottom-part2 img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

#bottom-part2 p {
    font-weight: 100;
    margin-top: 2vw;
    font-size: 1vw;
    display: block;
}

.page2 #gooey {
    height: 30vw;
    width: 30vw;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to top right, #FE320A, #ff671b);
    top: 45%;
    left: 20%;
    filter: blur(20px);
    z-index: 0;
    animation-name: gooey;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

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

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

.elem {
    height: 150px;
    width: 100%;
    position: relative;
    /* border-top: 1px solid black; */
    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 {
    height: 100%;
    width: 100%;
    background-color: orange;
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.2s;
}

.elem:hover #overlay {
    top: 0;
}

#fixed-image {
    height: 30vw;
    width: 24vw;
    /* background-color: red; */
    border-radius: 10px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 30%;
    display: none;
    background-size: cover;
    background-position: center;
}
#page4{
    height: 70vh;
    width: 100%;
    background-color: #EFEAE3;
    padding:10vw 2vw;
}
.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      /* background:#EFEAE3; */
      width: 30%;
      border-left: 1px solid #707070;
      padding: 0 2vw;
    }
    .swiper-slide p{
        font-size: 1vw;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
    }
    .swiper-slide img{
        display: block;
        width: 70%;
        left: 0;
        top:0
        /* max-height: 200px; */
        /* object-fit: cover; */
        /* margin-bottom: 10px; */
    }

     
    
#page5{
    height: 100vh;
    width: 100%;

}
#footer{
    position: fixed;
    height: 105vh;
    width: 100%;
    background-color: black;
    color: #fff;
    z-index: 9;
    bottom: 0;
    display: flex;
    /* align-items: flex-end; */
    justify-content: flex-end;
    flex-direction: column;
    padding: 1vw 3vw;
}
#footer h1{
    font-size: 23vw;
}
#footer-div{
    height: 25vh;
    width: 100%;
    background-color: red;
}
#footer-div h3{
    text-align: center;
    font-size: 22px;
    font-family: Arial,sans-serif;
    padding: 12px 0;
     letter-spacing: 1px; 
    margin-bottom: 24px;
    font-weight: bold;
    left: 20%;
}
#footer-bottom{
    border-top: 1px solid #dadada;
    height: 10vh;
    width: 100%;
}


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

#loader h1{
    color: transparent;
    font-size: clamp(1.25rem,4vw,3.5rem);
    background:linear-gradient(to right,orange,orangered);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    margin: 2vw 0;
    text-align: center;
    justify-content: center;
    opacity: 0;
     animation-name: load;
    animation-duration: 1.1s;
    animation-delay: 1s ;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

#loader h1:nth-child(1){
   animation-delay: 0s;
}
#loader h1:nth-child(2){
   animation-delay: 2s;
}

#loader h1:nth-child(3){
   animation-delay: 3.6s;
}



@keyframes load{
    0%{
     opacity: 0;
    }
    10%{
      opacity: 1;
    }
    90%{
      opacity: 1;
    }
    100%{
      opacity: 0;
    }
}
 .hamburger-btn{
    display: none;
 } 
 #humburger-icon{
    display: none;
} 
 #full-screen-menu {
    display: none;
} 
/* .menu-items{
    display: none;
} */
 
@media (max-width:600px) {
    /* #loader h1{
        font-size: clamp(1rem,7vw,2rem);
        margin: 1vw 0;
    } */
    #center {
    height: 62vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #0000003c;
    padding-bottom: 10vw;
    flex-direction: column-reverse;
    padding: 7vw 5vw;
    position: relative;
    z-index: 9;

}

#left h3 {
    width: 80%;
    font-size: 5.5vw;
    line-height: 6vw;
}

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

#page1 video {
    position: relative;
    z-index: 9999;
    border-radius: 15px;
    margin-top: 4vw;
    height: 70vh;
    object-fit: cover;
    object-position: center;
    width: 92%;
    margin-left: 4%;
}

.video-class {
    position: relative;
    z-index: 9;
    width: 92%;
    margin: 0 auto;
    text-align: center;
    display: block;
}

#hero-shape {
    position: absolute;
    z-index: 1;
    width: 82vw;
    height: 76vw;
    right: 0;
    top: 65vh;
}
#page2-bottom {
    height: 80vh;
    width: 100%;
    /* background-color: #EFEAE3; */
    padding: 4.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 90;
} 

#page2-bottom h1 {
    font-size: 6vw;
    width: 50%;
    line-height: 6vw;
    
}

#bottom-part2 {
    width: 20%;
}

#bottom-part2 img {
    width: 80px;
    height: auto;
    border-radius: 15px;
    transform: scaleX();
    top: 20%;
    display: none;
}

#bottom-part2 p {
    font-weight: 100;
    margin-top: 2vw;
    font-size: 2vw;
    line-height: 1vw;
    display: none;
}

.page2 #gooey {
    height: 50vw;
    width: 40vw;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to top right, #FE320A, #ff671b);
    top: 45%;
    left: 20%;
    filter: blur(20px);
    z-index: 0;
    animation-name: gooey;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}
#footer{
    position: fixed;
    height: 105vh;
    width: 100%;
    background-color: black;
    color: #fff;
    z-index: 9;
    bottom: 0;
    display: flex;
    /* align-items: flex-end; */
    justify-content: flex-end;
    flex-direction: column;
    padding: 1vw 3vw;
}
#footer h1{
    font-size: 22vw;
}
#footer-div{
    height: 30vh;
    width: 100%;
    background-color: red;
}
#footer-div h3{
    text-align: center;
    justify-content: center;
    font-size: 22px;
    font-family: Arial,sans-serif;
    padding: 12px 0;
     letter-spacing: 1px; 
    margin-bottom: 24px;
    font-weight: bold;
    left: 10%;
}
#footer-bottom{
    border-top: 1px solid #dadada;
    height: 10vh;
    width: 100%;
}
#loader{
    height: 100%;
    width: 100%;
    background-color: black;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    transition: all ease 0.7s;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
#loader.hide{
    top: -100%;
}

#loader h1{
    color: transparent;
    font-size: clamp(1.25rem,4vw,3.5rem);
    background:linear-gradient(to right,orange,orangered);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    margin: 3vw 0;
    padding: 5vw ;
    text-align: center;
    justify-content: center;
    opacity: 0;
     animation-name: load;
    animation-duration: 1.1s;
    animation-delay: 1s ;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

#loader h1:nth-child(1){
   animation-delay: 0s;
}
#loader h1:nth-child(2){
   animation-delay: 2s;
}

#loader h1:nth-child(3){
   animation-delay: 3.6s;
}
.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      /* background:#EFEAE3; */
      width: 30%;
      border-left: 1px solid #707070;
      padding: 0 2vw;
    }
    .swiper-slide p{
        font-size: 5vw;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
    }
    .swiper-slide img{
        display: block;
        width: 100%;
        left: 0;
        top:0
}
#page3 {
    min-height:  100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
    padding: 4vw 0;
}

.elem {
    height: 100px;
    width: 100%;
    position: relative;
    /* border-top: 1px solid black; */
    border-bottom: 1px solid #38383864;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 2vw;
}

.elem h2 {
    font-size: 5vw;
    position: relative;
    z-index: 9;
}

.elem #overlay {
    height: 100%;
    width: 100%;
    background-color: orange;
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.2s;
}

.elem:hover #overlay {
    top: 0;
}

#fixed-image {
    height: 30vw;
    width: 24vw;
    /* background-color: red; */
    border-radius: 10px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 25%;
    display: none;
    background-size: cover;
    background-position: center;
}
#page1 {
   min-height: 100vh; 
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
    padding: 0 0vw;
}

nav {
    padding: 8vw 5vw;
    background-color: #EFEAE3;
    /* padding: 0 5vw; */
   
}
nav img{
    height: 9vh;
    transition: all ease 0.2s;
}
 
#nav-part2 {
    
    display: none;
} 
nav h3{
    display: block;
    padding: 3vw 5vw;
    border: 1px solid #ababab;
    border-radius: 50px;
    font-size: 4vw;
    font-weight: 200;
    padding-left: 10vw;
    position: relative;
    cursor: pointer;
    z-index: 200;
}
body {
  margin: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

/* Hamburger icon */
.hamburger-btn {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 100;
  background: none;
  border: none;
  padding: 0;
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  /* display: block; */
}

.hamburger-btn .line {
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
  /* display: block; */
}

/* Animate to 'X' */
.hamburger-btn.is-active .top-line {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-btn.is-active .middle-line {
  opacity: 0;
}
.hamburger-btn.is-active .bottom-line {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Full-screen overlay menu */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  
}

/* Visible when active */
.overlay-menu.active {
  visibility: visible;
  opacity: 1;
  display: block;
}

.menu-items {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* display: none; */

}

.menu-items a {
  text-decoration: none;
  color: #000;
  font-size: 2rem;
  transition: color 0.3s ease;
  /* display: block; */
}

.menu-items a:hover {
  color: #ff6600;
  /* display: block; */
}
  #full-screen-menu {
    display: block;
} 



}
