body {
    /* Adjust '80px' to match the actual height of your navbar */
    padding-top: 40px; 
    font-family: "Lato", sans-serif;
    font-weight: 400; /* Regular weight */
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}
/* Specifically for headers to keep them bold */
h1, h2, h3, h4 {
    font-family: "Lato", sans-serif;
    font-weight: 700; /* Bold weight */
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}


/* Navbar */
.navbar {
    /* --- Your Existing Styles --- */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 8%;
    background-color: #161515;

    /* --- ADD THESE TO FIX THE POSITION --- */
    position: fixed;     /* Sticks the navbar to the screen */
    top: 0;              /* Pins it to the very top */
    width: 99%;         /* Ensures it stretches from left to right */
    z-index: 1000;       /* Keeps it above the hero and feature cards */
    
    /* Optional: Prevents padding from making the navbar wider than 100% */
    box-sizing: border-box; 
}
/* Logo */
.logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #f2eded;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ff4d30;
}

/* Button */
.btn {
    background-color: #f3be01;
    color: #000000;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background-color: #000000;
    color: #ffc014;
}

/* Fix dropdown position */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute !important;
    top: 100%;
    left: 0;
    background-color: #161515;
    border-radius: 6px;
    padding: 10px 0;
    min-width: 150px;
    display: none;
    z-index: 1000;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Style items */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: #f2eded;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
}

.dropdown-menu a:hover {
    background-color: #222;
}

/* Force Bootstrap arrow to show */
.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 6px;
    vertical-align: middle;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0px 6%;
    background-color: #000000;
}

/* Left Text */
.hero-text {
    max-width: 40%;
}

.main-text {
    padding-top: 90px;
}

.main-text h1 {
    font-size: 41px;
    color: #ffffff;
    margin-bottom: 20px;
}

.edit-text {
    font-size: 56px;
    text-transform: uppercase;
    color:#f3be01;
    font-weight: 900;
}
.hero-text p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
}


/* Car driving animation define karna */
@keyframes driveIn {
    0% {
        transform: translateX(100px); /* Car thoda right se shuru hogi */
        opacity: 0;                  /* Shuru mein invisible */
    }
    100% {
        transform: translateX(0);    /* Apni asli position par ruk jayegi */
        opacity: 1;                  /* Poori dikhne lagegi */
    }
}

/* Hero image container settings */
.hero-image {
    max-width: 60%;
    overflow: hidden; /* Taaki car bahar se aate waqt page ko stretch na kare */
    display: flex;
    justify-content: flex-end;
}

/* Sirf Scorpio image par animation apply karna */
.hero-image img {
    width: 900px;
    max-width: 100%;
    display: block;
    /* Animation settings */
    animation: driveIn 1.5s ease-out forwards;
    will-change: transform, opacity; /* Smooth performance ke liye */
}

/* Container for the whole bar */
/* =========================================
   2. SEARCH SECTION LAYOUT
   ========================================= */

.search-section {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: -300px auto 100px auto; 
    position: relative;
    z-index: 10;
}

/* Main Wrapper - Isme 'position: relative' zaroori hai SVG ke liye */
.search-bar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); 
    padding: 10px;
    border-radius: 50px; 
    max-width: 1100px;
    width: 90%;
    backdrop-filter: blur(5px);
}

/* =========================================
   3. BORDER DRAW & GLOW ANIMATION
   ========================================= */

/* SVG Overlay - Absolute position taaki columns ko push na kare */
.search-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: -300px auto 100px auto; 
    position: relative;
    z-index: 20;
}

/* Tabs */
.search-tabs { display: flex; gap: 10px; margin-bottom: 20px; }
.tab-btn {
    background: rgba(15, 23, 42, 0.9);
    color: white; border: none; padding: 12px 25px;
    border-radius: 30px; cursor: pointer; font-weight: 600;
    transition: 0.3s; backdrop-filter: blur(5px);
}
.tab-btn.active { background-color: #f3be01; color: #000; }

/* Wrapper */
.search-bar-wrapper {
    position: relative; display: flex; align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px; border-radius: 50px;
    width: 95%; max-width: 1200px; backdrop-filter: blur(15px);
}

.tab-content { display: none; width: 100%; }
.tab-content.active-content { display: flex; flex: 1; }

/* Columns */
.search-col { flex: 1; padding: 15px 20px; display: flex; flex-direction: column; position: relative; cursor: pointer; }
.separator { border-right: 1px solid rgba(255, 255, 255, 0.2); }
.search-col label { font-size: 0.7rem; color: #f3be01; text-transform: uppercase; margin-bottom: 5px; font-weight: 700; }
.input-display { color: #fff; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; }
.dropdown-arrow { font-size: 0.6rem; opacity: 0.7; }

/* --- Custom Dropdown List --- */
.dropdown-list {
    display: none; position: absolute; top: 110%; left: 0;
    width: 260px; background: #fff; border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); z-index: 1000;
    overflow: hidden; animation: fadeIn 0.2s ease;
}
.dropdown-list.show { display: block; }
.search-box { padding: 10px; border-bottom: 1px solid #eee; }
.search-box input { width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px; outline: none; }
.option { padding: 12px 15px; color: #333; font-size: 0.9rem; transition: 0.2s; text-align: left; }
.option:hover { background-color: #007bff; color: #fff; }

/* Search Button */
.search-icon-btn {
    background: #eb5757; color: #fff; border: none;
    padding: 0 25px; height: 55px; border-radius: 30px;
    display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.search-btn-text { font-weight: 800; font-size: 0.85rem; letter-spacing: 1px; }
.magnify-icon { width: 20px; fill: #fff; }

/* Glow Animation */
.border-glow-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.border-rect { 
    stroke: #ffffff; stroke-width: 2px; fill: none; rx: 50px; ry: 50px;
    stroke-dasharray: 3500; stroke-dashoffset: 3500;
    animation: drawBorder 2.5s ease-in-out forwards;
}
@keyframes drawBorder { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
/* The wrapper that handles the overlap */
.features-overlap-wrapper {
    max-width: 1200px;
    margin: 10px auto 20px auto; 
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Date Picker Styling */
.date-input-container {
    width: 100%;
}

.date-picker {
    background: transparent;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    outline: none;
    cursor: pointer;
}

/* Calendar icon ko white karne ke liye (Chrome/Safari) */
.date-picker::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Mobile responsive columns for Transport tab */
#transport .search-col {
    padding: 10px 12px;
}

.container {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px;
      gap: 40px;
    }

    .image-box {
      flex: 1;
    }

    .image-box img {
      width: 100%;
      border-radius: 10px;
    }

    .text-box {
      flex: 1;
    }

    .text-box h2 {
      font-size: 32px;
      color: #161515;
      margin-bottom: 15px;
    }

    .text-box p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
    }

    .btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background: #161515;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        text-align: center;
      }
    }

/* The Row Wrapper */
.features-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

/* --- MODIFIED: Individual Card Styling --- */
.feature-card {
    flex: 1;
    background: #fffced; 
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    border: 2px solid transparent; 
    display: flex;
    flex-direction: column;
    align-items: center;

    /* Transition for smooth drop and hover */
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.8s ease-out, 
                background 0.3s ease;

    /* Initial state: Hidden and slightly up */
    opacity: 0;
    transform: translateY(-40px);
}

/* --- NEW: Jab JavaScript 'show' class add karega --- */
.feature-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for stagger effect */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }

/* Hover Effect - Sirf tab chale jab card drop ho chuka ho (.show class ke saath) */
.feature-card.show:hover {
    transform: translateY(-12px); 
    background: #ffffff;
    border-color: #ffcc4d;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12); 
    cursor: pointer;
}

/* Icon, Text and Link Styles (Same as before) */
.icon-circle {
    width: 80px;
    height: 80px;
    background: #ffcc4d;  
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-card h5 {
    color: #1a2b4c;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.feature-card.show:hover h5 {
    color: #000;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 5px 0 0 0;
}

.category-header {
    background: #000;
    border-radius: 50px;
    height: 100px;
    margin-bottom: 20px;
    /* Centering Logic */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.category-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #f3be01;
    padding: 10px 0 0 0;
}

.category-header .star {
    color: #ffffff; /* Orange stars */
    font-size: 24px;
}

.category-header p {
    color: #666;
    margin-bottom: 50px;
}

/* Grid Layout for 6 Boxes */
.category-grid {
    display: flex;
    justify-content: center;
    gap: 15px; /* Tight gap like the image */
    flex-wrap: wrap; 
}

/* Individual Card */
.category-card {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 15px;
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover {
    border-color: #333;
    transform: translateY(-5px);
}

/* Active state: Visible and in original position */
.category-card.appear {
    opacity: 1;
    transform: translateX(0);
}

/* Optional: Staggered delay so they enter one after another */
.category-card:nth-child(1) { transition-delay: 0.1s; }
.category-card:nth-child(2) { transition-delay: 0.2s; }
.category-card:nth-child(3) { transition-delay: 0.3s; }
.category-card:nth-child(4) { transition-delay: 0.4s; }
.category-card:nth-child(5) { transition-delay: 0.5s; }
.category-card:nth-child(6) { transition-delay: 0.6s; }

/* Top Section (Title + Arrow) */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    text-align: left;
}

.card-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.card-text p {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

/* Small Arrow Circle */
.arrow-circle {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
}

/* Hover Behavior: Card hover makes arrow background black */
.category-card:hover .arrow-circle {
    background: #1a1a1a;
    color: #fff;
}

/* Car Images - Centered and sitting at the bottom */
.category-card img {
    width: 90%;
    margin: 5px auto 0 auto; /* Spacing above car, then auto center */
    display: block;
    object-fit: contain;
}

/* View All Button */
.view-all-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center; /* This pushes the button to the horizontal center */
    width: 100%;
}

.view-all-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-section {
    position: relative;
    width: 92%;
    height: 100vh; /* Full screen height */
    min-height: 500px;
    background: url('/photos/bg-img.webp') no-repeat center center/cover;
    display: flex;
    align-items: center; /* Vertical center */
    padding-left: 8%; /* Left alignment offset */
    overflow: hidden;
    margin-top: 40px;
}

/* The Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust 0.4 to make it darker or lighter */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

.hero-content h1 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.s-word {
    font-size: 45px;
    text-transform: uppercase;
    color: #f3be01;
    font-weight: 900;
}

.capital-word {
    font-size: 60px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 450px;
}

/* The "Window" that clips the text */
.scrolling-words-box {
    height: 70px; /* Adjusted for your 60px font size */
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

/* The actual moving list */
.scrolling-words {
    display: flex;
    flex-direction: column;
    /* 8s total: 2s per word. Adjust for 'dheere' or 'fast' feel */
    animation: move-hero-words 10s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

/* Your existing class with alignment fixes */
.capital-word {
    font-size: 60px;
    text-transform: uppercase;
    height: 70px; /* Must match .scrolling-words-box */
    line-height: 70px; /* Centers text vertically in the box */
    display: block;
    font-weight: 900;
}

/* Keyframes: Moving up by 70px increments */
@keyframes move-hero-words {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-70px); }
    50%, 70% { transform: translateY(-140px); }
    75%, 95% { transform: translateY(-210px); }
    100% { transform: translateY(-210px); }
}

.platform-section {
    padding: 80px 8% 20px;
    background-color: #fcfcfc; /* Very light grey/white */
    font-family: sans-serif;
}

.platform-container {
    display: flex;
    align-items: center;
    gap: 2s0px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Left Content */
.platform-left {
    flex: 1.2;
}

.platform-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.platform-header .star {
    color: #ff9f43;
}

.platform-header p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.car-display img {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

/* Right Content - Features Grid */
.platform-right {
    flex: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 20px;
}

/* Mini Feature Card */
.mini-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Black Square Icons */
.icon-sq {
    width: 45px;
    height: 45px;
    background: #111; /* Dark black icon bg */
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0; /* Prevents icon from squishing */
}

/* Text inside Mini Card */
.mini-text h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.mini-text p {
    margin: 0;
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .platform-container {
        flex-direction: column;
    }
    .features-grid {
        grid-template-columns: 1fr; /* Stack on small screens */
    }
}


/* Container for the whole section */
.stats-section {
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

.stats-container {
    background-color: #0a0a0a;
    display: flex;
    width: 90%;
    max-width: 1200px;
    padding: 30px 0;
    border-radius: 15px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* The Number */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

/* THE LINE LOGIC PER DIV */
.stat-line {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Right side of the line */
.stat-line::after {
    content: "";
    position: absolute;
    right: 0;
    width: 80%; /* Adjust this to make the gap wider or tighter */
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(255,255,255,0.2));
}

/* The Label */
.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}


/* 1. SECTION BACKGROUND */
.popular-cars {
    background: #000;
    padding: 20px 0; /* Added padding for better spacing */
}

/* 2. HEADER - STAYS CENTERED */
.section-header {
    text-align: center;
    margin: 0 auto 40px auto;
    width: 100%;
    background: #000;
}

.section-header h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px; 
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffcc4d; /* Yellow Text */
}

.section-header .star {
    color: #ffffff; /* White Stars */
    font-size: 1.5rem;
}

.section-header p {
    color: #b5b5b5;
    font-size: 1.1rem;
}

/* 3. SLIDER WRAPPER */
.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Space for arrows */
}

.car-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 20px 0;
}

.car-slider::-webkit-scrollbar {
    display: none;
}

/* 4. CAR CARD - ALIGNED LEFT */
.car-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    border-radius: 15px;
    background: #fff; /* White background for the card */
    overflow: hidden;
    text-align: left; /* FIX: Ensures text inside card is left-aligned */
}

/* 5. IMAGE CONTAINER - CENTERED IMAGE */
.image-container {
    position: relative;
    height: 200px;
    background: #f8f8f8;
    display: flex;            /* FIX: Centering logic */
    justify-content: center;   /* FIX: Centering logic */
    align-items: center;       /* FIX: Centering logic */
}

.image-container img {
    width: 85%;               /* Adjusted width */
    height: auto;
    object-fit: contain;
}

/* 6. DETAILS SECTION - LEFT ALIGNED */
.car-details {
    padding: 20px;
}

.title-price {
    display: flex;
    justify-content: space-between; /* Keeps Price on Right, Title on Left */
    align-items: flex-start;
    margin-bottom: 10px;
}

.title-price h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.price strong {
    font-size: 1.3rem;
    color: #000;
}

.price span {
    font-size: 0.8rem;
    color: #888;
}

.rating {
    margin-bottom: 10px;
    font-size: 13px;
    text-align: left; /* FIX: Keeps stars left */
}

.stars { color: #ff9f43; }
.reviews { color: #888; margin-left: 5px; }

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.specs {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    background: #f9f9f9;
    padding: 8px;
    border-radius: 5px;
}

/* 7. BADGES & BUTTONS */
.badge-group {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}

.badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.badge.white { background: #fff; color: #333; border: 1px solid #ddd; }
.badge.green { background: #28a745; color: #fff; }

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #ff4d4d;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
}

.location-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 11px;
    color: #666;
}

/* 8. ARROWS */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.prev { left: 0; }
.next { right: 0; }


/* Responsive: Show 1 card on mobile, 2 on tablet */
@media (max-width: 992px) {
    .car-card { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 600px) {
    .car-card { flex: 0 0 100%; }
}

.feedback-section {
    padding: 60px 5%;
    background-color: #fcfcfc;
    text-align: center;
}

.feedback-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feedback-header .star {
    color: #ff9f43; /* Orange stars */
}

.feedback-header p {
    color: #666;
    margin-bottom: 50px;
}

/* Grid Layout */
.feedback-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Individual Card Styling */
.feedback-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 40px 30px;
    width: 350px;
    position: relative; /* For quote icon positioning */
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #ddd;
}

/* Big Quote Icon in Background */
.quote-icon {
    position: absolute;
    top: -5px;
    right: 20px;
    font-size: 200px;
    color: #f0f0f0; /* Light grey */
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

/* Client Image */
.client-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Content */
.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.client-rating {
    color: #ff9f43;
    font-size: 18px;
    margin-bottom: 15px;
}

.client-name {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: #1a1a1a;
}

.client-location {
    font-size: 13px;
    color: #888;
}

/* View All Button */
.view-all-container {
    margin-top: 50px;
}

.view-all-btn {
    background: #222;
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #000;
}


.main-footer { 
    background: #000000; 
    padding: 60px 8% 20px; 
    color: #ffffff; 
}

.footer-top { 
    display: flex; 
    justify-content: space-between; 
    border-bottom: 1px solid #ddd; 
    padding-bottom: 40px; 
    margin-bottom: 40px; 

}
.f-brand { 
    flex: 1; 
}

.f-newsletter { 
    flex: 1.5; 
    padding: 0 40px; 
}

.n-input { display: flex; 
    margin-top: 15px; 
}

.n-input input { 
    flex: 1; 
    padding: 15px; 
    border: 1px solid #eee; 
    border-radius: 5px 0 0 5px; 
    outline: none; 
}

.n-input button { 
    background: #ffcc4d; 
    border: none; 
    padding: 0 25px; 
    font-weight: bold; 
    border-radius: 0 5px 5px 0; 
    cursor: pointer; 
}

.footer-links {
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 30px; 
}

.footer-links h4 { 
    font-size: 14px; 
    margin-bottom: 20px; 
    color: #ffe207; 
}

.footer-links ul { 
    list-style: none; 
    padding: 0; 
}
.footer-links li { 
    margin-bottom: 10px; 
    color: #ffffff; 
    font-size: 14px; 
    cursor: pointer; 
}

.f-copy {
    text-align: center; 
    margin-top: 50px; 
    font-size: 13px; 
    color: #999; 
}

.s-icons span { 
    background: #ffffff; 
    color: #000000; 
    width: 35px; 
    height: 35px; 
    border-radius: 50%; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    margin-left: 10px; 
}