/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}
:root{
    --main-color: #343837;
    --second-color: #5c93a8;
    --text-color: #444;
    --gradient: linear-gradient(#343837, #5c93a8);
}
/* Custom Scroll Bar  */
html::-webkit-scrollbar{
    width: 0.5rem;
}
html::-webkit-scrollbar-track{
    background: transparent;
}
html::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 5rem;
}
section{
    padding: 50px 100px;
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eeeff1;
    padding: 15px 50px;
}
.logo img{
    width: 80px;
}
.navbar{
    display: flex;

}
.navbar li{
    position:relative;

}
.navbar a{
    font-size: 1rem;
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;
}
.navbar a::after {
    content: '';
    width: 0;
    height: 3px;
    background: var(--gradient);
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: 0.5s;

}
.navbar a:hover::after{
    width: 100%;
}
#menu-icon{
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: none;
}
.header-btn a{
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;

}
.header-btn .sign-in{
    background-color: #5c93a8;
    color: #FFF;
    border-radius: 0.5rem;
}
.header-btn .sign-in:hover{
    background: var(--main-color);

}
.home{
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: url("/assets/images/bg_car.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    border-radius: 10px !important;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}
.text h1{
    font-size: 3.5rem;
    letter-spacing: 2px;
}
.text span{
    color: #5c93a8;
}
.text p{
    margin: 00.5rem 0 1rem;
}
.app-stores{
    display: flex;
}
.app-stores img{
    width: 100px;
    margin-right: 1rem;
    cursor: pointer;
}
.form-container form{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    position: absolute;
    bottom: 1rem;
    left: 100px;
    background: #fff;
    padding: 15px;
    border-radius: 0.5rem;
}
.input-box{
    flex: 1 1 7rem;
    display: flex;
    flex-direction: column;
}
.input-box span{
    font-weight: 500;
}
.input-box input{
    padding: 7px;
    outline: none;
    border: none;
    background: #eeeff1;
    border-radius: 0.5rem;
    font-size: 1rem;
}
.form-container form .btn{
    flex: 1 1 7rem;
    padding: 10px 34px;
    border: none;
    border-radius: 0.5rem;
    background: #5c93a8;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}
.form-container form .btn:hover{
    background: var(--main-color);
}
.heading{
    text-align: center;
}
.heading span{
    font-weight: 500;
    text-transform: uppercase;
}
.heading h1{
    font-size: 2rem;
}
.ride-container{
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit,minmax(250px,auto));
    gap: 1rem;
    margin-top: 2rem;
}
.ride-container .box{
    text-align: center;
    padding: 20px;
}
.ride-container .box .bx{
    font-size: 34px;
    padding: 10px;
    background: #eeeff1;
    border-radius: 0.5rem;
    color: var(--main-color);
}
.ride-container .box h2{
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1,4rem 0 0.5rem;
}
.ride-container .box .bx:hover,
.ride-container .box .bxs-calender-star{
    background: linear-gradient(to top right, #5c93a8, #343837);
    color: #fff;

}
.services-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 1rem;
    margin-top: 2rem;
}
.services-container .box{
    padding: 10px;
    border-radius: 1rem;
    box-shadow: 1px 4px 41px rgba(0, 0, 0, 0.1);
}
.services-container .box .box-img{
    width: 100%;
    height: 200px;
}
.services-container .box .box-img img{
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
    object-position: center;
}
.services-container .box p{
    padding: 0 10px;
    border: 1px solid var(--text-color);
    width: 58px;
    border-radius: 0.5rem;
    margin: 1rem 0 1rem;
}
.services-container .box h3{
    font-weight: 500;
}
.services-container .box h2{
    font-size: 1.1rem;
        font-weight: 600;
        color: var(--main-color);
        margin: 0.2rem 0 0.5rem;
}
.services-container .box h2 span{
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}
.services-container .box .btn{
    display: flex;
    justify-content: center;
    background: #5c93a8;
    color: #fff;
    padding: 10px;
    border-radius: 0.5rem;
}
.services-container .box .btn:hover{
    background: var(--main-color);
}
.about-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
.about-img img{
    width: 100%;
}
.about-text span{
    font-weight: 500;
    color: var(--main-color);
    text-transform: uppercase;
}
.about-text p{
    margin: 0.5rem 0 1.4rem;
}
.about-text .btn{
    padding: 10px 20px;
    background: #5c93a8;
    color: #fff;
    border-radius: 0.5rem;
}
.about-text .btn:hover{
    background: var(--main-color);
}
.reviews-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 1rem;
    margin: 2rem;
}
.rev-img{
    width: 70px;
    height: 70px;
}
.rev-img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--second-color);
}
.reviews-container .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: 1px 4px 41px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}
.reviews-container .box h2{
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0 0.5rem;
}
.reviews-container .box p{
    font-style: italic;
}
.reviews-container .box .stars .bx{
    color: var(--main-color);
}
.newsletter{
    background: linear-gradient(to top right, #5c93a8, #343837);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter h2{
    color: #fff;
    font-size: 1.8rem;
}
.newsletter .box{
    margin-top: 1rem;
    background: #fff;
    border-radius: 0.5rem;
    padding: 4px 8px;
    width: 350px;
    display: flex;
    justify-content: space-between;
}
.newsletter .box input{
    border: none;
    outline: none;
}
.newsletter .box .btn{
    background: #5c93a8;
    color: #fff;
    padding: 8px 20px;
    border-radius: 0.5rem;
}
.copyright{
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social a {
    color: #444;
    padding: 10px;
    font-size: 21px;
}
/* Making Responsive */
@media (max-width: 991px){
    header{
        padding: 18px 40px;
    }
    section{
        padding: 50px 40px;
    }
}

@media (max-width: 881px){
    .home{
        background-position: left;
    }
    .form-container form{
        bottom: 0.2rem;
        left: 40px;
    }
}
@media (max-width: 768px){
    header{
        padding: 11px 40px;
    }
    #menu-icon{
        display: initial;
    }
    .sign-up{
        display: none;
    }
    .text h1{
        font-size: 2.5rem;
    }
    .home{
        grid-template-columns: 1fr;
    }
    .form-container form{
        position: unset;
    }
    header .navbar{
        position: absolute;
        top: -500px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
        transition: 0.2s ease;
        text-align: left;
    }
    .navbar.active{
        top: 100%;
    }
    .navbar a{
        /*padding: 0rem;*/
        border-left: 2px solid var(--main-color);
        margin: 1rem;
        display: block;
    }
    .navbar a:hover{
        color: #fff;
        background: var(--main-color);
        border: none;
    }
    .navbar a::after{
        display: none;
    }
    .heading span{
        font-size: 0.9rem;
        font-weight: 600;
    }
    .heading h1{
        font-size: 1.3rem;
    }
    .about-container{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-img{
        padding: 1rem;
        order: 2;
    }
}
@media(max-width:568px){
    .copyright{
        flex-direction: column;
    }
    .newsletter .box{
        width: 284px;
    }
    .form-container{
        padding-top: 2rem;
    }
}
@media(max-width:350px){
    header{
        padding: 4px 14px;
    }
    .logo img{
        width: 30px;
    }
    section{
        padding: 50px 14px;
    }
    .header-btn .sign-in{
        padding: 7px 10px;
        font-size: 14px;
        font-weight: 400;
    }
    .text h1{
        font-size: 2rem;
    }
    .services-container{
        grid-template-columns: repeat(auto-fit,minmax(254px, auto));
    }
}

@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans&display=swap');

section.products{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    overflow: hidden;
}

section.products{
	font-size: 1.7rem;
	font-family: 'Merriweather Sans', sans-serif;
	background: linear-gradient(to top right, #5c93a8, #343837);
	color: #ececec;
	padding: 4rem;
}

h2{
	text-align: center;
	margin-bottom: 5rem;
	font-size: 4rem;
}

.all-products{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.product{
	overflow: hidden;
	background: #ffffff;
	color: #21201e;
	text-align: center;
	width: 240px;
	height: 400px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 1.2rem;
	margin: 2rem;
}

.product .product-title, .product .product-price{
	font-size: 18px;
}

.product:hover img{
	scale:  1.1;
}

.product:hover {
	box-shadow: 5px 15px 25px #eeeeee;
}

.product img {
	height: 200px;
	margin: 1rem;
	transition: all 0.3s;
}

.product a:link, .product a:visited{
	color: #ececec;
	display: inline-block;
	text-decoration: none;
	background-color: #2c3e50;
	padding: 1.2rem 3rem;
	border-radius: 1rem;
	margin-top: 1rem;
	font-size: 14px;
	transition: all 0.2s;
}

.product a:hover{
	transform: scale(1.1);
}

.book-now-button {
    background-color: #2d3748; /* Default background color (bg-slate-900) */
    transition: background-color 0.3s ease;
}

.book-now-button:hover {
    background-color: #5c93a8; /* Hover background color */
}

.discount-label {
    background-color: #5c93a8; /* Replace with your desired background color */
}

.bg-pr-400 {
    background-color: #5c93a8; /* Replace with your desired background color */
}

/* Hover state for the button */
.bg-pr-400:hover {
    background-color: #fff; /* Adjust this to your desired hover color */
}

.text-pr-400 {
    color: #5c93a8;
}

.bg-pr-500 {
    background-color: #5c93a8; /* Replace with your desired background color */
}

.button-custom {
    border: 2px solid #4A5568; /* Initial border color */
    color: #4A5568; /* Initial text color */
    background-color: white; /* Initial background color */
    width: 5rem; /* Width of 20 units */
    padding: 0.5rem; /* Padding */
    border-radius: 0.375rem; /* Rounded corners */
    font-weight: 500; /* Medium font weight */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.button-custom:hover {
    background-color: #5c93a8; /* Background color on hover */
    color: white; /* Text color on hover */
}

.custom-svg-color path {
    fill: #343837;
}

.custom-footer {
    background: linear-gradient(to top right,#343837, #5c93a8); /* Light gray color */
    color: #f7fafc; /* Light text color */
}

@media (min-width: 768px) {
    #dropdownDefaultButton{
        margin-left: 500px;
    }
}

.header-btn {
    position: relative;
    display: inline-block;
}

#dropdown {
    /* display: none; Hidden by default */
    position: absolute;
    top: 100%; /* Position the dropdown below the button */
    left: 0;
    z-index: 10;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    width: 11rem;
    padding: 0.5rem 0;
    border: 1px solid #e5e7eb;
}

#dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#dropdown li {
    padding: 0.5rem 1rem;
}

#dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.25rem;
    border-radius: 0.25rem;
}

#dropdown a:hover {
    background-color: #e5e7eb;
}

.drop_css {
    background-color: #5c93a8;
    color: #FFF;
    border-radius: 0.5rem;
}

.drop_css:hover {
    background: var(--main-color);

}

.btn_new_css {
    background-color: #5c93a8;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 0.5rem;
}

.btn_new_css:hover {
    background: var(--main-color);

}

#dropdown.show {
    display: block;
}

.coloradjustment {
    border-color: #5c93a8;
}

.bgadjustment {
    background-color: #5c93a8;
}

.bg_adjustment {
    background-color: #5c93a8;
}

.bg_adjustment:hover {
    background-color: #374151;
}

.custom_svg {
    fill: #fff;
}

.img_css {
    height: 280px;
    width: 800px;
    border-radius: 1.5rem;
}

.wadjust {
    font-size: 28px;
    font-weight: 500;
    color: #5c93a8;
}

