    html,
    body {
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
      overflow-x: hidden;
      width: 100%;
    }

    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)),
        url('/public/assets/img/mahindra_bolero_banner.png') center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      color: #fff;
      position: relative;
      padding-top: 80px;
    }

    .navbar {
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.671) 0%,
          rgba(0, 0, 0, 0.538) 25%,
          rgba(0, 0, 0, 0.373) 50%,
          rgba(0, 0, 0, 0.154) 75%,
          rgba(245, 245, 245, 0) 100%) !important;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding-top: 22px;
      padding-bottom: 22px;
      transition: background 0.4s ease, padding 0.3s ease;
    }

    .navbar.scrolled {
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.95) 0%,
          rgba(0, 0, 0, 0.9) 100%) !important;
      padding-top: 12px;
      padding-bottom: 12px;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .cta-btn {
      background: #c40000;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      background: #9e0000;
      transform: translateY(-3px);
    }

    .vehicle-card {
      transition: all 0.3s ease;
      border: none;
    }

    .vehicle-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .vehicle-card img {
      max-height: 180px;
      object-fit: contain;
      padding: 20px;
    }

    .section-title {
      font-weight: 700;
      color: #111;
    }

    footer {
      background: #111;
      color: #ccc;
    }

    .why-choose-us {
      position: relative;
      background: url('/public/assets/img/why_choose_showroom.png') right center/cover no-repeat;
      padding: 120px 0;
    }

    .why-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right,
          rgba(0, 0, 0, 0.35) 0%,
          rgba(0, 0, 0, 0.55) 40%,
          rgba(0, 0, 0, 0.7) 100%);
    }

    .why-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(0, 0, 0, 0.65),
          rgba(0, 0, 0, 0.75));
    }

    footer a {
      color: #fff;
      text-decoration: none;
    }

    .contact-phone {
      display: flex;
      align-items: center;
      /* icon + text same line */
      justify-content: center;
      gap: 8px;
      /* icon & text space */
      font-size: 16px;
    }

    .contact-phone .phone-icon {
      color: #000;
      /* BLACK color */
      font-size: 18px;
    }

    .contact-phone .phone-text {
      color: #000;
      /* number color */
      font-weight: 500;
    }

    ul li::marker {
      font-size: 24px;
    }

    ul li h4 {
      display: inline;
      font-size: 24px;
      margin: 0;
    }

    .hero-contact {
      position: absolute;
      bottom: 40px;
      right: 60px;
      text-align: right;
    }

    .hero-phone {
      display: block;
      color: #fff;
      font-weight: 600;
      font-size: 21px;
      margin-bottom: 10px;
      transition: 0.3s;
    }

    @media (max-width: 430px) {

      .navbar .container {
        flex-wrap: wrap !important;
      }

      .navbar-brand {
        font-size: 1rem !important;
        max-width: 75%;
        line-height: 1.2;
      }

      .navbar-toggler {
        margin-left: auto;
        transform: scale(0.85);
      }

      /* 🔥 Important Part */
      .navbar-collapse {
        width: 100%;
        text-align: left;
        margin-top: 10px;
      }

      .navbar-nav {
        align-items: flex-start !important;
      }

    }

    @media (max-height: 650px) {
      .hero {
        justify-content: flex-start;
        padding-top: 80px;
        padding-bottom: 100px;
      }

      .hero-contact {
        bottom: 15px;
        right: 15px;
      }

      .hero-phone {
        font-size: 0.9rem;
      }

      .cta-btn {
        padding: 10px 20px !important;
      }
    }
