*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Jost", Titillium Web, sans-serif;
    text-decoration: none;
}
html,body{
    scroll-behavior: smooth;
}
.container{
    width: 100%;
    position: relative;
}





/* navbar */
.header{
    position: sticky;
    top: 0; left: 0; right: 0;
    background-color: black;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999999;
}
#logo-name {
    color: #6a5ae2;
    font-size: 1.5rem;
    padding: 10px;
}
#logo-name b span{
    font-size: 2rem;
}
#logo-name span:nth-child(2){
    color: white;
}
.navbar ul{
    list-style: none;
}
.navbar ul li {
    position: relative;
    float: left;
}
.navbar ul li a {
    padding: 20px ;
    display: block;
    color: white;

}
.navbar ul li a:hover {
    background-color: #6a5ae2;
}
.navbar ul li ul {
    position: absolute;
    left: 0;
    background-color: black;
    display: none;
}
.navbar ul li ul li {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.navbar ul li:focus-within > ul ,
.navbar ul li:hover > ul {
    display: initial;
}
#menu-bar{
    display: none;
}
.header label {
    font-size: 1.3rem;
    cursor: pointer;
    display: none;

    i{
        color: white;
    }
}




/* Hero Page */
.hero-page {
    width: 100%;
    height: 90vh;
    background-color: rgb(218, 211, 211);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    h1{
        font-size: 4rem;
    }
    h2{
        font-size: 3rem;
    }

    button{
        margin-top: 2rem;
        padding: 1rem 2rem;
        background-color: #6a5ae2;
        border-radius: 10px;
        border: none;
        color: white;
        font-size: 1rem;
        transition: all 0.3s;
    }
}
.hero-page button:hover {
    transform: scale(1.1);
}




/* App-Showcase */
.app-showcase{
    width: 90%;
    height: fit-content;
    padding: 4rem;
    background: #6A5AE2;
    backdrop-filter: blur(10px);
    place-self: center;
    margin-top: 7rem;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
}
.app-showcase .app-image-box {
    width: 60%;
    height: 35rem;
}
.app-showcase .app-image-box img{
    width: 35rem;
}
.app-showcase .app-info {
    width: 35%;
}
.app-info .app-name h1{
    font-size: 3rem;
    color: white;
}
.app-info .app-description {
    margin: 2rem 0;
    font-size: 1.5rem;
    color: #ffffff;
}
.app-link {
    align-items: center;
    margin: 2rem 0;
}
.app-link a{
    color: white;
    font-size: 1.8rem;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.app-link i{
    font-size: 1.6rem;
}
.app-genres ul {
    color: white;
    font-size: 1rem;
    display: flex;
    list-style-position: inside;
    padding-left: 0;
    gap: 20px;
}




/* Review-Section */
.review-section {
    background: linear-gradient(135deg, #fbc2eb, #fcd3e1, #c2e9fb, #a6c1ee);
    margin-bottom: 10rem;
    margin-top: 7rem;
    width: 90%;
    place-self: center;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
.review-top{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.illus-box{
    width: fit-content;
}
#rev-illus{
    width: 20rem;
    place-self: center;
}
.net-rating{
    width: 48%;
    place-self: center;
}
.rating-stat{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}
.rating-bars {
    display: flex;
    flex-direction: column;
}
.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bar {
    width: 200px;
    height: 10px;
    background-color: #e5e5e5;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.bar-fill {
    height: 100%;
    background-color: #6a5ae2;
    position: absolute;
    top: 0;
    left: 0;
}
.rating-label {
    white-space: nowrap;
    font-size: .9em;
}
.review-count{
    font-size: 1em;
    width: fit-content;
    white-space: nowrap;
}
.review-wrapper {
    max-width: 99vw;
    padding: 0 50px;
    position: relative;
}
.reviews-container {
    overflow: hidden;
}
.slides-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}
.review-card {
    flex: 0 0 25%;
    padding: 15px;
    box-sizing: border-box;
    min-height: 300px;
}
.review-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: #000; 
    opacity: 0.5;
}
.user-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.username {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    /* -webkit-line-clamp: 3;  */
    -webkit-box-orient: vertical;
}
.read-more {
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    margin-top: auto; /* Push to bottom */
}
.read-more:hover {
    text-decoration: underline;
}
.stars {
    color: #6a5ae2;
    margin: 10px 0;
}
.move-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.move-button:hover {
    background: rgba(0, 0, 0, 0.8);
}
.move-button.prev {
    left: 0;
}
.move-button.next {
    right: 0;
}
.move-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}





/* footer-section */
.footer{
    width: 100%;
    background-color: black;
    border-bottom: rgb(170, 167, 167) 1.5px solid;
    position: relative;
}
.wave {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url(media/wave.png);
    background-size: 1000px 100px;
}
#wave1{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animate 4s linear infinite;
}
#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate-2 4s linear infinite;
}
#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animate 3s linear infinite;
}
#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate-2 3s linear infinite;
}
@keyframes animate {
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
}
@keyframes animate-2 {
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 1000px;
    }
}
.footer-top{
    display: flex;
    align-items: center;
}
.footer-top .about-app{
    width: 60%;
    padding: 3em;
}
.footer-top .about-app h3{
    font-weight: 300;
}
.footer-top .about-app p {
    font-size: .85rem;
    color: rgb(182, 178, 178);
}
.logo-2{
    margin-bottom: .7em;
}
#logo-name-2 {
    color: #6a5ae2;
    font-size: 1.8rem;
    padding: 10px;
}
#logo-name-2 b span{
    font-size: 2.2rem;
}
#logo-name-2 span:nth-child(2){
    color: white;
}
.footer-top .quick-links{
    width: 40%;
}
.quick-links-list {
    display: flex;
    align-items: center;
}
.quick-links h3 {
    margin-bottom: .2em;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-weight: 400;
    font-size: 1.5em;
}
.quick-links-list a {
    text-decoration: none;
    margin-right: 2em;
    font-weight: 300;
}
.quick-links .social-media-handles {
    width: 23%;
    margin-top: 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.quick-links .social-media-handles i {
    color: white;
    font-size: 1.6em;
    transition: .3s;
}
.quick-links .social-media-handles i:hover {
    color: #6a5ae2;
    cursor: pointer;
    transform: translateY(-3px);
}
.row{
    width: 100%;
}
.row hr {
    width: 80%;
    place-self: center;
}
.footer-bottom p {
    padding: 1em;
    text-align: center;
    color: white;
}
/* Hiding scroll-bar */
::-webkit-scrollbar {
    display: none;
}