* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Risque", serif;
    font-weight: 400;
    font-style: normal;
}
html {
    font-size: 60%;
    overflow-x: hidden;
}
:root {
    --bg-color:black;
    --second-bg-color:black;
    --text-color:white;
    --main-color:#00ff51;
}
body {
    background-color: var(--bg-color);
    color: var(--text-color);
}
body {
    cursor: url(cr.png) , auto;
}
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 2rem 12%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur (10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}



#menu-icon {
    font-size: 3.6rem;
    color: var(--main-color);
    display: none;
}
.logo {
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}
.logo:hover {
    transform: scale(1.1);
}
span {
    color: var(--main-color);
    background-image: url(g1.jpg);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 12px var(--main-color) ;
}
.navbar a {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-left: 4rem;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
    background: linear-gradient(45deg, rgb(47, 255, 0), rgb(20, 108, 0));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.navbar a:hover {
    border-bottom: 3px solid var(--main-color);
    color: var(--main-color);
}
section {
    min-height: 100vh;
    padding: 10rem 12px;
}
.home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
}

/*home background*/
.home {
    background: url(2.jpg);
}


.home-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
.home-content h1 {
    font-size: 8rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;
}
.home-content h3 {
    font-size: 4rem;
    margin: 1rem 0;
}
.home-content p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
}
.home-img img {
    width: 33vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--main-color);
    transition: 0.4s ease-in-out;
}



.home-img img:hover {
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color),
                0 0 100px var(--main-color);
}
.social-icon a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 0.5rem;
    transition: 0.3s ease;
}
.social-icon a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
    transform: scale(1.2)translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    
}
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    border-radius: 9rem;
    font-size: 1.7rem;
    color: black;
    border: 3px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color);
}
.btn-group a:nth-of-type(2) {
    background-color: rgba(0, 0, 0, 0.096);
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px transparent;
}
.btn-group a:nth-of-type(2):hover {
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
    color: rgb(0, 0, 0);
}

/* || project */ 

.projects {
    background-color: var(--second-bg-color);
}
.projects-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    place-items: center;
    gap: 3rem;
    row-gap: 5rem;
}
.project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 3rem;
    gap: 2rem;
    padding: 5rem 2rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 5px var(--main-color);
    transition: 0.3s ease;
}
.project-card:hover {
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color);
    transform: scale(1.02);            
}
.project-card img {
   max-width: 300px;
   border-radius: 2rem;
   object-fit: cover; 
}
.project-card h3 {
    font-size: 2rem;
    color: rgb(17, 252, 0);
}
.project-card a {
    font-size: 19px;
} 
/* || services */
.services {
    background-color: var(--second-bg-color);
}
.services-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    place-items: center;
    gap: 3rem;
    row-gap: 5rem;
}
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 3rem;
    gap: 2rem;
    padding: 3rem 4rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 5px var(--main-color);
    transition: 0.3s ease;
}

.service-card .pricee {
    display: inline-block;
    padding: 1rem 2rem;
    background: black;
    border-radius: 2rem;
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    border: 2px solid #00ff51;
    font-weight: 700;
}

.service-card:hover {
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color);
    transform: scale(1.02);            
}
.service-card img {
   max-width: 300px;
   border-radius: 2rem;
   object-fit: cover; 
}


.service-card p {
    font-size: 1.9rem;
}
.service-card .deluxe {
    color: rgb(255, 255, 255);
}
::-webkit-scrollbar {
    width: 17px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
::-webkit-scrollbar-track {
    background-color: rgb(2, 99, 1);
}
.heading {
    text-align: center;
    font-size: 7rem;
    margin: 5rem 0;
}
/* || skills */
.skills-box {
    padding: 16px 16px;
}

.skills {
    min-height: auto;
    padding-bottom: 7rem;
    background: var(--second-bg-color);
}
.skills .skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}
.skills-row .skills-column {
    flex: 1 1 40rem;
}
.skills-column .title {
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
    padding-left: 15px;
}

.skills-box .skills-content {
    position: relative;
    border: .2rem solid var(--main-color);
    border-radius: .7rem;
    padding: .5rem 1.5rem;
    z-index: 1;
    overflow: hidden;
}

.skills-box .skills-content:hover:before {
    width: 100%;
}

.skills-content .progress {
    padding: 1rem 0;
}

.skills-content .progress h3 {
   font-size: 1.9rem;
   display: flex;
   justify-content: space-between;
}


.skills-content .progress h3 span {
    color: var(--text-color);
}
.skills-content .progress .bar {
    height: 2.5rem;
    border-radius: .6rem;
    border-bottom: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem 0;
}
.skills-content .progress .bar {
    display: block;
    height: 100%;
    border-radius: .3rem;
}



/* || contact */
.contact {
    background-color: var(--second-bg-color);
}
.contact h2 {
    margin-bottom: 3rem;
    color: var(--text-color);
}
.contact form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 5rem 0;
    text-align: center;
}
.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 2.5rem;
    font-size: 1.8rem;
    color: var(--text-color);
    background-color: var(--bg-color);
    border-radius: 2rem;
    border: 2px solid var(--main-color);
    margin: 1.5rem 0;
    resize: none;
}

.contact form .input-box input:focus {
    background-color: #085c09;
}
.contact form textarea:focus {
    background-color: #085c09;
}


.btn-send {
    display: flex;
    gap: 1.5rem;
    background-color: rgba(0, 0, 0, 0.096);
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px transparent;
    padding: 1rem 3rem;
    border-radius: 9rem;
    font-size: 2.2rem;
    font-weight: 700;
    transition: .4s ease;
    cursor: pointer;
}

.btn-send:hover {
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
    color: rgb(0, 0, 0);
}


::selection {
    background-color: #1c6715;
    color: rgb(0, 255, 30);
}

/* || footer */
.footer {
    background-color: var(--bg-color);
    padding: 50px 0;
}
.footer .social-icon {
    text-align: center;
}
.footer ul {
    text-align: center;
    font-size: 1.8rem;
}
.footer ul li {
    display: inline-block;
    margin-left: 20px;
    background: linear-gradient(45deg,rgb(20, 108, 0), rgb(47, 255, 0));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer ul li a {
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease-in-out;
}
.footer ul li a:hover {
    border-bottom: 3px solid var(--main-color);
}
.footer .copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    background: linear-gradient(45deg, rgb(255, 0, 0), rgb(255, 247, 0));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* || rensponsive */
@media screen and (max-width:1024px) {
    #menu-icon {
        display: block;
    }
    .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 50%;
    padding: 1rem 3rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    border-bottom-left-radius: 2rem;
    display: none;
}
   .navbar a {
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
    color: var(--text-color);
}
.navbar.active {
    display: block;
}
.home {
    flex-direction: column-reverse;
    margin: 5rem 0;
    gap: 5rem;
}
.home-content {
    align-items: center;
    text-align: center;
}
.home-img img {
    width: 52vw;
}
.about {
    flex-direction: column-reverse;
    text-align: center;
}
.about h2 {
    text-align: center;
    margin: 2rem 0;
}
.about img {
    width: 52vw;
}
.contact form {
    flex-direction: column;
}
.project-card {
    margin: 0 auto;
}
}




.container {
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .title {
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fdfdfd;
    line-height: 1.2;
}
/* || review */
.review {
    padding: 100px 0;
}
.review-item {
    background-color: #000000;
    padding: 30px;
    border-radius: 20px;
}
.review-item .info {
    display: flex;
    align-items: center;
}
.review-item img {
    max-width: 80px;
    border-radius: 50%;
    margin-right: 20px;
    vertical-align: middle;
}
.review-item .name {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    color: rgb(0, 255, 34);
    line-height: 1.2;
}
.review-item .name1 {
    color: orange;
    font-size: 24px;
}

.review-item .name2 {
    color: blue;
    font-size: 24px;
}

.review-item .job {
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    font-size: 13px;
}


.review-item p {
    margin-top: 20px;
    color: rgb(255, 255, 255);
    font-size: 15px;
}
.review-item .rating {
    margin-top: 15px;
    font-size: 14px;
    color: hsl(127, 100%, 50%);
}
.review-item .rating1 {
    margin-top: 15px;
    font-size: 14px;
    color: orange;
}
.review .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: auto;
}
.review .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background-color: rgb(2, 254, 15);
}
/* || scroll and details */
details {
    color: #00ff51;
    font-size: 17px;
}
summary::marker {
    content: '';
}
.included {
    color: rgb(252, 252, 252);
}
.standart {
    color: whitesmoke;
}
.vip {
    color: rgb(255, 255, 255);
}
.vipnam {
    color: #ffffff;
}
 



/*pagination*/

.pagination {
    text-align: center;
    font-size: 2rem;
}
.pagination a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 8px 15px;
    display: inline-block;
}
.pagination a.active {
    background-color: #00ff51;
    font-weight: bold;
    border-radius: 5px;
}
.pagination a:hover:not(.active) {
    background-color: gold;
    border-radius: 5px;
}

/* img*/

.brands_img {
    width: 100px;
    opacity: 0.4;
    transition: 0.3s;
}

.brands_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.brands_img:hover {
    opacity: 1;
}

@media (max-width: 715px) {
    .brands_container {
        display: grid;
    }
}



.loader {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.disppear {
    animation: cool 2s forwards;
}

@keyframes cool {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}