/* Custom Styles */
:root {
    --primary-color: #0D1B2A;
    --secondary-color: #D72638;
    --dark-color: #212529;
    --font-poppins: 'Poppins', -apple-system, BlinkMacSystemFont, 
                  'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
                  'Open Sans', 'Helvetica Neue', sans-serif;
    --font-montserrat: 'Montserrat', -apple-system, BlinkMacSystemFont, 
                     'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}
body {
    font-family: var(--font-poppins);
    font-size: 16px; /* Default */
    line-height: 1.6;
}
p, span{
    font-size: 14px; /* Default */
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6, 
.header, .navbar-brand {
  font-family: var(--font-montserrat);
  font-weight: 600; /* Semi-Bold */
}
h5 {
    font-size:16px;
}
.main-title {
    font-size: 1.33333em;
    font-weight: 600;
}
hr {    
    border: 1px solid #ccc;
}
/* Bold headers (optional) */
h1, .hero-title {
  font-weight: 700; /* Bold */
}

.navbar {
    background-color: var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-success {
    background-color: var(--secondary-color) !important;
}

.footer1 {
    background-color: var(--primary-color) !important;
}

.footer2 {
    background-color: var(--secondary-color) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #fff !important;
}

.navbar-brand i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    background-color: #0d8b9d;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar .nav-link:hover {
    color: #fff !important;
}

.navbar .btn {
    margin-left: 0.5rem;
}

.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-item {
    /*height: 500px;*/
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.carousel-indicators {
    margin-bottom: 1rem;
}

.search-section {
    /*background-color: #f0e6d9;*/
    background-color: #7EC7D8;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.search-card {
    background-color: #fff;
    /*border-radius: 0.5rem;*/
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    font-size:14px;    
}
.search-card label{
    font-weight:bold;
}
.range-slider {
    margin-top: 1.5rem;
}

.filter-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.filter-heading {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom:solid 1px var(--primary-color);
    padding-bottom: 0.5rem;
}

.filter-heading i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}
.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap; /* Prevents text wrapping */
    margin-left: 1rem; /* Space between title and link */
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: var(--secondary-color); /* Change to your hover color */
    text-decoration: underline;
}
.car-card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s, box-shadow 0.3s;
    /*margin-bottom: 0.5rem;*/
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.car-card img {
    height: 200px;
    object-fit: cover;
    /*border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;*/
}

.car-card .card-body {
    padding: 1.25rem;
}

.car-card .car-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.car-card .car-features {
    display: flex;
    justify-content: space-between;
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.car-card .car-features span {
    display: flex;
    align-items: center;
}

.car-card .car-features i {
    margin-right: 0.25rem;
}

.filter-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
}

.filter-btn:hover {
    background-color: #148a9b;
}

.type-filter {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    font-size:14px;
}

.type-filter .list-group-item {
    border: none;
    padding: 0.5rem 0;
    background-color: transparent;
}

.type-filter .list-group-item.active {
    /*background-color: #e9f7f9;*/
    color: var(--primary-color);
    font-weight: 600;
}

.range-slider .form-range::-webkit-slider-thumb {
    background: var(--primary-color);
}

.range-slider .form-range::-moz-range-thumb {
    background: var(--primary-color);
}

.range-slider .form-range::-ms-thumb {
    background: var(--primary-color);
}
.thumb-shadow {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    transition: .3s;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
    padding-bottom: 15px;
}
.car-card:hover {
transform: translateY(-5px);
transition: transform 0.3s ease;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* Custom CSS to maintain your original styling */
.share-networks {
    background-color: #fff;
}

.share-networks a {
    color: #394041;
    font-size: 13px;
}

.share-networks a:hover {
    color: #dc7d44;
    text-decoration: none;
}

/* Icon colors */
.share-networks .bi-facebook {
    color: #6D8ED2;
}

.share-networks .bi-twitter {
    color: #55ACEE;
}

.share-networks .bi-google, 
.share-networks .bi-printer-fill,
.share-networks .bi-code-slash {
    color: #DC4C3A;
}

/* Vertical dividers */
.share-option {
    border-right: 1px solid #dedede;
}

.share-option:last-child {
    border-right: none;
    border-left:none;
}
.thumb-shadow-new {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.heading-with-line {
    margin-bottom: 1rem;
}

.title-line {
    display: flex;
    width: 100%;
    height: 2px;
    margin-top: 0.5rem;
}

.line-start {
    width: 30px;
    background-color: #D72638; /* Your accent color */
    height: 100%;
}

.line-rest {
    flex-grow: 1;
    background-color: #BFC0C0; /* Light gray for the rest */
    height: 100%;
}
.form-select{
    border-radius: 0% !important;
}