/* style.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}

.hero {
  background: linear-gradient(135deg, #0e0b0a, #ead132);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}



.products-section {
  padding: 60px 20px;
  text-align: center;
}

.products-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #dcc321;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 280px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.product-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}


.hero2 {
  background: linear-gradient(135deg, #0e0b0a, #ead132);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero2 h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero2 p {
  font-size: 20px;
  margin-bottom: 20px;
}
.hero2 img {
    max-width: 100%;
    height: 200px ;
}
.hero2 a {
  display: block;
  background: linear-gradient(135deg, #fff, #dcc021);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
 
}
.about-founder {
  background-color: #fff;
  padding: 60px 20px;
  border-top: 1px solid #eee;
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.founder-content img {
  width: 220px;
  height: 400px;
  object-fit: cover;
  
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.founder-text {
  max-width: 500px;
  text-align: right;
}

.founder-text h3 {
  font-size: 24px;
  color: #d79a0d;
  margin-bottom: 10px;
}

.founder-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.site-footer {
  background-color: #e2ba2b;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}

.site-footer p {
  margin: 0 0 10px;
  font-size: 16px;
}







