* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: black;
}

/* POLISHED RED & WHITE HEADER LOGO */
.logo {
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}
.logo span {
  color: #ff2e2e;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

/* BRIGHTENED HERO BACKGROUND OVERLAY */
.hero {
  height: 90vh;
  background: url('images/G2.jpeg') center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.45); /* Lowered opacity from 0.6 so the van is brighter */
  padding: 50px;
  text-align: center;
  border-radius: 10px;
}

.overlay h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.overlay p {
  margin-bottom: 30px;
  font-size: 18px;
}

/* HERO BUTTON WRAPPER FOR SIDE-BY-SIDE LAYOUT */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* INDEPENDENT PREMIUM ACTION BUTTON STYLES */
.btn {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.call-hero {
  background: #ff2e2e;
  color: white;
}
.call-hero:hover {
  background: #cc1b1b;
}

.whatsapp-hero {
  background: #25D366;
  color: white;
}
.whatsapp-hero:hover {
  background: #1ebd59;
}

.services {
  padding: 80px 50px;
  text-align: center;
}

.services h2 {
  margin-bottom: 50px;
  font-size: 40px;
}

.service-boxes {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  background: #1f1f1f;
  padding: 30px;
  width: 300px;
  border-radius: 10px;
}

.contact {
  padding: 80px 50px;
  text-align: center;
  background: #000;
}

.gallery {
  padding: 80px 50px;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.contact-form {
  max-width: 700px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form button {
  padding: 15px;
  background: #ff2e2e;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  z-index: 999;
}
Use code with caution.St