*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: "Epilogue", sans-serif;
    position: absolute;
    background-color: black;

}



/* nav section css */
nav{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    width: 90%;
    padding: 15px 30px;
    z-index: 1;
    border-radius: 30px;
    margin-top: 30px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.div-logo img{
    width: 40px;
}
nav ul{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}
nav ul li a{
    margin: 0 10px;
    text-decoration: none;
    color: black;
}
#sign-in{
    margin-left: 20px;
}
nav ul button{
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
nav ul li a:hover{
    color:#00BDD6 ;
}
nav ul button:hover{
    background-color: #00BDD6;
}
.ri-menu-5-fill {
    font-size: 30px;
    display: none;
  }
.div-nav ul.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 30px;
    margin-top: 25px;
  }
  
  .div-nav ul.active li {
    margin: 0;
  }
  
  .div-nav ul.active li a {
    padding: 30px 20px;
    color: black;
  }
  div-nav ul {
    animation: fadeIn 0.3s ease forwards;
  }
  
  .div-nav ul.active {
    animation: slideIn 0.3s ease forwards;
  }
  

/* nav section end */
/* hero section start */
.hero{
    color: white;
    width:100vw;
    animation: fadeIn 2s;
}
.hero-text{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 200px;
    animation: slideIn 2s;
}
.hero-text h1{
    font-size: 40px;
    margin-bottom: 20px;
}
.hero-text h1 span{
    color: #00BDD6;
}
.hero-text h1 span:hover{
    color: white;
}
.hero-text p{
    font-size: 20px;
    margin-bottom: 20px;
}
.hero-text button{
    background-color: #00BDD6;
    color: white;
    margin-top: 20px;
    padding: 15px 0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 30%;
}
.hero-text button:hover{
    background-color: white;
    color: black;
}
.hero-image{
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero img{
    margin-top: 80px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: 20px;
    height: 350px;
    width: 650px;
}

/* hero section end */

.features{
    background-color: white;
    color: black;
    padding: 150px 200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    box-sizing: border-box;

}
.features h2{
    font-size: 40px;
    margin-bottom: 20px;
}
.features p{
    font-size: 20px;
    margin-bottom: 20px;
}
.features img{
    width: 500px;
    height: 300px;
    border-radius: 30px;
}  
.features-dark{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 150px 200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    box-sizing: border-box;
}
.features-dark h2{
    font-size: 40px;
    margin-bottom: 20px;
}
.features-dark p{
    font-size: 20px;
    margin-bottom: 20px;
}
.features-dark img{
    width: 500px;
    height: 300px;
    border-radius: 30px;
}  
/* features section end */

.pricing{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    flex-direction: column;
    gap: 20px;
}
.pricing h1{
    font-size: 40px;
    margin-top: 130px;
}
.pricing-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: black;
    background-color: white;
    padding: 40px;
    height: 70%;
    width: 60%;
    border-radius: 30px;

    
}
.starter{
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px solid rgba(0, 0, 0, 0.159);
    padding: 5px;
    border-radius: 10px;
    width: 40%;
}
.starter .heading{
    background-color:#00bdd65d ;
    padding: 10px;
    border-radius: 5px;
}
.starter .heading p{
    font-size: 13px;
    margin: 10px 0;
}
.starter .heading h3{
    font-size: 25px;
}
.starter-features{
    padding: 20px 30px
}

.premium{
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px solid rgba(0, 0, 0, 0.159);
    padding: 5px;
    border-radius: 10px;
    width: 40%;

}
.premium .heading{
    background-color:#000000 ;
    color: white;
    padding: 10px;
    border-radius: 5px;
}
.premium .heading p{
    font-size: 13px;
    margin: 10px 0;
}
.premium .heading h3{
    font-size: 25px;
}
.premium-features{
    padding: 20px 30px
}

.premium-features{
    padding: 20px 30px
}
.pricing button{
    background-color: #00BDD6;
    border-radius: 10px;
    padding: 7px;
    border: 0;
    color: white;
}
.pricing button:hover{
    background-color: #000000;
}
/* pricing section end */

/* newsletter section start */
.newsletter{
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    height: 50vh;
}
.newsletter h2{
    font-size: 40px;
    margin-bottom: 20px;
}
.newsletter button{
    background-color: #00BDD6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 20%;
    font-size: 20px;
}
.newsletter button:hover{
    background-color: #ffffff;
    color: black;
}
/* newsletter section end */

/* footer section start */
.footer{
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 20px 100px;
}
.footer a{
    text-decoration: none;
    color: white;
}
.footer a:hover{
    color: #00BDD6;
}
.footer-row-1 , .footer-row-2 , .footer-row-3{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.footer-row-1{
    width: 20%;
}
.footer-row-2{
    width: 50%;
}
.footer-row-3{
    width: 20%;
}
.footer button{
    background-color: #000000;
    color: white;
    border: 2px solid #00BDD6;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}
.footer button:hover{
    background-color: #00BDD6;
}
/* footer section end */
/*Animations*/
@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


/* media query */
/* tablet devices */
@media screen and (max-width: 1024px){
    .ri-menu-5-fill {
        display: block;
        cursor: pointer;
      }
    nav{
        padding: 15px 20px;
    }
    nav ul{
        display: none;
    }
    nav ul button{
        padding: 10px 15px;
    }
    #sign-in{
        margin-left: 0;
    }
    .hero-text{
        margin-top: 200px;
    }
    .hero-text h1{
        font-size: 30px;
    }
    .hero-text p{
        font-size: 15px;
    }
    .hero-text button{
        padding: 10px 0;
        width: 50%;
    }
    .hero img{
        height: 250px;
        width: 500px;
    }
    .features{
        padding: 100px 50px;
        flex-direction: column;
        gap: 50px;
    }
    .features img{
        width: 300px;
        height: 200px;
    }
    .features-dark{
        padding: 100px 50px;
        flex-direction: column;
        gap: 50px;
    }
    .features-dark img{
        width: 300px;
        height: 200px;
    }
    .pricing h1{
        font-size: 30px;
    }
    .pricing-container{
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        width: 80%;
    }
    .starter{
        width: 80%;
    }
    .premium{
        width: 80%;
    }
    .newsletter h2{
        font-size: 30px;
    }
    .newsletter button{
        padding: 10px 15px;
        width: 30%;
        font-size: 15px;
    }
    .footer{
        flex-direction: column;
        gap: 20px;
        padding: 20px 50px;
    }
    .footer-row-1{
        width: 50%;
    }
    .footer-row-2{
        width: 80%;
    }
    .footer-row-3{
        width: 50%;
    }
    .footer button{
        padding: 10px 15px;
    }
    
}

@media screen and (max-width: 768px){
    nav{
        padding: 15px 20px;
    }
    nav ul{
        display: none;
    }
    nav ul button{
        padding: 10px 15px;
    }
    .hero-text{
        margin-top: 200px;
        padding: 20px;
    }
    .hero-text h1{
        font-size: 30px;
    }
    .hero-text p{
        font-size: 15px;
    }
    .hero-text button{
        padding: 10px 0;
        width: 50%;
    }
    .hero img{
        height: 250px;
        width: 500px;
    }
    .features{
        padding: 100px 50px;
        flex-direction: column;
        gap: 50px;
    }
    .features img{
        width: 300px;
        height: 200px;
    }
    .features-dark{
        padding: 100px 50px;
        flex-direction: column;
        gap: 50px;
    }
    .features-dark img{
        width: 300px;
        height: 200px;
    }
    .pricing h1{
        font-size: 30px;
    }
    .pricing-container{
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        width: 80%;
    }
    .starter{
        width: 80%;
    }
    .premium{
        width: 80%;
    }
    .newsletter h2{
        font-size: 30px;
    }
    .newsletter button{
        padding: 10px 15px;
        width: 30%;
        font-size: 15px;
    }
    .footer{
        flex-direction: column;
        gap: 20px;
        padding: 20px 50px;
    }
    .footer-row-1{
        width: 50%;
    }
    .footer-row-2{
        width: 80%;
    }
    .footer-row-3{
        width: 50%;
    }
    .footer button{
        padding: 10px 15px;
    }
}