* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    scroll-padding-top: 1rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

:root {
    --main-color: #d90429;
    --text-color: #020102;
    --bg-color: #fff;
}

img {
    width: 100%;
}

body {
    color: var(--text-color);
    overflow-x: hidden;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    z-index: 2;
    background-color: #fff;
    width: 100%;
}

#menu-icon {
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    display: none;
}

#cross {
    display: none;
}

.logo {
    font-size: 25px;
    font-weight: 400;
    color: var(--text-color);
}

.logo span {
    color: var(--main-color);
}

.Navbar {
    padding: 10px 20px;
}

.nav .Navbar li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}


.Navbar a {
    color: var(--text-color);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    margin: 10px 15px;
}

.Navbar a:hover,
.Navbar.active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

#search-icon {
    font-size: 24px;
    cursor: pointer;
}

.search-box {
    position: absolute;
    top: 110%;
    right: 0;
    left: 0;
    background: var(--bg-color);
    box-shadow: 4px 4px 20px rgb(15, 54, 55 / 10%);
    border: 1px solid var(--main-color);
    border-radius: 0.5rem;
    clip-path: circle(0% at 100% 0%);
}

.search-box.active {
    clip-path: circle(144% at 100% 0%);
    transition: 0.4s;
}

.search-box input {
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
}

.hero {
    height: 100vh;
    width: 100%;
    background-color: #26284e;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.hero .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.hero .row .left-sec {
    width: 30%;
    margin-top: 100px;
    margin-left: 50px;
}

.hero .row .left-sec h1 {
    font-size: 60px;
    color: #fff;
    text-transform: capitalize;
}

.hero .row .left-sec h1 span {
    color: #d43242;
}

.hero .row .left-sec p {
    margin: 20px 35px;
    color: #fff;
    line-height: 28px;
}

.hero .row .left-sec .discover-btn {
    display: flex;
    align-items: center;
    outline: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 50px;
    margin-left: 20px;
    padding: 0 35px;
    border: 3px solid #ffa938;
    background-color: #d43242;
    box-shadow: 5px 7px 20px #000;
}

.hero .row .left-sec .discover-btn a {
    color: #fff;
    font-size: 25px;
    letter-spacing: 2px;
    margin-right: 15px;
    text-transform: capitalize;
}

.hero .row .left-sec .discover-btn span {
    color: #fff;
    font-size: 45px;
}

.hero .right-sec {
    width: 70%;
    padding-top: 100px;
}

.hero .right-sec img {
    width: 100%;
    max-width: 650px;
    height: auto;
    margin: 0 auto;
    display: block;
}


.slick-next,
.slick-prev {
    top: 105% !important;
}

.slick-prev {
    position: relative;
    left: 850px !important;
}

.slick-next {
    position: relative;
    right: 120px !important;
}


.slick-next:before,
.slick-prev:before {
    font-size: 40px !important;
}

.slick-dots {
    padding-left: 430px !important;
    margin-bottom: -20px !important;
    color: white;
}

.slick-dots li {
    margin-right: 15px !important;
}

.slick-dots li.slick-active:after {
    position: absolute;
    content: '.';
    bottom: -20px;
    left: 6px;
    opacity: 1;
    color: red;
    font-size: 36px;
}

.heading {
    margin-top: 50px;
    text-align: center;
    font-size: 30px;
    padding-top: 100px;
}

.heading span {
    font-weight: 500;
    color: var(--main-color);
}

.heading p {
    font-size: 0.938rem;
    font-weight: 300;
}

.cars-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem;
}

.cars-container .box {
    flex: 1 1 17rem;
    position: relative;
    height: 200px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cars-container .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.cars-container .box img:hover {
    transform: scale(1.1);
    transition: 0.5s;
}

.cars-container .box h2 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-weight: 400;
    font-size: 1rem;
    background: var(--bg-color);
    padding: 8px;
    border-radius: 0.5rem;
}

.cars-container .box:hover h2 {
    background-color: var(--main-color);
    color: var(--bg-color);
}

.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 50px;
}

.about-img {
    flex: 1 1 21rem;
}

.about-text {
    flex: 1 1 21rem;
}

.about-text span {
    font-weight: 500;
    color: var(--main-color);
}

.about-text h2 {
    font-size: 1.7rem;
}

.about-text p {
    font-size: 0.938rem;
    margin: 0.5rem 0 1.4rem;
}

.about .btn {
    width: 150px;
    height: 50px;
    background-color: hsl(0, 89%, 62%);
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-size: 32px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    transition: 0.5s;
    color: #fff;
}

.btn:hover {
    background-color: #fff;
    color: #44ce6f;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.blog-container .box {
    flex: 1 1 13rem;
    padding: 20px;
}

.blog-container .box span {
    font-size: 0.8rem;
    color: var(--main-color);
}

.blog-container .box h3 {
    font-size: 1.2rem;
}

.blog-container .box p {
    font-size: 0.938rem;
    margin: 4px 0;
}

.blog-container .box .blog-btn {
    display: flex;
    align-items: center;
    column-gap: 4px;
    color: var(--text-color);
}

.blog-container .box .blog-btn .bx {
    font-size: 20px;
}

.blog-container .box .blog-btn:hover {
    color: var(--main-color);
    column-gap: 0.7rem;
    transition: 0.4s;
}

/*-- Booking --*/
.booking-container {
    max-width: 700px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-heading {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 48px;
}

.booking-form {
    display: flex;
    flex-direction: column;
}

.booking-form label {
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

.booking-form input,
.booking-form select {
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.booking-form button {
    margin-top: 20px;
    padding: 12px;
    font-size: 16px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-form button:hover {
    background-color: #219150;
}

/*--Review--*/

.review-container {
    width: 60%;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1,
h2 {
    text-align: center;
    color: #333;
}

.review {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.stars {
    color: #ffcc00;
    font-size: 18px;
}

.review-text {
    margin: 10px 0;
    font-size: 16px;
}

.review-author {
    color: #555;
    font-style: italic;
}

.review-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.review-form label {
    margin-top: 10px;
    margin-bottom: 5px;
}

.review-form input,
.review-form textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.review-form button {
    margin-top: 15px;
    padding: 10px;
    background-color: #5c67f2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.review-form button:hover {
    background-color: #4048c9;
}


/*--Footer--*/
.footer {
    background-color: darkblue;
}


.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 3rem;
}

.footer .box-container .box h3 {
    color: #fff;
    font-size: 2.5rem;
    padding-bottom: 2rem;
}

.footer .box-container .box a {
    color: #fffff79b;
    font-size: 1rem;
    padding-bottom: 1rem;
    display: block;
}

.footer .box-container .box a i {
    color: #d43242;
    padding-right: .5rem;
    padding-bottom: 1rem;
    transition: .2s linear;
}

.footer .box-container .box a:hover i {
    padding-right: 2rem;
}

.footer .credit {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
    margin-top: 3rem;
    border-top: .2rem solid #fffff7;
    font-size: 2rem;
    color: #fff;
}

.footer .credit span {
    color: #d43242;
}

@media only screen and (max-width: 600px) {

    /* Menu Icon */
    #menu-icon {
        display: block;
        font-size: 25px;
        cursor: pointer;
    }

    .nav {
        flex-wrap: nowrap;
        padding: 10px;
    }

    .nav .Navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 200px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px 20px;
        z-index: 5;
        transition: 0.3s ease;
    }

    .nav .Navbar.active {
        left: 0;
    }

    .nav .Navbar li {
        display: block;
        margin: 15px 0;
    }

    #cross {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
    }

    /* Search Box */
    .search-box {
        width: 90%;
        left: 5%;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        padding-top: 35px;
        height: auto;
    }

    .hero .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero .row .left-sec,
    .hero .row .right-sec {
        width: 100%;
        margin: 0;
        padding: 10px;
    }

    .hero .row .left-sec h1 {
        font-size: 36px;
    }

    .hero .row .left-sec p {
        font-size: 14px;
        margin: 10px 0;
    }

    .hero .row .left-sec .discover-btn {
        font-size: 16px;
        padding: 10px 20px;
        margin: 20px auto;
    }

    .hero .right-sec img {
        width: 90%;
        height: auto;
        margin: 20px auto;
    }

    /* Slick Navigation */
    .slick-next,
    .slick-prev {
        display: none !important;
    }

    .slick-dots {
        display: none !important;
    }

    /* Cars Section */
    .cars-container {
        flex-direction: column;
        gap: 1rem;
        margin: 1rem;
    }

    .cars-container .box {
        height: 180px;
    }

    /* About Section */
    .about {
        flex-direction: column;
        padding: 10px;
    }

    .about-img,
    .about-text {
        width: 100%;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about .btn {
        font-size: 20px;
        width: 120px;
        height: 40px;
    }

    /* Blog Section */
    .blog-container {
        flex-direction: column;
        margin: 1rem;
    }

    .blog-container .box {
        width: 100%;
    }

    /* Booking Section */
    .booking-container {
        width: 90%;
        padding: 20px;
    }

    .booking-heading {
        font-size: 28px;
    }

    /* Review Section */
    .review-container {
        width: 90%;
        padding: 20px;
    }

    h1, h2 {
        font-size: 22px;
    }

    /* Footer */
    .footer .box-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer .box-container .box h3 {
        font-size: 18px;
    }

    .footer .box-container .box a {
        font-size: 12px;
    }

    .footer .credit {
        font-size: 1rem;
        padding: 20px 0;
    }

}
