:root {
  --blue: #1f3a5f;
  --blue2: #2d5c88;
  --light: #f5f7fa;
  --grey: #666;
}

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

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


/* NAV */

nav {
  background: var(--blue);
  padding: 15px 20px;
}

nav a {
  color: white;
  margin-right: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}


/* HERO */

.hero {
  background: linear-gradient(
    rgba(31,58,95,0.5),
    rgba(31,58,95,0.5)
  ),
  url("garage.jpg");

  background-size: cover;
  background-position: center;

  padding: 120px 20px;
  text-align: center;
  color: white;
}

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

.hero p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 25px;
}

.btn {
  background: #2d5c88;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  border-radius: 4px;
}

.btn:hover {
  background: #1f3a5f;
}


/* SECTION */

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: var(--blue);
  margin-bottom: 10px;
}

ul {
  margin-left: 20px;
}

footer {
  background: var(--blue);
  color: white;
  padding: 20px;
  text-align: center;
}

.nav {

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--blue);
  padding: 10px 20px;

}


.logo {

  height: 50px;

}


.nav-right a {

  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;

}


.nav-right a:hover {

  color: #2d5c88;

}
.top-banner {

  background: white;
  text-align: center;
  padding: 0;
  overflow: hidden;

}

.banner-logo {

  max-width: 600px;
  width: 100%;

  margin-top: -80px;
  margin-bottom: -80px;

}

.services {
  background: var(--light);
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.services-intro {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
  color: var(--grey);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: var(--blue);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--grey);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.reviews {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.reviews-intro {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
  color: var(--grey);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: var(--light);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  position: relative;
}

.stars {
  color: #f5b50a;
  margin-bottom: 10px;
  font-size: 18px;
}

.review-card p {
  font-style: italic;
  margin-bottom: 15px;
}

.author {
  font-weight: bold;
  color: var(--blue);
  font-size: 14px;
}

.reviews-cta {
  margin-top: 40px;
}

.btn.secondary {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}

.btn.secondary:hover {
  background: var(--blue);
  color: white;
}

/* responsive */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}