@import url('https://fonts.googleapis.com/css?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --yellow: aqua;
    --light-yellow: #7c7c7c;
    --black: #ffffff;
    --light-color: #0032f9;
    --border: .1rem solid rgba(0,0,0,.1);
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1); 
}
*{
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.2s linear;
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

section{
    padding: 2rem 9%;
}
body{
    background-color: black;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: .5rem;
    background: var(--light-yellow);
    color: var(--black);
    font-weight: 500;
    font-size: 1.7rem;
    font-weight: 600;
    cursor: pointer;        
    padding: .8rem 3rem;
}
.btn:hover{ 
    background: var(--yellow);
} 
.header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    backdrop-filter: blur(10px); /* Adjust the blur radius as needed */
    background: rgba(255, 255, 255, 0.096);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
}
.logo {
    font-size: 3rem;
    color: white;
    font-weight: bolder;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.logo:hover {
    transform: scale(1.2);
    font-weight: bolder;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7),
                 0 0 20px rgb(0, 255, 255),
                 0 0 30px rgba(0, 255, 255, 0.7);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

span {
    color: aqua;
}
.header .navbar a{
    font-size: 1.8rem;
    margin:0 1rem;
    font-weight: bolder;
    color: white;
}
.header .navbar a:hover {
    color: aqua;
    text-shadow: 0 0 50px aqua;
    transition: 1s;
}
/* .header i .btn{
    margin-top: 0;    
    font-size: 2.5rem;
    color: aqua;
    display: inline-block;
    font-size: 2.5rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    font-weight: 500;
    transition: all 0.5s ease;
    background: transparent;
}
.header i .btn:hover{
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;  
} */

.header .btn{
    margin-top: 0;    
    font-size: 2.5rem;
    color: aqua;
    display: inline-block;
    font-size: 2.5rem;
    border: 2px solid rgb(0, 207, 207);
    border-radius: 1.6rem;
    font-weight: 500;
    transition: all 0.5s ease;
    background: transparent;
}
.header .btn:hover{
    background-color: rgb(0, 255, 255);
    color: rgb(0, 0, 0);
    box-shadow: 0 0 18px rgb(0, 255, 255);  
} 
.header #login-btn i{
    font-size: 2.5rem;
    color: aqua;
    cursor: pointer;
    display: none;
}
#menu-btn{
    font-size: 2.5rem;
    color: aqua;
    cursor: pointer;
    display: none;
}

.header.active{
    box-shadow: var(--box-shadow);
    padding: 2rem 9%;
}

.login-form-container{
    position: fixed;
    top: 105%; left: 0;
    z-index: 1000;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.278);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.login-form-container.active{
    top: 0;
    opacity: 1;
    background: rgba(0, 0, 0, 0.775);
}

.login-form-container form{
    padding: 2rem;
    margin: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    width: 40rem;
    border: 2px solid aqua;
    border-radius: 10px;
}
.login-form-container form .buttons{
    display: flex;
    align-items: center;
    gap: 1rem;
}


.login-form-container form h3{
    color: white;
    font-size: 2.5rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.login-form-container form .box{
    margin: .7rem 0;
    width: 100%;
    text-transform: none;
    color: black;
    font-size: 1.6rem;
    padding: 1rem 1.2rem;
    border: var(--border);
    border-radius: .5rem;
}

.login-form-container form .btn {
    display: block;
    width: 100%;
    margin: .5rem 0;
    padding: 1rem 1.2rem;
    color: aqua; /* Change text color to aqua */
    font-size: 1.6rem;
    border: 2px solid aqua; /* Change border color to aqua */
    border-radius: .5rem;
    font-weight: 500;
    background: transparent;
    transition: all 0.5s ease;
    text-transform: uppercase;
}

.login-form-container form .btn:hover {
    background-color: aqua; /* Change hover background to aqua */
    color: rgb(12, 0, 0);
    box-shadow: 0 0 18px aqua; /* Apply the neon effect with aqua color */
}

.login-form-container form p a {
    color: aqua; /* Change link color to aqua */
    text-decoration: underline;
}


.login-form-container form p{
    padding: 1rem;
    font-size: 1.5rem;
    color: white;
}


.login-form-container #close-login-form{
    position: absolute;
    top: 1.5rem; right: 2.5rem;
    font-size: 5rem;
    color: white;
    cursor: pointer;
}









/* =========home section -================= */
.home {
    padding-top: 10rem;
    text-align: center;
    overflow-x: hidden;
}   
.home h1 {
    font-size: 6vw;
    text-transform: uppercase;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: aqua;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.7),
                 0 0 10px rgba(0, 255, 255, 0.7),
                 0 0 20px rgba(0, 255, 255, 0.7);
    margin-bottom: 1rem; /* Adjust this value to reduce the space below the heading */
}
.home img {
    width: 100%;
    margin: -10rem 0; /* Adjust these values to reduce the space above and below the image */
    
}
/* .header i .btn{
    margin-top: 0;    
    font-size: 2.5rem;
    color: aqua;
    display: inline-block;
    font-size: 2.5rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    font-weight: 500;
    transition: all 0.5s ease;
    background: transparent;
}
.header i .btn:hover{
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;  
} */
.home .btn {
    margin-top: 5rem; /* Adjust this value to reduce the space above the button */
    padding: .8rem 3rem;
    border-radius: .5rem;
    color: rgb(0, 0, 0);
    box-shadow: 0 0 18px aqua; 
    background: aqua;
    font-weight: 500;
    font-size: 1.7rem;
    cursor: pointer;
}








.icons-container{
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    background: linear-gradient(135deg, #00fffbb0, #00ccff82, #0080ff9f); 
}
/* .header i .btn{
    margin-top: 0;    
    font-size: 2.5rem;
    color: aqua;
    display: inline-block;
    font-size: 2.5rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    font-weight: 500;
    transition: all 0.5s ease;
    background: transparent;
}
.header i .btn:hover{
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;  
} */
.icons-container .icons{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: transparent;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    box-shadow: var(--box-shadow);
    background-color: .5rem;
}
.icons-container .icons:hover{
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;
}
.icons-container .icons i{
    height: 5.5rem;
    width: 5.5rem;
    line-height: 5.5rem;
    font-size: 2.5rem;
    border-radius: 50%;
    background: #ffffffb4;
    color: aqua;
    text-align: center;
}

.icons-container .icons .content h3{
    color: white;
    font-size: 2.5rem;
}
.icons-container .icons .content p{
    color: white;
    font-size: 1.5rem;
}   
.icons-container .icons:hover i{
    background-color: aqua;
    color: rgb(0, 0, 0);
    box-shadow: 0 0 10px aqua;
}
.icons-container .icons:hover .content h3{
    color: #000000;
}
.icons-container .icons:hover .content p{
    color: #000000;
}
.heading{
    text-align: center;
    padding-bottom: 2rem;
    font-size: 4.5rem;
    color: var(--black);
}
.heading span{
    position: relative;
    z-index: 0;
    color: var(--black);
}
.heading span::before{
    content: '';
    position: absolute;
    bottom: 1rem; left: 0;
    height: 100%; width: 100%;
    z-index: -1;
    background: var(--yellow);
    clip-path: polygon(0 90%, 100% 80%, 100% 100%, 0% 100%);
}








.vehicles .vehicles-slider{
    padding-top: 5rem;
}
.vehicles .vehicles-slider .box{
    text-align: center;
}
.vehicles .vehicles-slider .box img{
    width: 100%;
    opacity: .5;
    transform: scale(.8);
}
.vehicles .vehicles-slider .box .content{
    transform: scale(0);
    padding-top: 1rem;
}
.vehicles .vehicles-slider .swiper-slide-active img{
    opacity: 1;
    transform: scale(1);
}
.vehicles .vehicles-slider .swiper-slide-active .content{
    transform: scale(1);
}
.vehicles .vehicles-slider .box .content h3{
    font-size: 2.5rem;
    color: aqua;
    font-weight: bolder;
}
.vehicles .vehicles-slider .box .content .price{
    font-size: 2.5rem;
    color: white;
    padding: 1rem 0;
    font-weight: bolder;
}
.vehicles .vehicles-slider .box .content .price span{
    font-size: 1.7rem;
    color: aqua;
    font-weight: bold;
}
.vehicles .vehicles-slider .box .content p{
    font-size: 1.3rem;
    padding: 1rem;
    padding-top: 1.5rem;
    border-top: var(--border);
    color: white;
}
.vehicles .vehicles-slider .box .content p span{
    color: aqua;
    font-size: .8rem;
    padding: 0 .5rem;
}
.swiper-pagination-bullet-active{
    background: aqua;
    margin-top: 100px;
}






/* .header i .btn{
    margin-top: 0;    
    font-size: 2.5rem;
    color: aqua;
    display: inline-block;
    font-size: 2.5rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    font-weight: 500;
    transition: all 0.5s ease;
    background: transparent;
}
.header i .btn:hover{
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;  
} */
.services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
    
}
.services .box-container .box{ 
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
}
.services .box-container .box i{ 
    height: 6rem;
    width: 6rem;
    line-height: 6rem;
    font-size: 2.5rem;
    color: aqua;
    background: rgb(35, 35, 35);
    border-radius: 50%;
    margin-bottom: 1rem;
}
.services .box-container .box h3{
    color: aquamarine;
    font-size: 2.2rem;
}
.services .box-container .box p{
    color: aqua;
    font-size: 1.4rem;
    padding: 1rem 0;
    line-height: 1.8;
}
.services .box-container .box:hover{
    background: var(--black);
    transform: scale(1.1);
    transition: .5s;
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;  
}
.services .box-container .box:hover h3{
    color: #fff;
    background-color: aqua;
    color: rgb(0, 0, 0);
    box-shadow: 0 0 18px aqua;  
}
.services .box-container .box:hover p{
    color: #eee;
    background-color: aqua;
    color: rgb(0, 0, 0);
    box-shadow: 0 0 18px aqua;  
}
.services .box-container .btn{
    background-color: aquamarine;
    color: black;
}
.services .box-container .btn:hover{
    background-color: white;
    color: black;
}




/* .header i .btn{
    margin-top: 0;    
    font-size: 2.5rem;
    color: aqua;
    display: inline-block;
    font-size: 2.5rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    font-weight: 500;
    transition: all 0.5s ease;
    background: transparent;
}
.header i .btn:hover{
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;  
} */
.featured .featured-slider{
    padding: 1rem;
    padding-bottom: 4rem;
}
.featured .featured-slider .box{
    text-align: center;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 2px solid aqua;
    border-radius: 1.6rem;
}
.featured .featured-slider .box img{
    height: 20rem;
    width: 100%;
    padding: 2rem;
    object-fit: cover;
}
.featured .featured-slider .box:hover img{
    transform: scale(1.1);
}
.featured .featured-slider .box h3{
    font-size: 2.2rem;
    color: aquamarine;
}
.featured .featured-slider .box .stars{
    padding: 1rem 0 ;
}
.featured .featured-slider .box .stars i{
    font-size: 1.7rem;
    color: var(--yellow);
}
.featured .featured-slider .box .price{
    font-size: 2.5rem;
    color: var(--black);
}
.featured .featured-slider .btn{
    background-color: aquamarine;
    color: rgb(255, 255, 255);
    font-weight: bolder;
}
.featured .featured-slider .btn:hover{
    background-color: aqua;
    color: rgb(0, 0, 0);
    box-shadow: 0 0 18px aqua;
}
/* @media (max-width: 991px) {
    .featured .featured-slider .box img {
        height: 15rem; 
    }
} */
@media (max-width: 768px) {
    .featured .featured-slider .box img {
        height: 18rem; 
    }
}

@media (max-width: 480px) {
    .featured .featured-slider .box img {
        height: 28rem;
    }
}






/* .header i .btn{
    margin-top: 0;    
    font-size: 2.5rem;
    color: aqua;
    display: inline-block;
    font-size: 2.5rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    font-weight: 500;
    transition: all 0.5s ease;
    background: transparent;
}
.header i .btn:hover{
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;  
} */
.newsletter {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.newsletter h3 {
    color: var(--black);
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.newsletter p {
    color: white;
    font-size: 1.5rem;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.newsletter form {
    margin: 1rem auto;
    max-width: 60rem;
    height: 5rem;
    display: flex;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: 5rem;
    position: relative;
    z-index: 1;
}

.newsletter form input[type="email"] {
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    padding: 0 2rem;
}

.newsletter form input[type="submit"] {
    height: 100%;
    width: 17rem;
    font-size: 1.8rem;
    color: var(--black);
    background: aquamarine;
    color: black;
    cursor: pointer;
}

.newsletter form input[type="submit"]:hover {
    background-color: aqua;
    color: black;
    box-shadow: 0 0 18px aqua;  
}








/* .header i .btn{
    margin-top: 0;    
    font-size: 2.5rem;
    color: aqua;
    display: inline-block;
    font-size: 2.5rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    font-weight: 500;
    transition: all 0.5s ease;
    background: transparent;
}
.header i .btn:hover{
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;  
} */
.reviews .reviews-slider{
    padding-bottom: 3rem;
}
.reviews .reviews-slider .box{
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    opacity: .4;
    transform: scale(.9);
}
.reviews .reviews-slider .swiper-slide-active{
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--box-shadow);
    border: 2px solid aqua;
    border-radius: 1.6rem;
    box-shadow: 0 0 18px aqua;
}
.reviews .reviews-slider .box img{
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    margin-bottom: 2rem;
}.reviews .reviews-slider img:hover{
    box-shadow: 0 0 25px aqua;
}
.reviews .reviews-slider .box .content p{
    font-size: 1.4rem;
    color: aqua;
    padding: 1rem 0;

}
.reviews .reviews-slider .box .content h3{
    font-size: 2rem;
    color: var(--black);
    padding-bottom: .5rem;
}
.reviews .reviews-slider .box .content .stars i{
    font-size: 1.7rem;
    color: var(--yellow);
}





/* .header i .btn{
    margin-top: 0;    
    font-size: 2.5rem;
    color: aqua;
    display: inline-block;
    font-size: 2.5rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    font-weight: 500;
    transition: all 0.5s ease;
    background: transparent;
}
.header i .btn:hover{
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;  
} */
.contact .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
}
.contact .row .map{
    flex: 1 1 42rem;
    width: 100%;
    padding: 2rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    box-shadow: var(--box-shadow);
}
.contact .row .map:hover{
    box-shadow: 0 0 20px aqua;
}
.contact .row form{
    flex: 1 1 42rem;
    padding: 2rem;
    border: var(--border);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
}
.contact .row form h3{
    font-size: 3rem;
    color: var(--black);
}
.contact .row form .box{
    margin: .7rem;
    width: 100%;
    border: var(--border);
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    border-radius: .5rem;
}  
.contact .row form textarea{
    height: 15rem;
    resize: none;
}






/* .header i .btn{
    margin-top: 0;    
    font-size: 2.5rem;
    color: aqua;
    display: inline-block;
    font-size: 2.5rem;
    border: 2px solid aqua;
    border-radius: 1.6rem;
    font-weight: 500;
    transition: all 0.5s ease;
    background: transparent;
}
.header i .btn:hover{
    background-color: aqua;
    color: white;
    box-shadow: 0 0 18px aqua;  
} */
.footer{
    background: linear-gradient(135deg, #00fffbb0, #00ccff82, #0080ff9f); 
}
.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(25rem, 1fr));
    gap: 1.5rem;
}
.footer .box-container .box h3{
    color: aqua;
    font-size: 2.2rem;
    padding: 1rem 0;
}
.footer .box-container .box:hover h3{
    color: white;
    font-size: 2.2rem;
    padding: 1rem 0;
}
.footer .box-container .box a{
    color:white;
    font-size: 1.5rem;
    display: block;
    padding: 1rem 0;
}
.footer .box-container .box a:hover{
    color: aqua;
}
.footer .box-container .box a i{
    padding-right: .5rem;
    color: white;
}
.footer .box-container .box a:hover i{
    padding-right: 2rem;
    color: aqua;
}   






















@media(max-width:991px){
    html{
        font-size: 50%;
    }
    .header{
        padding: 2.5rem;
    }
    .header.active{
        padding: 2rem;
    }
    section{
        padding: 2rem;
    }
}

@media(max-width:768px){

    #menu-btn{
        display: block;
    }

    #menu-btn.fa-times{
        transform: rotate(180deg);
    }

    .header #login-btn i{
        display: block;
    }  

    .header #login-btn .btn{
        display: none;
    }   

    .header .navbar{
        position: absolute;
        top: 99%; left: 0; right: 0;
        background: black;
        color: white;
        border-top: var(--border); 
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    } 

    .header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .header .navbar a{
        display: block;
        margin: 2rem;
        font-size: 2rem;
    }
}


@media(max-width:450px){
    html{
        font-size: 40%;
    }
    .heading{
        font-size: 3rem;
    }
}
