* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Top Bar */
.top-bar {
  background: #ffffff;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.top-actions .btn {
  margin-left: 10px;
}

/* Buttons */
.btn {
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #0056b3;
  color: #0056b3;
}

.btn-success {
  background: #28a745;
  color: #fff;
}

.btn-primary {
  background: #0056b3;
  color: #fff;
}

.btn-white {
  background: #ffffff;
  color: #0056b3;
}

/* Navbar */
.navbar {
  background: #1e5aa8;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
}

.logo span {
  color: #00ffcc;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.nav-links a.active {
  background: #004aad;
  padding: 6px 12px;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  height: 80vh;
  background:
    linear-gradient(rgba(0, 64, 140, 0.85), rgba(0, 64, 140, 0.85)),
    url("car-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 40px;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 span {
  font-size: 48px;
  letter-spacing: 2px;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #00ffcc;
}

/* ADD THIS */
.logo img {
  height: 45px;   /* adjust size if needed */
  width: auto;
  display: block;
