body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.header {
  background: #b71c1c;
  color: white;
  padding: 15px 40px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
}

.cta-btn {
  background: white;
  color: black;
  padding: 8px 15px;
}

/* HERO */
.hero {
  display: flex;
  padding: 80px;
  align-items: center;
}

.hero-left {
  width: 50%;
}

.hero-left h1 {
  font-size: 40px;
}

.hero-right img {
  width: 100%;
  border-radius: 10px;
}

.btn {
  background: orange;
  color: white;
  padding: 12px 20px;
  margin-right: 10px;
}

.btn-outline {
  border: 2px solid black;
  padding: 12px 20px;
}

/* STATS */
.stats {
  background: #b71c1c;
  color: yellow;
  display: flex;
  justify-content: space-around;
  padding: 30px;
  text-align: center;
}

/* SERVICES */
.services {
  padding: 60px;
  text-align: center;
}

.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  padding: 30px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* ABOUT */
.about {
  display: flex;
  padding: 60px;
  align-items: center;
}

.about img {
  width: 300px;
  border-radius: 10px;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 60px;
  background: #111;
  color: white;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: green;
  color: white;
  padding: 15px;
  border-radius: 50%;
}