:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #93c5fd;
    --secondary: #475569;
    --light: #f8fafc;
    --dark: #0f172a;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gradient-start: #3b82f6;
    --gradient-end: #2563eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 0.25rem;
    --border-radius: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background-color: #fff;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary);
}
.no-reserve {
    color: var(--success) !important;
    font-weight: 500 !important;
}
.heart-filled{
    background-color: #00ffff !important;
}
.reserve-near {
    color: var(--warning) !important;
    font-weight: 500 !important;
}
.reserved {
    color: var(--danger) !important;
    font-weight: 500 !important;
}
.black_anchor{
    color:#000 ;
    text-decoration: none;
}
.black_anchor:hover{
    color:#000 ;
    text-decoration: none;
}

/* Top Bar */
.top-bar {
    background-color: var(--gray-900);
    color: var(--light);
    font-size: 0.85rem;
    font-weight: 500;
}

.top-link {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.top-link:hover {
    color: white;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-radius: 3px;
}

.btn {
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--gradient-end), var(--gradient-start));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 7rem 0 5rem;
    z-index: 1;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9));
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, white, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.search-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    color: var(--gray-700);
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: var(--transition);
}

.search-card:hover {
    transform: translateY(-5px);
}

.search-card h3 {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 1.5rem;
}

.form-select, .form-control {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: none;
    transition: var(--transition);
}

.form-select:focus, .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.35rem 1rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Auctions */
.auction-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    border: 1px solid var(--gray-100);
}

.auction-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.auction-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.auction-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.auction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.auction-card:hover .auction-image img {
    transform: scale(1.05);
}

.auction-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 23, 42, 0.75);
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.auction-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.action-btn:hover {
    background-color: white;
    color: var(--primary);
    transform: scale(1.1);
}

.auction-details {
    padding: 1.5rem;
}

.auction-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.auction-year {
    font-weight: 600;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.auction-bids {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.auction-details h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.specs span {
    display: flex;
    align-items: center;
}

.specs span i {
    margin-right: 0.35rem;
}

.auction-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
}

.current-bid span {
    font-size: 0.8rem;
    color: var(--gray-500);
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.current-bid h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

/* Categories Section */
.categories-section {
    background-color: white;
    position: relative;
}

.category-card {
    /*background-color: white;*/
    border-radius: 30px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 3px solid #2766ec;
    background: linear-gradient(45deg, #3b82f624 50%, white 50%);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.category-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.count {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.category-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Recent Listings */
.recent-section {
    background-color: var(--gray-100);
}

.listing-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-100);
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.listing-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-badge {
    /*position: absolute;*/
    top: 1rem;
    left: 1rem;
    background-color: var(--success);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}
.listing-badge2 {
    position: absolute;
    top: 1rem;
    left: 4.5rem;
    background-color: var(--warning);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}
.listing-badge3 {
    /*position: absolute;*/
    top: 1rem;
    left: 4.5rem;
    background-color: var(--primary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}
.listing-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.listing-details {
    padding: 1.5rem;
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.listing-year, .listing-type {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
}

.listing-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.listing-price {
    margin: 1.25rem 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
}

.listing-price span {
    font-size: 0.8rem;
    color: var(--gray-500);
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.listing-price h5 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 1rem;
}

/* How It Works */
.how-it-works {
    background-color: white;
}

.step-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--gray-100);
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--warning);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--gray-200);
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: serif;
    z-index: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--primary-light);
}

.testimonial-author h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--gray-800);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://source.unsplash.com/random/1920x1080/?car-showroom') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.btn-light {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
}

.btn-light:hover {
    background-color: var(--gray-100);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: white;
    border: 2px solid white;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    position: relative;
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background-color: white;
    transition: var(--transition);
    opacity: 0;
}

.footer-links a:hover::before {
    width: 0;
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.newsletter h6 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.newsletter .input-group {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter .form-control {
    border: none;
    padding: 0.75rem 1rem;
}

.newsletter .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.footer-divider {
    border-color: var(--gray-800);
    margin: 2.5rem 0;
    opacity: 0.3;
}

.copyright {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.7;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

/* Animations */
[data-animation] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-animation="fade-in"] {
    transform: translateY(20px);
}

[data-animation="fade-in-up"] {
    transform: translateY(40px);
}

[data-animation="fade-in-right"] {
    transform: translateX(-40px);
}

[data-animation="fade-in-left"] {
    transform: translateX(40px);
}

.animate {
    opacity: 1;
    transform: translate(0);
}



/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-card {
        margin-top: 3rem;
    }
    
    .cta-section {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-stats {
        margin-bottom: 2rem;
    }
}

@media screen and (min-width:992px) and (max-width:1399px)
{
    .navbar-brand img{
        height:41px !important;
    }
    #navbarNav .btn{
        padding:10px !important;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
        font-size:14px !important;
    }
}