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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background-color: #efefef;
  color: #000;
  padding: 1rem 2rem;
}

header h1 {
  font-size: 1.8rem;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  color: #222;
  margin-right: 1rem;
  text-decoration: none;
}

.hero {
  background-color: #eee;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
}

.section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.product img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.product h4 {
  margin: 1rem 0 0.5rem;
}

.about {
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: auto;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin: 0.5rem 0 0.2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.8rem;
  background-color: #111;
  color: #fff;
  border: none;
  cursor: pointer;
}

footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.4rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }
}

.bg{
  background: url(/images/banner-bg.jpg) no-repeat center center;
  position: absolute;
  left: 0;
  right: 65%;
  /* top: -50%; */
  height: 100%;
  border-radius: 0 50% 50% 0;
  z-index: 8;
  background-size: cover !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 9px 2px 0px;

}

.bg-word{
  position: absolute;
  left: 30px;
  height: 100%;
  top: 20%;
  z-index: 100;
  color:#fff;
  width:300px;
  padding:16px
}

.brand{
  max-width: 220px;
}

.logo{
  position: absolute;
  width: 180px;
  z-index: 200;
  border-radius: 50px;
  top: 0px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 9px 2px 0px;
}
.primary{
  color: #980000
}