* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    outline: none;
    border: none;
    scroll-behavior: smooth;
    font-family: "Poppins", serif;
}

:root {
    --text-color: #ededed;
    --bg-color: #161616;
    ---main-color: #444445;
    --ad-color: powderblue;

    --h1-font: 6rem;
    --h2-font: 3rem;
    --p-font: 1rem;
}

body {
    background-color: #000000;
    color: var(--text-color);
}
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #ededed;
}

body::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #ededed;
}
.container{
    padding: 70px 10% 60px;
}
section {
    padding: 70px 10% 60px;
}



/* Start Header */
.navbar{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    padding: 15px 12%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;
    color: var(--text-color);
}
nav.sticky{
    background: transparent;
    backdrop-filter: blur(3px);
}
.navbar ul li{
    list-style: none;
}
.navbar ul li a{
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 200;
    margin: 15px 22px;
    transition: all .90 ease;
}
.navbar ul li a:hover{
    color: var(--ad-color);
}
.navbar ul li a.active{
    color: #7dafff;
}
.navbar ul li a.active:hover{
    color: #7dafff;
}
.navbar .h-right{
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar .h-right a{
    text-decoration: none;
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 200;
    padding: 15px 5px;
    transition: all .90 ease;
}
.navbar .h-right a:hover{
    color: var(--ad-color);
    transform: translateY(-3px);
}
.navbar .h-right i{
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 200;
    transition: all .90 ease;
    cursor: pointer;
}
.navbar .h-right i:hover{
    color: var(--ad-color);
    transform: translateY(-3px);
}

/* End Header */
/* Start Home Section */
.home {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(/asset/img/moon.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    align-items: center;
    background-position: bottom center;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}

.home .home-text p {
    text-align: center;
    font-size: 40px;
    color: var(--text-color);
    font-weight: 200;
}

/* End Home Section */
/* Start design Section */
.desgin {
    display: grid;
    grid-template-columns: repeat(2, 0.6fr);
    align-items: center;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(/asset/img/stars.jpg);
    /* background-color: #171717; */
    gap: 7rem;
    color: var(--text-color);
}

.desgin .desgin-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.desgin .desgin-text h1 {
    font-size: 32px;
    font-weight: 300;
}

.desgin .desgin-text h1 span {
    color: var(--ad-color);
    /* text-transform: uppercase; */
}

.desgin .desgin-text p {
    text-transform: capitalize;
    font-weight: 200;
    line-height: 30px;
}

/* End design Section */
/* Start feature Section */
.feature {
    margin-bottom: 60px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(/asset/img/stars.jpg);
}

.feature .text-service {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
}

.feature .text-service h1 {
    font-size: var(--h2-font);
    font-weight: 200;
}

.box-services{
    display: flex;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.box{
    position: relative;
    width: 325px;
    height: 325px;
    background-color:  #161616;
    border-radius: 50%;
    overflow: hidden;
    /* background-image: url(/image/moonback.png); */
    cursor: pointer;
    margin-bottom: 10px;
}
.box::before{
    content: '';
    position: absolute;
    inset: -20px 0px;
    background: linear-gradient(315deg, #ededed, #5d5d5d00);
    transition: 0.5s;
    animation: animate 4s linear infinite;
}
.box:hover::before{
    inset: -20px 0;
}
@keyframes animate{
    0%{
        transform: rotate(0deg);
    }
    0%{
        transform: rotate(350deg);
    }
}
.box::after{
    content: '';
    position: absolute;
    inset: 1px;
    /* background-image: url(/image/moonbac.png); */
    background-color: #161616;
    border-radius: 50%;
    z-index: 1;
}
.contents {
    position: absolute;
    inset: 60px;
    /* border: 1px solid #ededed; */
    z-index: 3;
    border-radius: 30%;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.contents img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease;
}
.box:hover .contents img{
    opacity: 0;
    z-index: -1;
}
.box .contents h3 {
    font-size: 20px;
    font-weight: 400;
}
.box .contents p {
    font-size: 13px;
    font-weight: 200;
}
.box .contents .btn-serivce {
    margin-top: 10px;
}
.box .contents .btn-serivce a{
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #ededed;
    transition: all 0.5s ease;
    color: #161616;
    display: none;
}
.box .contents .btn-serivce a:hover{
    background-color: #161616;
    color: #ededed;
    border: 1px solid #ededed;
    
}
/* End feature Section */
/* Start Project Section */
.project {
    color: var(--text-color);
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(/asset/img/stars.jpg);
}

.project .center-text {
    text-align: center;
}

.project .center-text h2 {
    font-size: var(--h2-font);
    font-weight: 200;
    margin-bottom: 40px
}
.card-list .card-item {
    list-style: none;
}


.card-wrapper {
    max-width: 1500px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-list .card-item .card-link {
    user-select: none;
    display: block;
    background-color: #161616;
    padding: 18px;
    border-radius: 12px;
    color: #ededed;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.card-list .card-item .card-link:hover {
    border-color: #ededed;
}

.card-list .card-link .card-image {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 13/9;
    object-fit: cover;
}

.card-list .badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 300;
    margin: 10px 0 14px;
    background: wheat;
    border-radius: 50px;
    box-shadow: 0 1px 0.0001rem #161616;
}

.card-list .card-item .card-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.card-list .card-item .card-text {
    font-size: 0.95rem;
    font-weight: 200;
    margin-bottom: 8px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.card-list .card-item .card-button {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin: 20px auto;
    transition: all .5s ease;
    transform: rotate(-45deg);
    border: 2px solid #ededed;
    cursor: pointer;
}

.card-list .card-link .card-button:hover {
    background-color: #161616;
    color: #ededed;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
    background-color: #ededed;
    bottom: -3rem;
}
.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translate3d(-30px, 0, 0);
    transition: all .5s ease;
}
.card-wrapper .sliders {
    color: #ededed;
}

/* End Project Section */
/* Start Contact Section */
.contact {
    text-align: center;
    padding: 70px 15% 60px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(/asset/img/stars.jpg);
    padding: 40px;
}
.contact h2 {
    font-size: var(--h2-font);
    font-weight: 200;
    margin-bottom: 40px
}
.contact .contact-form{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    row-gap: 20px;
}
.contact .contact-form .form-group{
    margin-bottom: 20px;
}
.contact .contact-form .form-group label{
    font-weight: 200;
}
.contact .contact-form .form-group input,
.contact .contact-form .form-group textarea{
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ededed;
    width: 100%;
}
.contact .contact-form .form-group input:focus,
.contact .contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}
.contact .contact-form .form-group input::placeholder,
.contact .contact-form .form-group textarea::placeholder {
    color: #999;
}
.contact .contact-form button{
    width: 100%;
    height: 60px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ededed;
    background-color: #ededed;
    color: #161616;
    cursor: pointer;
    transition: all .3s ease;
}
.contact .contact-form button:hover{
    background-color: #161616;
    color: #ededed;
}
/* End Contact Section */
/* Start Footer Section */
.footer{
    padding: 70px 10%;
    background-color: #161616;
}
.footer .row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer .row .col-md-3{
    margin-bottom: 20px;
}
.footer .row .col-md-3 h5{
    margin-bottom: 20px;
}
.footer .row .col-md-3 ul{
    list-style: none;
}
.footer .row .col-md-3 ul li{
    margin-bottom: 10px;
}
.footer .row .col-md-3 ul li a{
    text-decoration: none;
    color: #ededed;
    transition: all .3s ease;
}
.footer .row .col-md-3 ul li a:hover{
    color: #7dafff;
}
.footer .row .social-icons{
    display: flex;
    gap: 10px;
}
.footer .social-icons a{
    color: #ededed;
    transition: all .3s ease;
    text-align: center;
}
.footer .social-icons a:hover{
    color: #7dafff;
}
.footer .col-md-3 .social-icons a i{
    font-size: 2.5rem;
    text-align: center;
}
.footer .col-md-3 .social-icons a:hover i{
    color: #b7babf;
}
.footer .col-md-3 .social-icons a:hover{
    color: #7dafff;
}
/* End Footer Section */
/* Start Copy company name */
.copyright {
    text-align: center;
    background-color: #161616;
    font-size: 12px;
    padding: 10px 0;
}
.copyright p {
    margin: 0;
}
.copyright p span {
    color: var(--primary-color);
}
.copyright p span:hover {
    text-decoration: underline;
}

/* End Copy company name */


/* Start Project Single */
.project-single {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(/asset/img/stars.jpg);
    margin: 2rem;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.project-single h2 {
    font-size: var(--h2-font);
    font-weight: 200;
    margin-bottom: 1rem;
}

.project-single p {
    font-size: var(--p-font);
    margin-bottom: 1rem;
    font-weight: 200;
}

.project-single .project-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.project-single .project-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: all .3s ease;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
    filter: grayscale(75%);
}
.project-single .project-images img:hover{
    transform: scale(1.1);
    cursor: pointer;
    filter: grayscale(0%);
}

hr{
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #ededed;
}
/* End Project Single */
/* Start Projects */
.projects{
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(/asset/img/stars.jpg);
}
.projects .row h2{
    font-size: var(--h2-font);
    font-weight: 200;
    margin-bottom: 40px;
    margin-top: 0;
    text-align: center;
}
.projects .row-card{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    row-gap: 20px;
}
.projects .card{
    width: 22rem;
    background-color: #161616;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease;
    border: 1px solid transparent;
}
.projects .card:hover{
    transform: scale(1.02);
    border: 1px solid #ededed;
}
.projects img{
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 13/9;
    object-fit: cover;
}
.projects .card-body{
    padding: 20px 5px;
}
.projects .card-title{
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ededed;
}
.projects .card-text{
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 1rem;
    color: #ededed;
}
.projects .card-button {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin: 30px 0 5px;
    border: 2px solid #ededed;
    transform: rotate(-45deg);
    cursor: pointer;
}

.projects .card-button:hover {
    background-color: #161616;
    color: #ededed;
}
.projects .card-link{
    user-select: none;
    display: block;
    background-color: #161616;
    padding: 18px;
    border-radius: 12px;
    color: #ededed;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}
.projects .card-link:hover{
    color: #7dafff;
}
.nav-page{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 40px;
}
.nav-page li{
    background-color: #ededed;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease;
}
.nav-page li:hover{
    background-color: #7dafff;
}

.nav-page li a{
    text-decoration: none;
    color: #000;
    transition: all .3s ease;
}
.nav-page li a:hover{
    color: #7dafff;
}
/* End Projects */




















/* Start Media */
@media(max-width:1250px) { 
    .navbar {
        padding: 4px 2%;
    }
    .home{
        padding: 4px 2%;
    }
    .desgin{
        padding: 4px 2%;
    }
    .feature{
        padding: 4px 2%;
    }
    .contact{
        padding: 4px 2%;
    }
    .project{
        padding: 4px 2%;
    }
    form {
        padding: 4px 2%;
    }

    :root {
        --h1-font: 4.6rem;
        --h2-font: 2.8rem;
        --p-font: 15px;
    }

    .home {
        height: 90vh;
    }
    .contact{
        padding: 4px 2%;
    }
    .contact .contact-form{
        width: 100%;
        padding: 4px 2%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        row-gap: 20px;
    }
    .contact .cont-form{
        width: 100%;
    }
    .contact .contact-form .form-group{
        margin-bottom: 20px;
    }
    
    .contact .img-contact {
        display: none;
    }
    .contact .contact-form button{
        margin-top: 25px;
    }
    .project-single .project-images img{
        filter:none;
    }
}

@media(max-width:1050px) { 
    
    .navbar {
        padding: 4px 2%;
    }
    .home{
        padding: 4px 2%;
    }
    .desgin{
        padding: 4px 2%;
    }
    .feature{
        padding: 4px 2%;
    }
    .contact{
        padding: 4px 2%;
    }
    .project{
        padding: 4px 2%;
    }
    form {
        padding: 4px 2%;
    }

    :root {
        --h1-font: 4.6rem;
        --h2-font: 2.8rem;
        --p-font: 15px;
    }

    .home {
        height: 90vh;
    }
    .contact{
        padding: 4px 2%;
    }
    .contact .contact-form{
        width: 100%;
        padding: 4px 2%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        row-gap: 20px;
    }
    .contact .cont-form{
        width: 100%;
    }
    .contact .contact-form .form-group{
        margin-bottom: 20px;
    }
    
    .contact .img-contact {
        display: none;
    }
    .project-single .project-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media(max-width:800px) {
    .navbar .collapse{
        background-color: #161616;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ededed;
    }
    section {
        padding: 45px 10% 35px;
    }
    form {
        padding: 45px 6% 35px;
    }

    .desgin {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature .feature-content {
        display: grid;
        gap: 5px;
    }
    
    .project {
        grid-template-columns: 1fr;
    }

    .project .project-content .box {
        display: grid;
        justify-content: center;
    }
    .card-wrapper {
        margin: 0 10px 25px;
    }

    .card-wrapper .sliders {
        display: none;
    }
    
    .contact-form .all_form{
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    footer {
        padding: 45px 6% 35px;
        text-align: center;
    }

    .footer-dist .footer-link,
    .footer-dist .footer-center,
    .footer-dist .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .box-services{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    
    /* Start Contact Section */
    .contact .center-text h2 {
        font-size: 2rem;
        font-weight: 200;
    }
    .contact-form .all_form{
        display: block;
        width: 100%;
    }
    .contact-form .all_form .from-group,
    .contact-form .from-group{
        margin-bottom: 10px;
    }
    .contact-form .all_form .from-group label,
    .contact-form label{
        text-align: left;
        margin-bottom: 10px;
        font-size: 1rem;
        font-weight: 200;
    }
    .contact-form .all_form .from-group input,
    .contact-form textarea{
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }
    .contact-form .all_form .from-group input:focus,
    .contact-form .from-group textarea:focus {
        border-color: var(--primary-color);
        outline: none;
    }
    .contact-form .all_form .from-group input::placeholder,
    .contact-form .from-group textarea::placeholder {
        color: #999;
    }
    .contact-form button{
        width: 100%;
        margin-top: 20px;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ededed;
        background-color: #ededed;
        color: #161616;
        cursor: pointer;
        transition: all .3s ease;
    }
    .contact-form button:hover{
        background-color: #161616;
        color: #ededed;
    }
    .project-single .project-images {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}


/* End Media */