body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

header {
  background-color: #ffe900;
  padding: 10px 0;
}

header ul {
  font-weight: 500;
}

.hero {
  background-image: url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 60px 15px;
}

.logo {
  width: 8rem;
  height: auto;
}

/* .company-name {
  color: #000;
  font-weight: 700;
  font-size: 1.8rem;
} */

.company-name span {
  font-size: 1.2rem;
  font-weight: 500;
}

.hero h1 {
  color: #ffe900;
  font-weight: 700;
  font-size: 3rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.hero a {
  color: #000000;
  text-decoration: none;
  background-color: #ffe900;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  display: inline-block;
}

.hero a:hover {
  background-color: #000000;
  color: #ffe900;
}

.about {
  background-color: #f4f4f4;
  padding: 100px 0;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about img {
  border-radius: 10px;
  box-shadow: 5px 5px 10px #cacaca;
  width: 100%;
}

.products {
  background-color: #ffffff;
  padding: 80px 0;
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #414141;
  margin-bottom: 40px;
}

.p-card {
   height: 50vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.card-overlay {
 background-color: #00000070;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay:hover {
  background-color: #00000099;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.card-1 { background-image: url('images/product-1.jpg'); }
.card-2 { background-image: url('images/product-2.jpg'); }
.card-3 { background-image: url('images/product-3.jpg'); }
.card-4 { background-image: url('images/product-4.jpg'); }
.card-5 { background-image: url('images/product-5.jpg'); }
.card-6 { background-image: url('images/product-6.jpg'); }

.values {
  background-color: #ffe900;
}

.values-div {
  padding: 80px 0 40px;
}

.values-div h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
}

.values-div p {
  font-size: 1.05rem;
  color: #000000;
  font-weight: 500;
}

.contact {
  background-color: #fff;
  padding: 80px 0;
  color: #000000;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
}

.contact img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.contact a {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
}

.contact a:hover {
  text-decoration: underline;
}

footer {
  font-size: 0.9rem;
}

/* ===================== Responsive Styles ===================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .p-card {
    min-height: 250px;
  }
  .values-div {
    padding: 60px 15px 30px;
  }
  .values-div h2 {
    font-size: 2rem;
  }
  .values-div p {
    font-size: 1rem;
  }
  .about, .products, .contact {
    padding: 60px 15px;
  }
  .contact img {
    margin-bottom: 25px;
}
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero a {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
  .company-name {
    font-size: 1.5rem;
  }
  .card-title {
    font-size: 1.8rem;
  }
}
