body{
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(rgb(93, 0, 112), rgb(10, 0, 27)) ;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
*{
    scrollbar-width: thin;
    scrollbar-color: #0099ff #1a1a1a;
}
html{
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #0099ff #f1f1f1;
}
::-webkit-scrollbar{
    width: 8px;
}
::-webkit-scrollbar-track{
    background: #1a1a1a;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb{
    background: #ff9800;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover{
    background: rgb(255, 145, 71);
}
.loader{
    border: 4px solid rgb(231, 161, 255);
    border-left: none;
    padding: 25px;
    border-radius: 50px;
    position: fixed;
    z-index: 1000;
    top:50%;
    left: 50%;
    animation: spin .3s ease-in-out infinite;
 }
 @keyframes spin {
    0%{
        transform: rotateY(200deg);
    }
    50%{
        transform: rotateX(200deg);
    }
 }


header {
    top: 0;
    margin-bottom: 80px;
    width: 100%;
    position: fixed;
    border-bottom: 1px solid rgb(37, 37, 37);
    background: rgba(24, 0, 32, 0.507);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 20px;
    z-index: 100;
    
   
}

.Components{
    transform: translateY(-30px);
    opacity: 0;
    position: absolute;
    background-color: #e0e0e0;
    padding: 10px;
    
    border-radius: 5px;
    left: -45px;
    margin-top: 10px;
    width: 180px;
    text-align: center;
    transition:  .3s ease-in-out, opacity .4s ease-in-out;
    
    a{
        line-height: 50px;
        color:#150025;
        

        .liner{
            background-color: #150025;
        }
    }
}
.comp-container{
    position: relative;
    transition:  .3s ease;
}
.comp-container:hover .Components{
    transform: translateY(0px);
    opacity: 1;
}
nav{
    margin: 0px;
    align-items: center;
    display: flex;
    justify-content: space-around;
}
nav img{
    height: 50px;
    border-radius: 30px;
}
.hamburger{
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

nav ul li {
    
    font-size: 18px;
    margin: 0 15px;
    font-weight: bold;
    
}
nav ul li:hover .liner{
    width: 100%;
}
.liner{
    position: absolute;
    bottom: -5px;
    left: 3px;
    margin-left: 0;
    width: 0px;
    background-color: white;
    height: 2px;
    transition: .5s ease-in-out;
}

nav ul li a {
    position: relative;
    color: white;
    text-decoration: none;
}





.hero{
    text-align: center;
    padding: 20px;
    margin-top: 90px;

    h2{
        color: rgb(255, 145, 71);
        font-weight: 10;
        font-size: 18px;
        margin-bottom: 5px;
    }
    h1{
        margin-bottom: 10px;
        margin-top: 0;
        font-size: 45px;
        color: white;
    }
}

.gradient-flow{
    z-index: -1;
    border-radius: 40%;
    padding: 100px;
    background-color: rgba(255, 68, 0, 0.699);
    position: absolute;
    top: 15%;
    filter: blur(30px);
    transform: translateY(0);
    transition: .3s ease;
}

.gradient-flow2{
    z-index: -1;
    transform: translateY(0);
    transition: .3s ease;
    border-radius: 50%;
    padding: 100px;
    background-color: rgba(0, 174, 255, 0.692);
    position: absolute;
    top: 40%;
    right: 10px;
    filter: blur(30px);
}

.categories{
    text-align: center;
    padding: 10px 30%;

    a{
        text-decoration: none;
    }
}

.categories button{
    border-radius: 10px;
    padding: 5px 10px;
    border: 1px solid rgb(255, 255, 255);
    margin: 5px;
    color: white;
    background-color: transparent;
    font-size: 15px;
    cursor: pointer;
    transition: .3s ease;
}
.categories button:hover{
    background-color: rgb(255, 185, 255);
    color: rgb(0, 0, 0);
}

.search-input{
    margin-bottom: 90px;
    margin-top: 50px;
    text-align: center;

}
.search-input input{
    color: white;
    outline: none;
    background-color: transparent;
    padding: 10px;
    border: 2px solid rgb(236, 236, 236);
    border-radius: 50px;
    font-size: 17px;
}
.red{
    border:  2px solid red !important;
}
.search-input input::placeholder{
    padding-left: 40px;
    transition: .3s ease;
}
.search-input input:focus::placeholder{
    padding-left: 0px;
}

.search-input button{
    padding: 10px 15px;
    background-color: rgb(255, 185, 255);
    border: none;
    font-weight: 10;
    color: rgb(0, 0, 0);
    border-radius: 50px;
    font-size: 17px;
    cursor: pointer;
}


.portfolio-container{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
 }
 .portfolio-container a{
    text-decoration: none;
 }

.container { 
    text-align: center;
    max-width: 300px; 
    margin: 10px 10px; 
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd; 
    border-radius: 5px; 
    animation: appear 5s linear;
    animation-timeline: view();
    animation-range: entry 0% ;
}
@keyframes appear {
    from {
        opacity: 0;
        scale: 0;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}
.container .img-container{
    text-align: center;
    background-color: grey;
    height: 150px;
    border-radius: 10px;
}
.container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.container h2{
    color: black;
    font-size: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.container p{
    color: black;
    font-size: 16px ;
    font-weight: bold;
}
.container p span{
    text-decoration: line-through;
}
.container h4{
    font-size: 15px;
    font-weight: 100;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-top: 5px;
}
.rating-star{
    color: rgb(240, 184, 0);
}
.rating-star .fa-star:nth-child(5){
    color: grey;
}
.rating-star2{
    color: rgb(240, 184, 0);
}
.rating-star2 .fa-star:nth-child(5), .rating-star2 .fa-star:nth-child(4){
    color: grey;
}
.container input{
    padding: 10px;
    border: 2px solid rgb(65, 0, 65);
}
.buy-now { 
    padding: 10px 20px; 
    background-color: rgb(65, 0, 65); 
    color: white; border: none;
    cursor: pointer; 
    transition: .1s ease;
}
.buy-now:hover{
    background-color: rgb(44, 0, 44);
}
.buy-now:active{
    background-color: rgb(112, 1, 112);
}
.invalidEmail{
    display: none;
    margin: 0px 30%;
    padding: 10px 100px;
    text-align: center;
    background-color: bisque;
    position: fixed;
    top: 40%;
    z-index: 50;
    font-size: 15px;

    p{
        line-height: 20px;
    }
    summary{
        color: rgb(245, 110, 0);
        cursor: pointer;
        margin-bottom: 10px;
    }
    button{
        cursor: pointer;
        padding: 10px 15px;
        background-color: rgb(245, 110, 0);
        border: none;
        border-radius: 20px;
    }
}
.warning{
    font-size: 30px;
}
#haveResults{
    margin: 30px ;
    font-size: 25px;
    color: white;
    text-align: center;
}
#noResults{
    margin: 30px;
    padding: 30px;
    font-size: 25px;
    background-color: red;
    color: white;
    text-align: center;
}




.footer{
    margin-top: 80px;
    background-color: rgb(27, 0, 32);
    padding: 30px;
    color: white;
}
footer{
    display: flex;
    height: 50vh;
    justify-content:space-between ;
}
.logo-div{
    font-size: 15px;
    max-width: 25%;
}
.logo-div img{
    height: 80px;
    margin-bottom: 30px;
}
.logo-div p{
    font-size: 15px;
    margin-bottom: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.logo-div a{
    text-decoration: none;
}
.logo-div .fa-brands{
    font-size: 20px;
    padding-right: 10px;
    color: rgb(245, 110, 0);
}
footer h4{
    font-size: 20px;
}
footer a{
    text-decoration: none;
    transition: .3s;
}
footer a:hover{
    color: rgb(170, 77, 0);
}
.quick-links p{
    margin-bottom: 10px;
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.quick-links a{
    color: rgb(245, 110, 0);
}
.services-section a{
    color: rgb(245, 110, 0);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.address-section p{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#copyright{
    text-align: center;
    font-size: 13px;
}













@media (max-width: 850px) {
    header {
        color: white;
        padding: 20px 0px;
    }
    .Components{
        display: none;
    }
    nav{
        margin: 0px;
        align-items: normal;
        display: flex;
        justify-content: space-between;
    }
    nav img, .hamburger{
        margin: 0px 30px;
    }
    .hamburger{
        font-size: 25px;
        cursor: pointer;
        font-weight: bold;
        display: block;
    }
    
    nav ul {
        opacity: 0;
        border-right: 1px solid rgb(90, 90, 90);
        box-shadow: none;
        height: 100vh;
        text-align: left;
        left: -250px;
        top: 0;
        padding: 50px;
        padding-top: 90px;
        backdrop-filter: blur(5px);
        position: fixed;
        width: auto;
        display: block;
        margin-top: 0;
        background-color: rgb(11, 0, 29);
        transition: left .5s ease-in-out, opacity .8s ease-in-out;
        color: white;
    }
    nav ul.visible{
        opacity: 1;
        left: 0;
        margin: 0;
        text-align: left;
    }
    
    nav ul li {
        text-align: left;
        line-height: 50px;
        font-size: 20px;
        margin: 0;
        font-weight: normal;
        font-family:monospace;
    }
    
    nav ul li a {
        color: rgb(255, 255, 255);
        text-decoration: none;
    }
    .invalidEmail{
        margin: 0px 10%;
        padding: 10px 50px;
        text-align: center;
        background-color: bisque;
        position: fixed;
        top: 30%;
        z-index: 50;
    }


    .categories{
        text-align: center;
        padding: 20px 20px;
    }

    .container { 
        text-align: center;
        max-width: 300px; 
        margin: 10px 10px; 
        padding: 20px;
        background-color: white;
        border: 1px solid #ddd; 
        border-radius: 5px; 
        animation: appear .3s linear;
        animation-timeline: view();
        animation-range: entry 0% ;
    }
    @keyframes appear {
        from {
            opacity: 0;
            scale: 0;
        }
        to{
            opacity: 1;
            scale: 1;
        }
    }
    #noResults{
        margin: 30px;
        padding: 30px;
        font-size: 20px;
        background-color: red;
        color: white;
        text-align: center;
    }


    .footer{
        text-align: center;
        padding: 80px 30px 30px 30px;
        color: white;
    }
    footer{
        display: block;
        height: auto;
        justify-content: center ;
    }
    .logo-div{
        font-size: 15px;
        max-width: 100%;
    }
    .logo-div img{
        height: 80px;
        margin-bottom: 30px;
    }
    
    .logo-div p{
        font-size: 14px;
        margin-bottom: 15px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin-bottom: 20px;
    }
}






@media (max-width: 450px) {
    .hero{
        text-align: center;
        padding: 20px;
        margin-top: 90px;
    
        h2{
            color: rgb(255, 145, 71);
            font-weight: 10;
            font-size: 18px;
            margin-bottom: 5px;
        }
        h1{
            margin-bottom: 10px;
            margin-top: 0;
            font-size: 35px;
            color: white;
        }
    }
}