

 /* Theme Colors */
    .bg-red { background-color: #c8102e !important; } /* Strong truck red */
    .text-red { color: #c8102e !important; }
    .btn-red {
      background-color: #c8102e;
      color: #fff;
      border: none;
    }
    .btn-red:hover {
      background-color: #a50d24;
      color: #fff;
    }
    .hero-section {
      position: relative;
      background-size: cover;
      background-position: center;
    }
    .hero-section::before {
      content: "";
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(200, 16, 46, 0.6); /* red overlay */
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      border-radius: 50px;
      z-index: 999;
    }
    footer {
      background-color: #c8102e;
      color: #fff;
    }