* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

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

#main {
    position: relative;
    z-index: 10;
}

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

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

nav h3{
    display: none;
}

nav img{
    height: 9vh;
}

#nav-elem{
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

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

#nav-elem h4 a{
    text-decoration: none;
    color: #000;
    position: relative;
    z-index: 9;
}

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

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

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

#center{
    height: 63vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #0000003c;
    padding-bottom: 2vw;
}

#left h3{
    width: 30vw;
    font-size: 1.8vw;
    font-weight: 500;
}

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

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

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

#hero1 {
    height: 100%;
    width: 100%;
    background-color: #fe320a;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(20px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

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

#hero3 {
    height: 30vw;
    width: 30vw;
    background: linear-gradient(#fe320a,#e93e1c);
    border-radius: 50%;
    filter: blur(10px);
    position: absolute;
    animation-name: anime1;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    z-index: 3;
}


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

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

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

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

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

#moving-text h1{
    font-size: 5vw;
    display: inline-block;
}

.con{
    white-space: nowrap;
    display: inline-block;
    animation: move 15s linear 0s infinite normal forwards;
}

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

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

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

#page2-bottom{
    width: 100%;
    height: 80vh;
    background-color: #efeae3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4vw;
    margin-top: 3vw;
    position: relative;
}

#page2-bottom h1{
    font-size: 3.4vw;
    width: 55%;
    line-height: 4vw;
    z-index: 9;
}


#page2-bottom2 {
    width: 30%;
    z-index: 9;
}

#page2-bottom2 img {
    width: 100%;
    border-radius: 15px;
}

#page2-bottom2 p {
    font-weight: 300;
    margin-top: 2vw;
    font-size: 1.2vw;
}

#page2 #gooey{
    height: 30vw;
    width: 30vw;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to top right, #ff2d03, #ff850b);
    top: 40%;
    left: 20%;
    filter: blur(20px);
    z-index: 1;
    animation-name: gooey;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 7s;
    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(-10deg);
    }
}

#page3{
    min-height: 100vh;
    width: 100%;
    background-color: #efeae3;
    padding: 0vw 0;
}

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


.elem h2 {
  font-size: 2.5vw;
  line-height: 1; 
  max-height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
}


.elem .overlay{
    height: 100%;
    width: 100%;
    background-color: orange;
    position: absolute;
    left: 0;
    top: -100%;
}

.elem:hover .overlay{
    top: 0;
    transition: all ease 0.5s;
}

#fixed-image{
    height: 28vw;
    width: 22vw;
    position: fixed;
    border-radius: 10px;
    z-index: 99;
    left: 50%;
    top: 27%;
    display: none;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

#page4 {
  width: 100%;
  background-color: #efeae3;
  padding: 10vw 4vw;
  overflow: hidden;
}

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

.swiper-wrapper {
  align-items: flex-start;
}

.swiper-slide {
  width: 320px; /* keep consistent */
  height: auto;
  border-left: 1px solid #aeadad;
  padding: 1.5vw;
  transition: transform 0.4s ease;
  background-color: #efeae3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  box-sizing: border-box;
}

.swiper-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.swiper-slide h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.swiper-slide p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #222;
}

.brand-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}


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

#footer {
  width: 100%;
  height: 100vh;
  background-color: #000;
  color: #fff;
  position: fixed;
  bottom: 0;
  z-index: 9;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1vw 2vw;
  overflow: hidden;
}

#footer h1 {
  font-size: 20vw;
  z-index: 10;
  position: relative;
}

#footer-div {
  height: 20vh;
  width: 100%;
  display: flex;
}

#footer-bottom {
  border-top: 1px solid #dadada;
  height: 10vh;
  width: 100%;
}

#zero {
  width: 100%;
  height: 20vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  mix-blend-mode: screen;
}

#zero1, #zero2, #zero3 {
  filter: blur(25px);
  opacity: 0.75;
  transform-origin: bottom center;
}

#zero1 {
  background-color: red;
  height: 100%;
  width: 100%;
  position: absolute;
  filter: blur(20px);
  top: 0;
  left: 0;
  z-index: 1;
  animation: waveBase 5.5s infinite ease-in-out;
}

#zero2 {
  background: rgba(242, 35, 35, 0.799);
  height: 20vw;
  width: 28vw;
  border-radius: 50%;
  position: absolute;
  filter: blur(55px);
  top: 10%;
  left: 20%;
  z-index: 2;
  animation: waveBlob1 4s infinite ease-in-out;
}

#zero3 {
  background: rgba(242, 35, 35, 0.799);
  height: 20vw;
  width: 28vw;
  border-radius: 50%;
  position: absolute;
  filter: blur(50px);
  top: 10%;
  left: 50%;
  z-index: 3;
  animation: waveBlob2 5s infinite ease-in-out;
}

@keyframes waveBase {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50%      { transform: translateY(-20px) scaleY(0.9); }
}

@keyframes waveBlob1 {
  0%   { transform: translateY(0) scaleY(1); }
  25%  { transform: translateY(-15px) scaleY(0.95); }
  50%  { transform: translateY(-30px) scaleY(0.85); }
  75%  { transform: translateY(-15px) scaleY(0.95); }
  100% { transform: translateY(0) scaleY(1); }
}

@keyframes waveBlob2 {
  0%   { transform: translateY(0) scaleY(1); }
  25%  { transform: translateY(-10px) scaleY(0.96); }
  50%  { transform: translateY(-25px) scaleY(0.86); }
  75%  { transform: translateY(-10px) scaleY(0.96); }
  100% { transform: translateY(0) scaleY(1); }
}

.footer-content {
  z-index: 10;
  position: relative;
  padding: 1vw 2vw;
  max-width: 600px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content h2 {
  font-size: 2vw;
  margin: 0;
  color: #f9f9f9;
}

.footer-content p {
  font-size: 1vw;
  color: #ccc;
  margin: 0.5vw 0;
}

#full-scr {
    display: none;
}

@media (max-width: 600px) {

  /* ───────────── NAVIGATION ───────────── */
  nav {
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 6vw 2vw;
    position: relative;
    z-index: 120;
  }

  nav h3 {
    touch-action: manipulation;
    width: 70px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #000;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5vw;
    font-weight: 600;
    cursor: pointer;
    z-index: 120;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  #nav-elem {
    display: none;
  }

  /* ───────────── CENTER SECTION ───────────── */
  #center {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-bottom: 6vw;
    padding-top: 10vw;
    gap: 6vw;
  }

  #left h3 {
    width: 90vw;
    font-size: 4.2vw;
  }

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

  /* ───────────── HERO SECTION ───────────── */
  #page1 video {
    margin-top: 6vw;
    border-radius: 10px;
  }

  #hero {
    width: 90vw;
    height: 90vw;
    bottom: -20vw;
    top: 50;
    right: 0;
  }

  #hero1,
  #hero2,
  #hero3 {
    width: 60vw;
    height: 60vw;
  }

  /* ───────────── MOVING TEXT ───────────── */
  #moving-text h1 {
    font-size: 8vw;
  }

  /* ───────────── PAGE 2 CONTENT ───────────── */
  #page2-bottom {
    padding: 4vw;
  }

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

  #page2-bottom2 {
    width: 100%;
  }

  #page2-bottom2 img {
    width: 100%;
    border-radius: 10px;
  }

  #page2-bottom2 p {
    font-weight: 200;
    margin-top: 2vw;
    font-size: 3vw;
  }

  /* Gooey blob */
  #page2 #gooey {
    height: 62vw;
    width: 62vw;
    position: absolute;
    top: 58%;
    left: 25%;
    border-radius: 50%;
    background: linear-gradient(to top right, #ff2d03, #ff5c0b);
    filter: blur(20px);
    animation: gooey 6s ease-in-out infinite alternate;
    z-index: 1;
  }

  /* ───────────── PAGE 3 ───────────── */
  #page3 {
    padding: 10vw 0;
  }

  .elem {
    height: 100px;
    padding: 0 6vw;
  }

  .elem h2 {
    font-size: 4.5vw;
  }

  .elem:hover .overlay {
    top: 0;
    transition: all 0.5s ease;
  }

  #fixed-image {
    height: 40vw;
    width: 27vw;
    position: fixed;
    top: 50%;
    left: 60%;
    touch-action: none; /* Prevent touch interference */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
  }

  /* ───────────── PAGE 4 ───────────── */
  #page4 {
    padding: 15vw 4vw;
  }

  /* ───────────── MENU (Fullscreen Overlay) ───────────── */
  #full-scr {
    height: 45vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: top 0.6s ease-in-out;
  }

  #full-div1 {
    height: 100%;
    width: 100%;
    background-color: #EFEAE3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 8vw;
    gap: 3vw;
  }

  #full-div1 h4 a {
    text-decoration: none;
    color: #000;
    font-size: 6vw;
    font-weight: 600;
    padding-left: 2vw;
    transition: color 0.3s ease;
    display: block;
  }

  #gola {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #fe320a;
    display: inline-block;
    margin: 0 2vw;
  }

  /* ───────────── FOOTER ───────────── */
  #footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    padding-top: 50vw;
  }

  #footer h1 {
    font-size: 21vw;
    text-align: center;
  }

  .footer-content {
    padding: 1vw 2vw;
    width: 100%;
  }

  .footer-content h2 {
    font-size: 5vw;
    text-align: center;
  }

  .footer-content p {
    font-size: 3.5vw;
    text-align: center;
  }

  /* ───────────── ZERO BACKGROUND WAVES ───────────── */
  #zero {
    height: 40vw;
  }

  #zero1,
  #zero2,
  #zero3 {
    filter: blur(45px);
    opacity: 0.75;
    transform-origin: bottom center;
  }

  #zero1 {
    background-color: red;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: blur(20px);
    animation: waveBase 5.5s infinite ease-in-out;
  }

  #zero2,
  #zero3 {
    background: rgba(242, 35, 35, 0.799);
    height: 30vw;
    width: 28vw;
    border-radius: 50%;
    position: absolute;
    filter: blur(55px);
    top: 10%;
    z-index: 2;
    animation: waveBlob1 4s infinite ease-in-out;
  }

  #zero2 {
    left: 20%;
  }

  #zero3 {
    left: 50%;
    animation: waveBlob2 5s infinite ease-in-out;
  }

}

#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);
    -webkit-background-clip: text;
    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;
      
    }
}
