@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

 h1{
        font-size: 30px;
        color: #f4f9f4;
        text-align: center;
        padding: 5px 20px;
        background: #000000;
        text-align: left;
    }



header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: 0.5s;
    margin:auto;
    background-color: #006f72;
    
}
/* Sticky CodeK */
.stickyNav{
    padding: 15px 100px;
    background: #ffffff;
}

.stickyNav ul li a{
    color: #000000;
}
.logo { 
    position: relative;
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
  
     color: #ccff00; 
}
.logo span{
    color: #ff1803;
}
header ul{
    position: relative;
    display: flex;
      gap: 30px;
}
header ul li{
    list-style: none;
    
}
header ul li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: 0.5s;
    color: #fff;
    display: block;
    padding: 5px 5px;
     
  
}

header ul li:hover a{
    color: #fffefe; 
   
    background-color: rgb(0, 0, 0);
 
   
}
#hero{
   position: relative;
    background: #000707;
    width: 100%;
    min-height: 100vh;
    padding: 120px 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    }
#about{
    position: relative;
    background: #006f72;
    width: 100%;
    min-height: 100vh;
    padding: 120px 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#hero .secText{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#about .secText{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.secText h2{
    font-size: 45px;
    color: #fff;
    padding-bottom: 20px;
}
.secText p{
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}
/* Need to Make Responsive for all Devices */
@media screen and (max-width: 900px) {
    header{
        padding: 20px 50px;
    }
    .secText h2{
        font-size: 30px;
        line-height: 36px;
        text-align: center;
        padding-bottom: 30px;
    }
    #about{
        padding: 100px 50px;
    }
    .menuToggle{
        position: relative;
        width: 30px;
        height: 20px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menuToggle::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        transform: translateY(-10px);
        box-shadow: 0 10px #fff;
        transition: 0.5s;
    }
    .menuToggle::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        transform: translateY(10px);
        transition: 0.5s;
    }
    header.active .menuToggle::before{
        transform: translateY(0) rotate(45deg);
        box-shadow: 0 0 #fff;
    }
    header.active .menuToggle::after{
        transform: translateY(0) rotate(315deg);
    }
    header ul{
        display: none;
    }
    header.active ul{
        position: fixed;
        left: 0;
        top: 84px;
        width: 100%;
        height: calc(100vh - 84px);
        background: #036960fe;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 16px;
    }
    header.active ul a{
        font-size: 22px;
        transition: 0.5s;
    }
    .stickyNav .menuToggle::before{
        background: #000;
        box-shadow: 0 10px #000;
    }
    .stickyNav .menuToggle::after{
        background: #000;
    }
    .stickyNav ul.nav{
        top: 60px !important;
        height: calc(100vh - 60px);
    }
    .stickyNav  ul li a{
        color: #fff;
    }
    .stickyNav{
        padding: 5px 50px;
    }
}