:root {
  --primary-color: #a32919;
  --secondary-color: #100f0f;
  --text-color: #000000;
  --light-gray: #a9a9a9;
  --dark-gray: #464646;
}

.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  outline: none;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
  position: relative;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn i {
  font-size: 28px;
  color: white;
}

.whatsapp-btn {
  background-color: #25D366;
  text-decoration: none;

}

.call-btn {
  background-color: var(--primary-color);
  text-decoration: none;
}

.youtube-btn {
  background-color: white;
  text-decoration: none;
}

.floating-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-btn:hover::after {
  opacity: 1;
  right: 75px;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn i {
    font-size: 24px;
  }
}

/* Featured Cars Section - White Background */
.featured-Cars-section {
  padding: 80px 5%;
  background-color: white;
}

.featured-Cars-section h2 {
  color: #333;
}

.featured-Cars-section .view-all {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.featured-Cars-section .view-all:hover {
  color: #e05d00;
}

.Car-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.Car-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}

.Car-slider::-webkit-scrollbar {
  display: none;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #333;
}

.slider-nav:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

.slider-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Car Card Styles - Similar to inventory.css but with white background */
.Car-slider .Car-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 280px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.Car-slider .Car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.Car-slider .Car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.Car-slider .Car-card:hover img {
  transform: scale(1.05);
}

.Car-slider .card-content {
  padding: 20px;
}

.Car-slider .Car-card h3 {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: #333;
}

.Car-slider .Car-card .model {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.Car-slider .Car-card .details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.Car-slider .Car-card .detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
}

.Car-slider .Car-card .detail-item i {
  color: var(--primary-color);
  font-size: 14px;
}

.Car-slider .Car-card .price-container {
  margin-top: 15px;
}

.Car-slider .Car-card .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.Car-slider .Car-card .emi {
  font-size: 0.8rem;
  color: #666;
  margin: 5px 0;
}

.Car-slider .Car-card .view-details-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.Car-slider .Car-card .view-details-btn:hover {
  background: #e05d00;
}

.Car-slider .Car-card .status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  z-index: 2;
}

.Car-slider .Car-card .status-available {
  background-color: #28a745;
}

.Car-slider .Car-card .status-sold {
  background-color: #dc3545;
}

.Car-slider .Car-card .status-coming-soon {
  background-color: #ffc107;
  color: #333;
}

/* View Details Button - Updated */
.Car-slider .Car-card .view-details-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.Car-slider .Car-card .view-details-btn:hover {
  background: #e05d00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.Car-slider .Car-card .view-details-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Image Container with Status Overlay */
.Car-slider .Car-card .image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .Car-slider .Car-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .Car-slider .Car-card {
    flex: 0 0 calc(50% - 10px);
  }

  .Car-slider-container {
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .Car-slider .Car-card {
    flex: 0 0 85%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.search-container {
  margin-top: 30px;
  position: relative;
  max-width: 600px;
  margin: auto;
}

.search-input {
  width: 50%;
  padding: 15px 60px 15px 20px;
  border-radius: 30px;
  margin-left: 10px;
  margin-top: 70px;
  border: none;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  background-color: white;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.search-button {
  position: absolute;
  right: 120px;
  top: 75px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-button:hover {
  background: #8a2215;
}

.search-button svg {
  color: white;
  width: 20px;
  height: 20px;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.85) 60%,
      rgba(0, 0, 0, 0.95) 100%), url('https://images.overdrive.in/wp-content/odgallery/2018/06/42636_2018%20Ducati%20Panigale%20V4-2018-022.JPG');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Helvetica, sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

/* Hero Slider Styles */
.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.floating-buttons {
  bottom: 70px;
}

@media (max-width: 768px) {
  .slider-dots {
    bottom: 20px;
  }

  .floating-buttons {
    bottom: 60px;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 96vh;
  min-height: 600px;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rectangle {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 77% 49%, rgba(48, 46, 46, 1) 0%, rgba(1, 1, 1, 0) 100%);
}

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  z-index: 10;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  position: relative;
  color: white;
  text-decoration: none;
  font-family: "Sansation", sans-serif;
  font-weight: 700;
  font-size: 18px;
  transition: color 0.3s;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links li {
  transition: transform 0.3s ease;
}

.nav-links li:hover {
  transform: translateY(-3px);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text-color);
}

.login-btn button {
  background-color: var(--secondary-color);
  color: white;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  padding: 8px 25px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.login-btn button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.login-btn button:hover::before {
  left: 100%;
}

.login-btn button:hover {
  background-color: var(--primary-color);
}

.hero-content {
  position: relative;
  z-index: 5;
  margin-top: 5%;
  padding: 0 5%;
  max-width: 1200px;
  margin-left: 90px;
  margin-right: auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.hero-line {
  display: block;
  background: linear-gradient(188deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Segoe UI", Helvetica;
  opacity: 0;
  transform: translateY(2 0px);
  animation: fadeInUp 2.8s ease forwards;
}

.hero-line.highlight {
  color: var(--primary-color);
  background: linear-gradient(188deg, var(--primary-color) 0%, #ff6b4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 9rem;
  font-weight: 700;
  margin-top: -15px;
}

.hero-line.subtitle {
  color: var(--primary-color);
  background: white;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-weight: 100;
  margin-left: 10px;
  margin-top: -15px;
}

@media only screen and (max-width: 768px) {
  .hero-line {
    display: block;
    background: linear-gradient(188deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Segoe UI", Helvetica, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    /* Fixed typo '2 0px' */
    animation: fadeInUp 2.8s ease forwards;
    font-size: 2rem;
    text-align: center;
  }

  .hero-line.highlight {
    font-size: 4rem;
    /* Reduced from 9rem */
    font-weight: 700;
    margin-top: -10px;
    background: linear-gradient(188deg, var(--primary-color) 0%, #ff6b4a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }

  .hero-line.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: -10px;
    margin-left: 0;
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-line.highlight {
  animation: fadeInUp 0.8s ease 0.3s forwards,
    pulse 2s ease-in-out 2s infinite;
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
  }

  .hero-line.highlight {
    font-size: 5rem;
  }
}


@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-line.highlight {
    font-size: 3rem;
  }
}


.cta-button {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: 28px;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #c23320;
}

@keyframes slideCars {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

section {
  padding: 80px 5%;
  color: white;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-color);
}

/* Brands Section */
.brands-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffaa17 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.brands-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(163, 41, 25, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 10fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.brand-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1) invert(0);
  transition: all 0.3s ease;
}

.brand-card h3 {
  font-size: 1.1rem;
  margin: 0;
  color: white;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand-card h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-card h3 {
    font-size: 0.85rem;
  }
}

.process-steps {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.process-sections {
  background-color: white;
  padding: 80px 5%;
}

.process-section {
  max-width: 1200px;
  margin: 0 auto 80px;
}

.process-section:last-child {
  margin-bottom: 0;
}

.process-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-header h2 {
  font-size: 2rem;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.divider {
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 0 auto;
}

.process-content {
  width: 100%;
}

.process-content p {
  color: rgba(5, 5, 5, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.process-step {
  flex: 1;
  width: 280px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.step-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.step-image-2 {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.step-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.process-step h3 {
  color: rgb(0, 0, 0);
  font-size: 1.3rem;
  margin: auto;
  margin-top: 20px;
  letter-spacing: 1px;
  text-align: center;
}

.process-step p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .process-sections {
    padding: 60px 5%;
  }

  .process-section {
    margin-bottom: 60px;
  }

  .process-header h2 {
    font-size: 1.6rem;
  }

  .process-content p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .process-step {
    min-width: 80%;
    padding: 25px;
  }
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.process-steps {
  display: flex;
  flex-direction: row;
  gap: 25px;
}



.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}


/* Inventory Section */
.inventory-section {
  background-color: white;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffaa17 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(163, 41, 25, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card {
  flex: 1;
  min-width: 200px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);

  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.1rem;
}

.stat-image {
  width: 100%;
  align-items: center;
}

.stat-image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.language-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.language-popup .popup-content {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 15px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-popup h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.language-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.language-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.language-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}
.kannada-font {
  font-family: 'Noto Sans Kannada', sans-serif;
}


/* Services Section */
.services-section {
  background-color: white;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;

}

.services-section h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 600;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(163, 41, 25, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-card {
  flex: 1;
  min-width: 210px;
  max-width: 220px;
  padding: 40px 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  transition: transform 0.4s;
}

.service-card:hover i {
  transform: rotate(15deg) scale(1.2);
}

.service-card h3 {
  font-size: 1.4rem;
  margin: 20px 0 15px;
  color: rgb(0, 0, 0);
}

.service-card p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.service-card a:hover {
  color: #ff6b4a;
}

.styles-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffaa17 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.styles-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(163, 41, 25, 0.1) 0%, transparent 70%);
  z-index: 0;
}
.styles-section {
  position: relative;
  overflow: hidden;
  padding: 60px 5%;
}

.styles-container-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.styles-container {
  display: flex;
  gap: 15px;
  transition: transform 0.5s ease;
  width: max-content;
}

.style-card {
  flex: 0 0 160px;
  min-width: 160px;
  max-width: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.style-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.style-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.style-content {
  padding: 15px;
}

.style-content h3 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: white;
}

.style-content p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.style-content span {
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .style-card {
    flex: 0 0 140px;
    min-width: 140px;
    max-width: 140px;
  }
  
  .style-card img {
    height: 100px;
  }
  
  .style-content {
    padding: 12px;
  }
  
  .style-content h3 {
    font-size: 1rem;
  }
  
  .style-content p {
    font-size: 0.75rem;
  }
}

.styles-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.style-card {
  flex: 1;
  min-width: 220px;
  max-width: 230px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.style-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.style-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.style-card:hover img {
  transform: scale(1.05);
}

.style-content {
  padding: 20px;
}

.style-content h3 {
  font-size: 1.4rem;
  margin: 0 0 10px;
  color: white;
}

.style-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.style-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.style-content a:hover {
  color: #ff6b4a;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .stat-card {
    min-width: 150px;
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
    
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .service-card,
  .style-card {
    min-width: 80%;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.sell-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background: white;
  gap: 50px;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.sell-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(163, 41, 25, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.sell-content {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 1;
}

.sell-content h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 2.5rem;
  background: black;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sell-content p {
  color: black;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
  max-width: 600px;
}

.sell-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.sell-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  opacity: 0.9;
  transition: all 0.3s ease;

}

.sell-step:hover {
  opacity: 1;
  transform: translateX(5px);
}

.step-number {
  background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  color: black;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.step-content p {
  color: black;
  margin: 0;
  font-size: 0.95rem;
}

.sell-cta {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sell-cta .cta-button {
  background: linear-gradient(90deg, var(--primary-color), #ff6b4a);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(163, 41, 25, 0.3);
}

.sell-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(163, 41, 25, 0.4);
}

.sell-cta .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff6b4a, var(--primary-color));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
  border-radius: 30px;
}

.sell-cta .cta-button:hover::before {
  opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
  background: white;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(163, 41, 25, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 70px;
  position: relative;
  display: inline-block;
  color:#000000
}

.testimonials-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b4a);
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: -1;
}

.testimonial:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.user-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
  margin-right: 20px;
  transition: all 0.3s ease;
}

.testimonial:hover .user-avatar {
  transform: scale(1.1);
  border-color: rgba(163, 41, 25, 0.5);
}

.user-info {
  flex: 1;
}

.user-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  margin: 0 0 5px 0;
}

.user-location {
  color: black;
  font-size: 0.9rem;
  margin: 0;
}

.rating {
  display: flex;
  margin: 5px 0 0 0;
}

.rating i {
  color: black;
  font-size: 0.9rem;
  margin-right: 3px;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
  z-index: -1;
}

.quote {
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 25px;
  color: black;
  position: relative;
  padding-left: 20px;
}

.quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), #ff6b4a);
}

.filters-container {
  position: relative;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.filter-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.filter-btn.active i {
  transform: rotate(180deg);
}

.filter-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  display: none;
}

.filter-dropdown.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.range-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.range-inputs input {
  flex: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: white;
}

.price-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.price-preset {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.price-preset.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-option {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.filter-option.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.slider-container {
  padding: 15px 0;
}

input[type="range"] {
  width: 50%;
  margin: 10px 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

.year-values,
.km-values {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: white;
}

.section-header {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

#filtered-count {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* Mobile Filter Styles */
@media (max-width: 768px) {
  .filters-container {
    position: relative;
    margin-bottom: 30px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }

  .filter-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s;
  }

  .filter-btn.active i {
    transform: rotate(180deg);
  }

  .filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    display: none;
  }

  .filter-dropdown.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .price-range {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .range-inputs input {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
  }

  .price-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .price-preset {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
  }

  .price-preset.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }

  .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-option {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
  }

  .filter-option.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }

  .slider-container {
    padding: 15px 0;
  }

  input[type="range"] {
    width: 100%;
    margin: 10px 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
  }

  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
  }

  .year-values,
  .km-values {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: white;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  #filtered-count {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.testimonial-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.social-proof {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial {
  animation: fadeIn 0.6s ease forwards;
}

.testimonial:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial:nth-child(2) {
  animation-delay: 0.3s;
}

.testimonial:nth-child(3) {
  animation-delay: 0.5s;
}

.style-card-link {
  text-decoration: none;
  color: inherit;
  display: block;

}

.style-card {
  cursor: pointer;
}

.footer {
  background-color: white;
  color: black;
  padding: 60px 5% 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: black;
}

.footer-section p {
  color: black;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: white;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.95) 100%);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
  font-size: 0.9rem;
}


.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2.0rem;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 5%;
  top: 25px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  padding: 0;
}

.mobile-menu .nav-links li {
  margin: 15px 0;
}

.mobile-menu .login-btn {
  margin-top: 30px;
  width: 100%;
}

/* Mobile Responsive Adjustments for Hero Section */
@media only screen and (max-width: 768px) {
  .hero-section {
    height: 0vh;
    min-height: 80vh;
    padding-bottom: 50px;
  }

  .hero-content {
    margin-top: 30%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-line {
    font-size: 2rem;
  }

  .hero-line.highlight {
    font-size: 3.5rem;
    margin-top: -5px;
  }

  .hero-line.subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    margin-left: 0;
  }

  .search-container {
    margin: auto;
    width: 90%;
    display: flex;
    justify-content: center;
  }

  .search-input {
    width: 80%;
    margin-left: 0;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
  }

  .search-button {
    top: 32px;
  }

  .navbar {
    padding: 15px;
  }

  .logo-img {
    width: 60px;
  }

  .floating-buttons {
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn i {
    font-size: 24px;
  }
}

/* For very small screens */
@media only screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-line.highlight {
    font-size: 2.8rem;
  }

  .hero-line.subtitle {
    font-size: 1rem;
  }

  .search-input {
    width: 90%;
    font-size: 14px;
  }

  .search-button {
    width: 30px;
    height: 30px;
    right: 21%;
    top: 24px;

  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 15px 5%;
  }

  .nav-links,
  .login-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 3rem;
    transform: none;
  }

  .car-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .sell-section {
    flex-direction: column;
    gap: 30px;
  }

  .sell-content h2 {
    text-align: center;
  }

  .sell-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .sell-steps {
    align-items: center;
  }

  .sell-cta {
    display: flex;
    justify-content: center;
  }
}

.logo-img {
  width: 80px;
}

@media (max-width: 768px) {
  .logo-img {
    width: 70px;
  }
}

@media (max-width: 768px) {

  @keyframes slideCars {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(-150%);
    }
  }

  section {
    padding: 60px 5%;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .testimonial {
    min-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .Car-card {
    height: 500px;
  }

  .Car-card img {
    height: 180px;
  }

  .testimonial {
    padding: 30px 20px;
  }

  .user-avatar {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .user-name {
    font-size: 1rem;
  }

  .user-location {
    font-size: 0.8rem;
  }

  .quote {
    font-size: 0.9rem;
  }
}