* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins";
    color: white;
}

body {
    background: linear-gradient(35deg, #0f0a0a, 70%, red);
    height: 100vh;
    /* scroll-behavior: smooth; */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 100;
}

.header img {
    height: 50px;
    /* scale: 1; */
    transform: scale(1);
    filter: saturate(3);
    transition: .5s ease;
}

.header img:hover {
    filter: saturate(3);
    transform:scale(1.3);
}

.navbar a {
    text-decoration: none;
    color: #fff;
    margin-left: 35px;
    font-size: 19px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.navbar a::before {
    content: "";
    height: 100%;
    width: 100%;
    border-bottom: 2px solid #f00;
    position: absolute;
    left: 0;
    top: -100%;
    transition: .5s ease;
    opacity: 0;
    z-index: -1;
}

.navbar a:hover::before {
    top: 0;
    opacity: 1;
}
.navbar a.active{
    color: red;
}
.sticky{
    background: linear-gradient(35deg, #0f0a0a, 70%, red);
    border-bottom: 2px solid rgba(255, 255, 255, .2);
}
section {
    padding: 10rem 9% 2rem;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.text-content {
    max-width: 600px;
}

.text-content h2 {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 550;

}

.text-content span {
    font-size: 32px;
    color: #c90707;
}

.text-content p {
    font-size: 13px;
}

.button {
    margin: 20px 0;
}

.btn {
    height: 45px;
    width: 150px;
    background: transparent;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #f00;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    height: 300%;
    width: 100%;
    left: 0;
    top: -100%;
    background: linear-gradient(#0f0a0a, red,
            #0f0a0a,
            red);
            transition: .5s ease;
            z-index: -1;
}

.btn:hover:before {
    top: 0;
}

.home .imageSet1 img {
    height: 400px;
    position: absolute;
    transform: translateX(-150%);
    filter: drop-shadow(0 0 3px #f00);
    scale: 0;
    animation: PopUp 1s ease forwards,Bounce 4s ease infinite;
    animation-delay: 0s,4.5s;
}
@keyframes PopUp{
    0%{
        scale: 0;
    }
    100%{
        scale: 1;
    }
}
@keyframes Bounce{
    0%,100%{
        transform: translateY(0) translateX(-150%);
    }
    50%{
        transform: translateY(-8px) translateX(-150%);
    }
}
.imageSet1{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.imageSet1 img:nth-child(2){
    left: -110px;
    top: -190px;
    height: 360px;
    z-index: -2;
    scale: 0;
    animation-delay: 1.5s,4.8s;
}
.imageSet1 img:nth-child(3){
    left: 170px;
    z-index: -2;
    animation-delay: 2s,4.9s;
}
.imageSet1 img:nth-child(4){
    left: -70px;
    z-index: -1;
    animation-delay: .5s,4.6s;
}
.imageSet1 img:nth-child(5){
    left: 50px;
    top: -260px;
    z-index: -4;
    animation-delay: 2.5s,5s;
}
.imageSet1 img:nth-child(6){
    left: -40px;
    top: -260px;
    z-index: -3;
    animation-delay: 3.5s,5.2s;
}
.imageSet1 img:nth-child(7){
    left: -90px;
    top: -275px;
    z-index: -4;
    animation-delay: 3s,5.1s;
}
.imageSet1 img:nth-child(8){
    left: -150px;
    top: -280px;
    z-index: -5;
    animation-delay: 1s,4.7s;
}
.imageSet1 img:nth-child(9){
    left: 140px;
    top: -280px;
    z-index: -4;
    animation-delay: 4s,5.3s;
}
.imageSet1 img:nth-child(10){
    left: -10px;
    top: -370px;
    height: 500px;
    z-index: -6;
    animation-delay: 4.5s,5.4s;
}
.about{
    background: linear-gradient(35deg,#0f0a0a,70%,red);
}
.heading{
    text-align: center;
    font-size: 35px;
    font-weight: 500;
}
.heading span{
    color: #f00;
}
.content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content .text h2{
    font-size: 32px;
    text-align: left;
    font-weight: 550;
    opacity: 0;
}
section.start-animation .text h2{
    animation: rightslide 1s ease forwards;
    transform: translateX(120%);
    transform-origin: right;
}
@keyframes rightslide{
    0%{
        transform: translateX(120%);
        opacity: 0;
        filter: blur(2px);
    }
    100%{
        transform: translateX(0%);
        opacity: 1;
        filter: blur(0);
    }
}
.content .text h3{
    font-size:22px ;
    font-weight: 500;
    opacity: 0;
}
section.start-animation .text h3{
    animation: rightslide 1s ease forwards;
    animation-delay: .5s;
    transform: translateX(120%);
    transform-origin: right;
}
.content .text p{
    max-width: 700px;
    font-size: 14px;
    margin: 5px 0;
    opacity: 0;
}
section.start-animation .text p{
    animation: rightslide 1s ease forwards;
    animation-delay: 1s;
    transform: translateX(120%);
    transform-origin: right;
}
.content img{
    height: 500px;
    transform: translateX(-540px);

}
@keyframes leftslide{
    0%{
        transform: translateX(-540px);
        opacity: 0;
        /* filter: blur(2px); */
    }
    100%{
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }
}
section.start-animation .content img{
    animation: leftslide 1s ease forwards;
    opacity: 0;
    /* filter: blur(2); */
    animation-delay: .5s;
}
.Member{
    background: linear-gradient(35deg, #0f0a0a 0%, var(--dark-red) 100%);
   
}
.stream{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    background: linear-gradient(35deg, #0f0a0a 0%, red 100%);

}
.image-information img{
    height: 100px;
    transition: .5s ease;
}
.image-information:hover img{
    height: 170px;
}
.image-content{
    display: flex;
    justify-items:center ;
    align-items: center;
}
.image-content .image-information{
    height: 400px;
    width: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    margin-left: 35px;
}
.image-information p{
    font-size: 13px;
    margin: 30px 0;
}
/* .footer{
    background: #0f0a0a;
    display: flex;
    justify-content: center;
    padding: 32px 9%;
}
.footer p{
    font-size: 13px;
    text-align: center;
} */

/* Footer Styling */
.footer {
    background: #111;
    color: #fff;
    padding: 40px 9%;
    text-align: center;
    /* margin-top: 50px; */
    
        margin-top: 0;
        border-top: none;
        background: linear-gradient(35deg, #0f0a0a 0%, black 100%);
    
    
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f00;
}

.footer .quick-links ul {
    list-style: none;
    padding: 0;
}

.footer .quick-links ul li {
    margin-bottom: 10px;
}

.footer .quick-links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer .quick-links ul li a:hover {
    color: #f00;
}

.footer .social-media .icons a {
    margin-right: 15px;
}

.footer .social-media .icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer .social-media .icons img:hover {
    transform: scale(1.2);
}

.footer .newsletter input {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    width: 250px;
}

.footer .newsletter button {
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}

.footer .newsletter button:hover {
    background-color: #990000;
}

/* Copyright Text */
.copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}




.go-home-btn {
    position: fixed;
    bottom: 60px;
    right: 20px;
    padding: 5px 10px;
    font-size: 16px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 999;
    display: none;
}

  #goHomeBtn:hover {
    background-color: #990000;
  }
  

/* @media screen and (max-width: 700px) {
    
    .navbar {
        flex-direction: column;
    }

   
    .text-content h2 {
        font-size: 28px; 
    }

    .text-content span {
        font-size: 20px;
    }

    .text-content p {
        font-size: 12px;
    }

    
    .go-home-btn {
        display: block;
    }

    
    .home .imageSet1 img {
        height: 300px; 
    }

    
    .content .text h2 {
        font-size: 22px;
    }

    .content img {
        height: 300px; 
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer h3 {
        text-align: center;
    }
    .footer .newsletter input {
        width: 100%;
        margin-bottom: 10px;
    }
}

     */
     @media (max-width: 1024px) {
        .text-content h2 {
          font-size: 36px;
        }
      
        .navbar a {
          margin-left: 15px;
          font-size: 16px;
        }
      
        section {
          padding: 8rem 5% 2rem;
        }
      }
      
      @media (max-width: 768px) {
        .header {
          flex-direction: column;
          align-items: flex-start;
        }
      
        .navbar {
          flex-direction: column;
          align-items: flex-start;
        }
      
        .content {
          flex-direction: column;
          text-align: center;
        }
      
        .text-content h2 {
          font-size: 30px;
        }
      
        .btn {
          width: 100%;
          margin: 10px 0;
        }
      
        .imageSet1 {
          flex-direction: column;
          gap: 10px;
        }
      
        .imageSet1 img {
          position: static;
          animation: none;
          scale: 1;
          margin-bottom: 15px;
        }
      
        .image-content {
          flex-direction: column;
          align-items: center;
        }
      
        .footer-content {
          flex-direction: column;
          text-align: center;
        }
      
        .go-home-btn {
          bottom: 20px;
          right: 20px;
          display: block;
        }
      }
      
      @media (max-width: 480px) {
        .text-content h2 {
          font-size: 24px;
        }
      
        .text-content span {
          font-size: 18px;
        }
      
        .text-content p {
          font-size: 12px;
        }
      
        .footer .newsletter input {
          width: 100%;
        }
      
        .footer .newsletter button {
          width: 100%;
          margin: 10px 0 0 0;
        }
      }
      