:root{
    --accent:hsl(152, 87%, 44%);
    --light-accent:hsl(152, 87%, 64%);
    --extralight-accent:hsl(152, 87%, 84%);
    --softgrey:hsl(220, 13%, 91%);
    --extra-softgrey:hsl(220, 13%, 94%);


    --dark-grey:#1F2937;
    --extra-darkgrey:hsl(215, 28%, 2%);


}

*{
    margin: 0px ;
    padding: 0px ;
    
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: black;
  word-wrap: break-word;
  overflow-wrap: break-word;
  
}

h1{font-size: 3rem;line-height: 1.1;margin-bottom: 16px;}

h2{
    font-size:2.75rem;line-height: 1.1;margin-bottom: 16px;color: black;
}
h3{font-size: 2rem;margin-bottom: 16px;}
h4{font-size: 1.75rem;margin-bottom: 16px;}
h5{font-size: 1rem;margin-bottom: 16px;}
h6{font-size: 1rem;margin-bottom: 16px;}
nav{font-size: 1rem;}

p{font-size: 1rem;margin-bottom: 16px;color: black;line-height: 1.6;}
ul,ol{
    font-size: 1rem;
    margin-bottom: 16px;
    
}
div{
    margin-bottom: 0px;
}
form,button,input{
    font-size: 1rem;
}
small{
    font-size: 12px;
    font-weight: lighter;
}

a{
    font-size: inherit;
    
    color: inherit;
}

img{
    padding-bottom: 0px;
    margin-bottom: 0px;
    padding-top: 8px;
}

body {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    padding: 0;
   
    margin: 0 auto;
   
  }

/* 
call to action */

.cta .cb{
    position: relative;
    padding: 16px 24px;
    border: solid 2px #0ED077;
    border-radius: 32px;
    width: fit-content;
    cursor: pointer;
    overflow: hidden;
    display: inline-block;
    vertical-align: center;
}
.cta .cb button{
    position: relative;
    background-color: unset;
    border: none;
    outline: none;
    font-weight: 500;
    z-index: 11;
    text-shadow: 0px 0px 2px rgb(153, 153, 153);
}
.cta .cb .bg{
    width: 400px;
    height: 400px;
    background-color: #0ED077;
    border-radius: 100%;
    position: absolute;
    left: 0px;
    top: 50%;
   clip-path: circle(0%);
   transform: translateX(0%) translateY(-50%);
    transition-duration: 1s;
    z-index: 10;
}
.cta .cb:hover>.bg{
    clip-path: circle(100%);
    
}
.cta .cb:hover>button{
    color: white;
}


/* header */


header{
    position: sticky;
    z-index:1000;
    top: 0px;
    width: 100%;
    background-color: #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 8px;
    margin: 0px;
    z-index: 100;
    color: black;

    
}

header div{
    margin: 0px;
    padding: 0px;
}

header .logo{
    padding: 0px;
    margin: 0px;
 
}

header .logo img{
    position: relative;
    display: block;
    padding: 0px;
    margin: 0px;
    height: 50px;
    
    margin-bottom: 0px;
    aspect-ratio: 1;
    
}


header nav{
    position: relative;
    padding: 0px;
    margin: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
   
}
header nav ul{
    position: relative;
    display: flex;
    font-size: inherit;
    align-items: center;
    height: 100%;
   
    list-style: none;
    padding: 0px;
    margin: 0px;
    

}
header nav ul li{
    position: relative;
    
  
  
    margin: 0px;
   margin-left: 8px;
    /* margin-left: 10px; */
    position: relative;
}

header nav ul li a{
    display: inline-block;
    padding: 16px 0px;
    margin: 0px 5px;

    color: var(--dark-grey);
    text-decoration: none;
}

header nav ul li .line{
    position: absolute;
    width: 0px;
    height: 2px;
   
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color:black;
    
    
    transition-duration: 0.2s;
    
    
}
header nav ul li:hover>.line{
  
    width: 100%;
}


/* mobile nav */

.mobile-nav{
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 100;
    padding: 4px;
    clip-path: inset(0% 0% 100% 100%);
    transition-duration: 0.5s;
    width: 100%;
   height: fit-content;
    
    background-color: #E5E7EB !important;
    
}

.mobile-nav ul{
    list-style: none;
    padding: 0px 8px;
    width: 100%;
    display: block;
   
}

.mobile-nav ul li{
    margin: 36px 0px;
    border-bottom: solid 1px white;
}
.mobile-nav ul li a{
    text-decoration: none;
    padding: 0px;
    margin: 0px;
}



/* hamburger */
.hamburger {
    /* Remove default button styles */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    
    /* Define size */
    width: 40px;
    height: 40px;
    
    /* Flexbox to align the lines */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    gap: 8px; /* Spacing between lines */
    display: none;
    /* Optional: Add a subtle tap highlight removal for mobile */
    -webkit-tap-highlight-color: transparent;
}

/* The lines (patties) */
.hamburger .line {
    width: 24px;
    height: 2px;
    background-color:  black ;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* ACTIVE STATE (When class 'is-active' is added via JS)
*/

/* Top line rotates 45 degrees and moves down */
.hamburger.is-active .line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

/* Middle line fades out */
.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px); /* Slide out effect */
}

/* Bottom line rotates -45 degrees and moves up */
.hamburger.is-active .line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ------------------------------------------------------ */
/* Optional: Hover Effect for desktop                     */
/* ------------------------------------------------------ */
/* .hamburger:hover .line {
    background-color: rgb(75, 185, 60);
} */


main{
    z-index: 1;
}
/* footer */

footer{
    position: relative;
    background-color: var(--dark-grey);
    padding: 48px 0px;
}

footer ul{
    padding-left: 0px;
    list-style: none;
}

footer h2{
    font-size: 28px;
    position: relative;
    width: fit-content;
    
}

footer h2::before{
    content: " ";
    left: -4px;
    position: absolute;
    width: 2px;
    border-radius: 4px;
    height: 100%;
    background-color: #0ED077;
}

footer a{
    text-decoration: none;
}

footer .social a{
    position: relative;
    margin-right: 8px;
    margin-top: 8px;
    padding: 8px;
    padding-bottom: 0px;
    display: inline-block;
    
    border: solid 1px #ffffff;
    border-radius: 16px;
}
footer .social a img{
    padding: 0px;
    vertical-align: top;
    padding-bottom: 8px;
    
    
}
footer .social a:hover{
    transform: scale(1.1);
}
footer *{
    z-index: 10;
    color: white;
    
}
footer .bg {
    
    position: absolute;
     /* background-image: url('images/tech-bg-animation.svg'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    
   
}


/* structure */

.structure{
    padding: 80px 0px;
}


/* reveal */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition-duration: 1s;
  will-change: opacity, transform;
}

.show {
  opacity: 1;
  transform: translateY(0);
  
}

/* buttons */
.button{
    position: relative;
    display: block;
    padding: 16px 24px;
    border: solid 2px grey;
    border-radius: 32px;
    width: fit-content;
    cursor: pointer;
    overflow: hidden;
    display: inline-block;
    
    overflow: hidden;
    transition: 0.5s;
}
.button {
    text-decoration: none !important;
}
.button span{
    color: var(--accent);
    text-decoration: none;
}
.button>span:nth-of-type(2){
    position: absolute;
    display: inline-block;
    
    transform: translateY(-100px);
}

.button:hover>span:nth-of-type(2){
    position: relative;
    transform: translateY(0px);
}

.button:hover>span:nth-of-type(1){
    position: absolute;
    transform: translateY(-100px);
    
}


.bttn-animated{
    position: relative;
    padding: 2px; 
    border-radius: 48px;
    overflow: hidden;
    cursor: pointer;
    margin-left: 8px;
}
.bttn-animated .bttn{
    position: relative;
    background-color: whitesmoke;
    padding: 8px 16px;
    border-radius: 48px;
    z-index: 1;
 
    
}

.bttn-animated .bg{
    position: absolute;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
   
    background-image: linear-gradient(to right, #0ED077,yellow,#0ED077,#0ED077);
   
    z-index: 0;
    transform-origin: center;
    transform: translateX(-50%) translateY(-50%);
    animation: animate-bttn 10s linear infinite;
}

@keyframes animate-bttn{
    0%{
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

/* intro2 */

.hero2{
    position: relative;
  height: 400px;
    

}
.hero2 > h1{
    position: relative;
    z-index: 10;
    margin: auto;
    width: fit-content;

   top: 50%;
   padding: 16px;
   transform: translateY(-50%);
   color: white;
   background-color: #1F2937;
   
}

.hero2 img{
    width: 100%;
    height: 100%;
    opacity: 1;
    position:absolute;
    top: -50px;
    left: 0;
    z-index: 0.8;
    object-fit: cover;
    object-position: center;
}





