body {
    background: #fff;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    color: #222;
  }
  
  .navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 16px rgba(184,0,0,0.10);
  }
  
  .navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff !important;
  }
  
  /* .nav-link {
    color: #ff0000 !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  
  .nav-link.active, .nav-link:focus, .nav-link:hover {
    color: #ffd700 !important;
    font-weight: 700;
  } */

  .nav-link {
    color: #555 !important;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .nav-link.active {
    color: #000 !important;
    font-weight: 700;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    color: #b80000 !important;
    font-weight: 600;
  }
  
  
  .hero-section {
    background: linear-gradient(120deg, #b80000 0%, #222 100%);
    color: #fff;
    padding: 120px 0 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-glass {
    background: rgba(255,255,255,0.10);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(184,0,0,0.18);
    padding: 48px 32px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.18);
  }
  
  .hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fff 30%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero-section p {
    font-size: 1.35rem;
    margin-bottom: 2.2rem;
    color: #fff;
  }
  
  .hero-blob {
    position: absolute;
    top: -80px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 60% 40%, #ffd700 0%, #b80000 100%);
    opacity: 0.13;
    filter: blur(40px);
    z-index: 0;
    animation: blobMove 12s infinite alternate;
  }
  @keyframes blobMove {
    0% { transform: scale(1) translateY(0);}
    100% { transform: scale(1.2) translateY(40px);}
  }
  
  .section-title {
    font-weight: 800;
    color: #b80000;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #fff;
  }

  .section-title1 {
    font-weight: 600;
    color: #b80000;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #fff;
  } 
  
  .feature-icon {
    font-size: 2.7rem;
    color: #ff0000;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 50%;
    padding: 18px;
    box-shadow: 0 2px 12px rgba(184,0,0,0.10);
    display: inline-block;
  }
  
  .card {
    border: none;
    border-radius: 1.2rem;
    box-shadow: 0 4px 32px rgba(184,0,0,0.10);
    transition: transform 0.22s, box-shadow 0.22s;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(2px);
  }
  .card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 40px rgba(184,0,0,0.18);
  }
  
  .dealer-img, .about-img, .office-img {
    border-radius: 1.2rem;
    object-fit: cover;
    width: 100%;
    /* height: 220px; */
    box-shadow: 0 4px 24px rgba(184,0,0,0.10);
  }
  
  .footer {
    background: #222;
    color: #fff;
    padding: 28px 0 12px 0;
    margin-top: 40px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    box-shadow: 0 -2px 16px rgba(184,0,0,0.10);
  }
  
  .btn-danger, .btn-danger:active, .btn-danger:focus {
    background: linear-gradient(90deg, #b80000 0%, #ff3c3c 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 12px rgba(184,0,0,0.10);
    transition: background 0.2s, color 0.2s;
  }
  .btn-danger:hover {
    background: linear-gradient(90deg, #ff3c3c 0%, #b80000 100%);
    color: #fff;
  }
  
  
  /* .btn-warning {
    background: linear-gradient(to right, #ff8c00, #b80000);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
  }

  .btn-warning:hover {
    background: linear-gradient(to right, #b80000, #ff8c00);
  } */

  .btn-warning {
    background: linear-gradient(to right, #ff8c00, #b80000);
    color: #fff !important;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
  }
  .btn-warning:hover {
    background: linear-gradient(to right, #b80000, #ff8c00);
  }
  


  @media (max-width: 767px) {
    .hero-section h1 { font-size: 2rem; }
    .dealer-img, .about-img, .office-img { height: 140px; }
    .hero-glass { padding: 24px 8px; }
  }

  
  