* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

ul {
    padding-left: 0 !important;
}

/* Header Section */
.navbar-brand {
    font-weight: 600;
    font-size: 16px;
    color: #1572d3;
}

.nav-link {
    color: #484848 !important;
    font-weight: 500;
    font-size: 16px;
    margin: 0 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #1572d3 !important;
}

.sign-in {
    color: #484848;
    font-weight: 500;
    font-size: 16px;
}

.btn-signup {
    background: #1572d3;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;

    a {
        color: white;

    }
}

.btn-signup:hover {
    background: #0f5cb3;
}

/* Hero Section */
.hero-text h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #242424;
    margin-bottom: 20px;
}

/* Mobile font size */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }
}

.highlight-wrapper {
    position: relative;
    display: inline-block;
}

.highlight {
    color: #1572d3;
}

.underline-img {
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 120px;
    pointer-events: none;
}

.hero-text p {
    font-size: 18px;
    color: #272727;
    margin-bottom: 30px;
}

.app-badges {
    display: flex;
    gap: 12px;
}

/* Search Box */
.search-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(19, 94, 182, 0.2), 0 4px 6px rgba(19, 94, 182, 0.1);
    margin-top: 40px;
}

/*  responsive search box */
.search-field {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Only show borders on desktop */
@media (min-width: 992px) {
    .border-lg-end {
        border-right: 1px solid #c8c8c8;
    }

    .border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.label {
    font-size: 16px;
    font-weight: 600;
    color: #3e3e3e;
}

.value {
    font-size: 14px;
    color: #9b9b9b;
}

.btn-search {
    background: #1572d3;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.btn-search:hover {
    background: #0f5cb3;
}

/* How It Works */
.badge {
    background: rgba(21, 114, 211, 0.1) !important;
    color: #1572d3 !important;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
}

.section-header h2 {
    font-size: 38px;
    color: #333333;
    font-weight: 500;
    line-height: 1.3;
}

.icon-box {
    background: #ecf5ff;
    width: 112px;
    height: 112px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 15px;
}

.step p {
    font-size: 14px;
    color: #6d6d6d;
}

.brand-logo {
    height: 50px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s;
}

.brand-logo:hover {
    filter: grayscale(0%) opacity(1);
}

/* Why Choose Us */
.why-choose-us {
    background: white;
}

.showcase-car {
    border-radius: 16px;
    width: 100%;
}

.feature-icon {
    background: #ecf5ff;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature h4 {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 8px;
    color: #000;
}

.feature p {
    font-size: 16px;
    color: #6d6d6d;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Car Card */
.car-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.car-image-container {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.car-image-container img {
    max-height: 100%;
    width: auto;
}

.car-details {
    padding: 20px;
}

.car-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px !important;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.review-count {
    color: grey;
}

.spec {
    font-size: 12px;
    color: #959595;
}

.car-price .price strong {
    font-size: 18px;
    color: #292929;
}

.btn-rent {
    background: #1572d3;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-rent:hover {
    background: #0f5cb3;
}

.view-all a {
    color: #1572d3;
    font-weight: 500;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
    width: 100%;
}

.badge {
    background: rgba(21, 114, 211, 0.1);
    color: #1572d3;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
}

.section-header h2 {
    font-size: 38px;
    color: #333333;
    font-weight: 500;
    margin-top: 15px;
}

/* Testimonial Card Styling */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Rating Styling */
.rating-large .score {
    font-size: 64px;
    font-weight: 600;
    color: #333;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-large .stars {
    font-size: 24px;
    color: #EFBF14;
    margin-bottom: 5px;
}

.rating-large .overall {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Image Styling */
.testimonial-avatar {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Text Styling */
.testimonial-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.author strong {
    color: #333;
    display: block;
    margin-bottom: 2px;
}

.author span {
    color: #999;
    font-size: 12px;
}

/* Responsive*/
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

/* Download Section */
.tag-btn {
    padding: 10px 20px;
    background: #d7e8ff;
    color: #0e62ff;
    border: 0;
    border-radius: 8px;
    font-weight: 500;
}

.blue {
    color: #007bff;
}

.play-btn,
.apple-btn {
    width: 140px;
    cursor: pointer;
}

/* Footer */
.footer {
    background: #1a2332;
    color: white;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul li a {
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #1572d3;
}
