* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: "Yusei Magic", sans-serif;
}

img {
    width: 100%;
    display: block;
}
/*detals*/

.main-wrapper {
    min-height: 100vh;
   
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.product-div {
    margin: 1rem 0;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: black;
    border-radius: 20px;
    column-gap: 10px;
}

.product-div-left {
    padding: 20px;
}

.product-div-right {
    padding: 20px;
}

.img-container img {
    width: 400px;
    margin: 0 auto;
    border-radius: 5px;
}

.hover-container {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   margin-top: 32px;
}

.hover-container div {
    border: 2px solid #007bff;
    padding: 1rem;
    border-radius: 3px;
    margin: 0 4px 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active {
    border-color: #0063ce !important;
}

.hover-container div:hover {
    border-color: #0063ce !important;
}

.hover-container div img {
    width: 50px;
    cursor: pointer;
}

.product-div-right span {
    display: block;
}

.product-name {
    font-size: 26px;
    margin-bottom: 22px;
    letter-spacing: 1px;
    opacity: 0.9;
    color: whitesmoke;
}

.product-price {
    font-size: 24px;
    font-weight: 500;
    opacity: 0.9;
    color: #007aff;
}


.product-description {
    font-weight: 18px;
    line-height: 1.6;
    opacity: 0.9;
    color: whitesmoke;
    margin-top: 22px;
}




.btn-group button {
    display: inline-block;
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 15px 16px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-group button ion-icon {
    margin-right: 9px;
}

.add-cart-btn {
    background-color: #00ff51;
    border: 2px solid #00ff51;
    margin-right: 8px;
    border-radius: 15px;
}

.add-cart-btn:hover {
    background-color: #007bff;
    color: #000000;
    border: 2px solid #007bff;
}

@media screen and (max-width: 992px){
    .product-div {
        grid-template-columns: 100%;
    }
    .product-div-right {
        text-align: center;
    }
    .product-rating {
        justify-content: center;
    }
    .product-description {
        max-width: 400;
        margin-left: auto;
        margin-left: auto;
    }
}

@media screen and (max-width: 400px) {
    .btn-group button {
        width: 100%;
    }
    
}






















/*detals*/
:root {
    --back-color: blue;
    --text-color: #042c2d;
    --sec-color: #ffffff;
    --pri-color: #b2afaf;
    --btn-color: #007aff;
    --para-color: #777777;
    --foot-color: #f1f2ed;
    --btm-color: #696b6a;

    --big-fonts: 7.5rem;
    --h1-fonts: 3.438rem;
    --h2-fonts: 2.813rem;
    --h3-fonts: 2.188rem;
    --h4-fonts: 1.5rem;
    --h5-fonts: 1.25rem;
    --p-fonts: 1.125rem;
}

header.sticky {
    background-color: var(--btn-color);
    padding: 15px 10%;
    box-shadow: 0px 4px 15px rgb(0 0 0 / 8%);
    transition: all .42s;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 10%;
    height: 60px;
}

.logo img {
    width: 60px;
    height: 60px;
}

.navigation {
    display: flex;
    align-items: center;
}

.navigation a {
    color: rgb(0, 0, 0);
    font-size: var(--p-fonts);
    text-transform: capitalize;
    font-weight: 700;
    padding: 10px 20px;
    transition: all .42s;
}

.navigation a:hover {
    color: gold;
}

.header-btn {
    display: flex;
    align-items: center;
}

.header-btn a {
    display: inline-block;
    color: var(--sec-color);
    font-weight: 500;
    text-transform: capitalize;
    margin-right: 20px;
}

.header-btn .btn-1 {
    color: var(--btn-color);
}

.btn-1 {
    background-color: var(--text-color);
    padding: 12px 30px;
    border-radius: 30px;
    color: var(--text-color);
    transition: all .42s;
    border: 2px solid var(--btn-color);
}


.btn-1:hover {
    background-color: var(--btn-color);
    color: var(--sec-color);
    border: 2px solid black;
}

#menu-icon {
    font-size: var(--h3-fonts);
    z-index: 10001;
    background-color: var(--btn-color);
    color: var(--sec-color);
    border-radius: 5px;
    padding: 4px 3px 3px 3px;
    display: none;
}

/*home page*/

section {
    padding: 110px 10% 50px;
}

.home {
    width: 100%;
    height: 100vh;
    background-image: url(bannner.png);
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}


.home-text h1 {
    color: var(--text-color);
    font-size: var(--h1-fonts);
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: var(--p-fonts);
}

.home-text p {
    max-width: 550px;
    color: var(--text-color);
    font-size: var(--p-fonts);
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 35px;
}

.home-btn a {
    display: inline-block;
    color: var(--sec-color);
    font-size: var(--p-fonts);
    font-weight: 500;
    background-color: black;
    padding: 12px 80px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: all .42s;
}

.home-btn a:hover {
    background-color: var(--btn-color);
}

.home-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/*footer*/



.footer-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 2rem;
}

.footer-1 img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.footer-1 p {
    max-width: 400px;
    color: var(--btm-color);
    font-size: var(--h5-fonts);
    line-height: 35px;
    transition: all .42s;
}

.footer-1 p:hover {
    color: var(--text-color);
}

.footer-text h4 {
    color: var(--text-color);
    font-size: var(--h4-fonts);
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
    transition: all .42s;
}

.footer-text h4:hover {
    text-decoration: var(--btn-color);
    color: var(--btn-color);
}

.col-1 i {
   color: var(--btm-color);
   font-size: var(--h3-fonts);
   transition: all .42s;
}

.col-1 i:hover {
    transform: translateY(5px);
    color: var(--text-color);
}

.col-1 {
    display: flex;
    gap: 1rem;
    margin-bottom: 25px;
}

.col-1 a {
    max-width: 200px;
   color: var(--btm-color);
   font-size: var(--h5-fonts);
   text-transform: capitalize;
   line-height: 30px;
   transition: all .42s;
}


.col-1 a:hover {
    color: var(--text-color);
}

.col-2 {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    transition: all .42s;
}

.col-2 i {
    color: var(--btm-color);
    font-size: var(--h3-fonts);
    transition: all .42s;
}

.col-2 .bx {
    transform: rotate(17deg);
}

.col-2 a {
    color: var(--btm-color);
    font-size: var(--h5-fonts);
    text-transform: capitalize;
    transition: all .42s;
}

.col-2 a:hover {
    color: #007aff;
}

.col-2:hover {
    color: var(--text-color);
    transform: translateX(5px);
}

.social-footer i {
    color: var(--btm-color);
    font-size: var(--h4-fonts);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--pri-color);
    padding: 10px 10px;
    border-radius: 30px;
    margin-right: 10px;
    transition: all .42s;
}

.social-footer i:hover {
    background-color: var(--btn-color);
    color: var(--sec-color);
    border: 2px solid var(--btn-color);
}

.copyright {
    text-align: center;
    background-color: var(--foot-color);
    padding: 20px 0px;
}

.copy-text p {
    color: rgb(6, 6, 6);
    font-size: var(--p-fonts);
    text-transform: capitalize;
    font-weight: 400;
}

strong {
    color: #007aff;
}

.map {
    margin: 70px;
    border: 9px solid #007aff;
    border-radius: 17px;
    box-shadow: rgb(0, 0, 0) 0px 0px 20px;
}

.map iframe {
    border-radius: 17px;
}

.iconk img {
    position: fixed;
    left: 92%;
    top: 80%;
    width: 80px;
    height: 80px;
    
}
.iconk img:hover {
    border: 2px solid #00ff1a;
    border-radius: 50%;
    box-shadow: 2px 2px 10px #2fff00;
   
}

@media (max-width:415px) {
    .iconk img {
        left: 77%;
        top: 90%;
    }
}

@media (max-width:1160px) {
    .iconk img {
        left: 80%;
        top: 90%;
    }
}

@media (max-width:1280px) {
    .counter {
        padding: 2rem 10rem;
    }
}

@media (max-width:991px) {
    .counter {
        grid-template-columns: 1fr ;
    }
}

@media (max-width:768px) {
    .counter {
        padding: 2rem 7rem;
    }
}






/*resposive*/


@media (max-width:1400px) {
    header {
        padding: 30px 4%;
        transition: .3s;
    }
    section {
        padding: 110px 4% 50px;
        transition: .3s;
    }
    header.sticky {
        padding: 15px 4%;
        transition: .3s;
    }
    .add-cart-btn {
        margin-top: -30px;
        margin-left: 400px;
    }
}

@media (max-width:1220px) {
    .home-text h1 {
        font-size: 50px;
        transition: .3s;
    }
    .home-text p {
        margin-bottom: 25px;
        transition: .3s;
    }
    .mid-top {
        gap: 65px;
        margin-bottom: 15px;
        transition: .3s;
    }
    .car h5 {
        font-size: 16px;
        margin-bottom: 20px;
        transition: .3s;
    }
}

@media (max-width:1180px) {
    .home-text h1 {
        font-size: 45px;
        transition: .3s;
    }
    .home-text p {
        margin-bottom: 20px;
        transition: .3s;
    }
    .mid-top {
        gap: 65px;
        margin-bottom: 15px;
        transition: .3s;
    }
    .car h5 {
        font-size: 16px;
        margin-bottom: 15px;
        transition: .3s;
    }
    #menu-icon {
        display: block;
    }
    .navigation {
        position: absolute;
        width: 100%;
        height: 100vh;
        padding: 80px 50px;
        top: 0;
        right: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: var(--back-color);
        transition: all .42s ease-in-out;
    }
    .navigation a {
        display: block;
        padding: 0px;
        margin: 0px 0px 30px 0px;
        font-size: 25px;
    }
    .navigation.open {
        left: 0;
    }
    .logo img {
        width: 60px;
        height: 60px;
        transition: .3s;
    }
}

@media (max-width:1160px) {
    .home {
        grid-template-columns: repeat(1fr);
        height: 100%;
    }
    .home-text {
        order: 2;
    }
    .home-img img {
        width: 100%;
        max-width: 600px;
        height: auto;
        transition: .3s;
    }
    .home-img {
        text-align: center;
        padding-top: 50px;
    }
    .services {
        grid-template-columns: 1fr;
    }
    .services-img img {
        max-width: 600px;
        height: auto;
        transition: .3s;
    }
    .services-img {
        text-align: center;
        transition: .3s;
    }
    .serv-1 {
        justify-content: left;
        transition: .3s;
    }
    .serv-text p {
        max-width: 100%;
        transition: .3s;
    }
    .price {
        margin-left: 11rem;
    }
    .days {
        margin-left: 11rem;
    }
    .add-cart-btn {
        margin-left: 12.5rem;
    }
}

@media (max-width:615px) {
    .header-btn a {
        margin-right: 15px;
        transition: .3s;
    }
    .btn-1 {
        padding: 10px 25px;
        transition: .3s;
    }
    .btn-2 {
        padding: 10px 25px;
        transition: .3s;
    }
    #menu-icon {
        font-size: 30px;

    }
    .home-text h1 {
        font-size: 40px;
        transition: .3s;
    }
    .home-btn a {
        width: 100%;
        transition: .3s;
        text-align: center;
    }
    .work-top h2 {
        font-size: 50px;
        transition: .3s;
    }
    .rent-top h2 {
        font-size: 50px;
        transition: .3s;
    }
    .car-items a {
        display: grid;
        grid-template-columns: 3, 1fr;
        width: 200px;
        background-color: #007aff;
        color: whitesmoke;
        font-size: 1rem;
    }
    .luxur-top h2 {
        font-size: 50px;
        transition: .3s;
    }
    .mid-top {
        gap: 20px;
        display: block;
        align-items: center;
        margin-bottom: 30px;
    }
    .mid-top h5 {
        text-align: center;
        margin-bottom: 8px;
        font-size: 25px;
    }
    .car h5 {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

@media (max-width:550px) {
    .logo img {
        width: 100px;
        height: auto;
    }
    .header-btn a {
        margin-right: 8px;
        transition: .3s;
    }
    .btn-1 {
        padding: 8px 20px;
        transition: .3s;
    }
    .btn-2 {
        padding: 8px 20px;
        transition: .3s;
    }
    .work-top h2 {
        font-size: 45px;
        transition: .3s;
    }
    .rent-top h2 {
        font-size: 45px;
        transition: .3s;
    }
    .car-items a {
        display: grid;
        grid-template-columns: 3, 1fr;
        width: 200px;
        background-color: #007aff;
        color: whitesmoke;
        font-size: 1rem;
    }
    .luxur-top h2 {
        font-size: 45px;
        transition: .3s;
    }
    .rent-top p {
        margin: 12px auto 40px;
    }
    .btn-group button {
        margin-left: 100px;
        width: 130px;
    }
}

@media (max-width:415px) {
    .service-img img {
        width: 370px;
    }

    .car-items a {
        display: grid;
        grid-template-columns: 3, 1fr;
        width: 200px;
        background-color: #007aff;
        color: whitesmoke;
        font-size: 1rem;
    }
    .price {
        margin-left: 4rem;
    }
    .days {
        margin-left: 4rem;
    }
    .logo img {
        width: 60px;
        height: 60px;
    }
    .img-container img {
       height: 160px;
       width: 250px;
    }
}

@media (max-width:713px) {
    .car-items a {
        display: grid;
        grid-template-columns: 3, 1fr;
        width: 200px;
        background-color: #007aff;
        color: whitesmoke;
        font-size: 1rem;
    }
}





















