* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset0 0 10px rgba(0, 0 green, 0 blue, 0.25);
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: linear-gradient(to top, #c72092, #6c14d0);
}

section {
    width: 100%;
    height: 100vh;
    background-image: url(bg1.png);
    background-size: cover;
    background-position: center;
}

section nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: white;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;

}

section nav .logo {
    font-size: 35px;
    color: #c72092;
    margin: 5px 0;
    cursor: pointer;
    left: -4%;

}

section nav .logo span {
    color: #6c14d0;
    text-decoration: underline;
}

section nav ul {
    list-style: none;
}

section nav ul li {
    display: inline-block;
    margin: 5px 15px;
}

section nav ul li a {
    text-decoration: none;
    color: black;
    transition: 0.2s;
}

section nav ul li a:hover {
    color: #c72092;
}

section nav .icons i {
    margin: 0 4px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

section nav .icons i:hover {
    color: #c72092;
}

section .main .main-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

section .main .main-content .main-text h1 {
    font-size: 90px;
    line-height: 70px;
    font-family: pyxidium quick;
    background: linear-gradient(to right, #c72092, #6c14d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    top: 45px;
    left: 5%;
}

section .main .main-content .main-text h1 span {
    font-size: 70px;
    background: linear-gradient(to right, #c72092, #6c14d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

section .main .main-content .main-text p {
    width: 600px;
    text-align: justify;
    line-height: 21px;
    position: relative;
    top: 85px;
    left: 5%;

}

section .main .main-content .main-image img {
    width: 650px;
    position: relative;
    left: 20px;
    top: 75px;
}

section .main .social-icons {
    position: absolute;
    top: 40;
    left: 98%;
    transform: translate(-58%, -50%);
    font-size: 19px;
}

section .main .social-icons i {
    margin: 8px 0;
    cursor: pointer;
    transition: 0.3s;
}

section .main .social-icons i:hover {
    color: #c72092;
}

section .main .button {
    position: absolute;
    left: 6%;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(to right, #c72092, #6c14d0);
}

section .main .button a {
    color: black;
    text-decoration: none;
}

section .main .button i {
    color: white;
    margin-left: 5px;
    transition: 0.3s;
}

section .main .button:hover i {
    transform: translateX(6px);
}


/*Products*/

.product {
    width: 100%;
    height: 140vh;
    padding: 230px 0;
}

.product h1 {
    margin: 35px 0;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background: linear-gradient(to right, #c72092, #6c14d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.product .box {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 25px 0;
}

.product .box .card {
    width: 260px;
    height: 440px;
    box-shadow: 0 0 8px #6c14d0;
    border-radius: 5px;
    text-align: center;
    padding: 10px 20px;
    background: #f6f6f6;
}

.product .box .card .small-card {
    display: flex;
    flex-flow: column;
    position: absolute;
    margin: 10px 0;
    transform: translateX(-20px);
    transition: 0.3s;
    opacity: 0;
}

.product .box .card:hover .small-card {
    transform: translateX(2px);
    cursor: pointer;
    opacity: 1;
}

.product .box .card .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product .box .card .image img {
    width: 150px;
    margin: 15px;
    transition: 0.3s;

}

.product .box .card:hover .image img {
    transform: scale(1.1);
}

.product .box .card .small-card i {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    font-size: 18px;
    margin: 2px 0;
    line-height: 40px;
    border: 2px solid #999999;
    transition: 0.2s;
}

.product .box .card .small-card i:hover {
    color: #c72092;
}

.product .box .card .product-text h2 {
    font-size: 30px;
    margin-top: 15px;
}

.product .box .card .produt-text p {
    color: #919191;
    line-height: 21px;
    margin: 8px 0;
}

.product .box .card .produt-text h3 {
    margin: 7px;
}

.product .box .card .produt-text .product-star {
    color: orange;
    margin-bottom: 19px;
    cursor: pointer;
}

.product .box .card .produt-text .btn {
    text-decoration: none;
    padding: 10px 20px;
    background: linear-gradient(to right, #c72092, #6c14d0);
    color: white;
}

.about {
    width: 100%;
    height: 100vh;
    padding: 35px 0;
}

.about h1 {
    font-size: 60px;
    margin-top: 450px;
    display: flex;
    align-self: center;
    justify-content: center;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.about span {
    background: linear-gradient(to right, #c72092, #6c14d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 15px;
}

.about .about-main {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .about-main .about-image {
    display: flex;
    margin-top: 50px;

}

.about .about-main .about-image {
    margin-top: 140px;
}

.about .about-main .about-image .about-small-image {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 15px;

}

.about .about-main .about-image .about-small-image img {
    height: 92px;
    margin: 5px 0;
    cursor: pointer;
    background: linear-gradient(to right, #6c14d0, #c72092);
    display: block;
    border-radius: 6px;
    padding: 5px 5px;
    box-shadow: 0 0 6px rgba(0, 0 green, 0 blue, 0.6 alpha);
    opacity: 0.8;
    transition: 0.3s;

}

.about .about-main .about-image .about-small-image img:hover {
    opacity: 1;
}

.about .about-main .image-container {
    padding: 10px;
    display: flex;
}

.about .about-main .image-container img {
    border: 3px solid #c72092;
    border-radius: 20px;
    height: 400px;
    padding: 30px;
    box-shadow: 0 0 8px #c72092;
}

.about .about-main .about-text p {

    margin-top: 140px;
}

.about .about-main .about-text p {
    background: linear-gradient(to left, #c72092, #6c14d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 22px;
    width: 450px;
    text-align: justify;
    padding: 25px 30px;
    border: 2px solid #c72092;
    border-radius: 20px;
    box-shadow: 0 0 8px #c72092;
}

.about .about-btn {
    color: balck;
    background: none;
    position: relative;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 25px;
    border: 2px solid #c72092;
    text-decoration: none;
    box-shadow: 0 0 8px #c72092;
    transition: 0.5s;


}

.about .about-btn:hover {
    border: 2px solid transparent;
    background: #c72092;
    color: white;
}

/*review*/

.review {
    width: 100%;
    height: 100vh;
    padding-top: 650px;
}

.review h1 {
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.review h1 span {
    background: linear-gradient(to left, #c72092, #6c14d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 15px;
}

.review .review-box {
    width: 95%;
    position: relative;
    top: 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.review .profile .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 5px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.review .profile .profile-image:hover {
    transform: scale(1.2);
}

.review .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.review .profile {
    display: flex;
    align-items: center;
}

.review .review-box .review-card {
    width: 500px;
    background: #f3f1f1;
    padding: 20px 25px;
    border-radius: 5px;
    margin: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.review .review-box .review-card .card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review .review-box .review-card .card-top .profile .name {
    margin-left: 20px;
    line-height: 22px;
}

.review .review-box .review-card .card-top .profile .name strong {
    font-size: 20px;
}

.review .review-box .review-card .card-top .profile .name .like {
    color: orange;
    display: inline-block;
    font-size: 12px;
}

.review .review-box .review-card .comment p {
    text-align: justify;
    line-height: 22px;
    margin-top: 15px;
}

.service {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-top: 700px;
}

.service h1 {
    font-size: 60px;
    text-transform: uppercase;
}

.service h1 span {
    margin-left: 15px;
    background: linear-gradient(to left, #c72092, #6c14d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.service .service-cards {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: 50px;
    padding-left: 20px;
}

.service .service-box i {
    font-size: 60px;
    color: orange;
    margin: 20px 0;
    cursor: pointer;
}

.service .service-box h3 {
    margin-bottom: 12px;
    font-size: 19px;
}

.service .service-box p {
    text-align: center;
    color: #919191;
    margin-bottom: 20px;
}

/*login form*/


.login-form {
    width: 100%;
    height: 135vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: url(loging_bg.png);
    background-size: cover;
    background-position: center;
    padding-top: 350px;
}

.login-form .left {
    width: 650px;
}

.login-form .right {
    position: relative;
    top: -50px;
    left: -60px;
    padding: 50px 80px;
}

.login-form .right h1 {
    font-family: prevattscriptssk;
    font-size: 45px;
    margin-bottom: 40px;
}

.login-form .right .user {
    margin-bottom: 5px;
}

.login-form .right .user {
    border: 2px solid #c72092;
    border-radius: 5px;
    width: 350px;
    height: 40px;
    display: flex;
}

.login-form .right .user i {
    position: relative;
    top: 9px;
    left: 15px;
    color: #c72092;
}

.login-form .right .user .username {
    position: relative;
    left: 9%;
    width: 295px;
    background: none;
    outline: none;
    border: none;
    display: flex;
    font-size: 15px;
}

.login-form .right .passworg-tag {
    margin: 15px 0 5px 0;
}

.login-form .right .password {
    border: 2px solid #c72092;
    border-radius: 5px;
    width: 350px;
    height: 40px;
    display: flex;
}

.login-form .right .password i {
    position: relative;
    top: 9px;
    left: 15px;
    color: #c72092;

}

.login-form .right .password input {
    position: relative;
    left: 9%;
    width: 295px;
    background: none;
    outline: none;
    border: none;
    display: flex;
    font-size: 15px;

}

::-webkit-input-placeholder {
    color: black;
    opacity: 0.8;
}

.login-form .right .forget {
    position: relative;
    left: 60%;
    margin: 60px 0 10px 0;
    cursor: pointer;
}

.login-form .right button {
    width: 350px;
    color: white;
    padding: 7px 20px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    background: linear-gradient(to right, #c72092, #6c14d0);
}

.login-form .right .login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.login-form .right .login-icon a {
    width: 30px;
    height: 30px;
    margin: 0 2px;
    border-radius: 50%;
    background: #f3f3f3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

.login-form .right .login-icon img {
    width: 20px;
    margin: 5px 5px;
}

.login-form .left img {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 600px;
    margin-top: -290px;
}

/*footer*/

footer {
    width: 100%;
}

footer .footer-main {
    width: 100%;
    background: #f3f1f1;
    display: flex;
    justify-content: space-around;
}

footer .footer-main .tag {
    margin: 10px 0;
}

footer .footer-main .tag .center {
    text-align: center;
}

footer .footer-main .tag h1 {
    font-size: 25px;
    margin: 25px 0;
    color: #1c0080;
}



footer .footer-main .tag a {
    display: block;
    color: black;
    text-decoration: none;
    margin: 9px 0
}

footer .footer-main .tag a i {
    padding: 0 10px;
    transition: 0.3;
}

footer .footer-main .tag a i:hover {
    color: #c72092;
}

footer .footer-main .tag .social-link {
    display: flex;
}

footer .footer-main .tag .social-link a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    color: black;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 0 5px;
    z-index: 10;
    overflow: hidden;
}

footer .footer-main .tag .social-link a .fa-brands {
    font-size: 15px;
    line-height: 30px;
    z-index: 10;
    position: relative;
    transition: 0.5s;
}

footer .footer-main .tag .social-link a:hover i {
    color: white;
}

footer .footer-main .tag .social-link a::after {
    content: '';
    width: 100%;
    top: 0;
    left: -90;
    background: linear-gradient(to right, #c72092, #6c14d0);
    position: absolute;
    z-index: -10;
    transition: 0.5s;
}

footer .footer-main .tag .social-link a:after::after {
    left: 0;
}

footer .footer-main .tag .search-bar {
    width: 230px;
    height: 30px;
    background: rgb(202, 202, 202);
    border-radius: 25px;
}

footer .footer-main .tag .search-bar input {
    width: 200px;
    padding: 2px 0;
    position: relative;
    top: 17%;
    left: 6%;
    border: none;
    background: none;
    outline: none;
    font-size: 13px;

}

footer .footer-main .tag .search-bar button {
    padding: 7px 15px;
    background: linear-gradient(to right, #c72092, #6c14d0);
    border: none;
    margin-top: 15px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
}