/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; color: #333; line-height: 1.6; }

/* Hero */
.hero {
  position: relative;
  background: url("https://picsum.photos/1600/600?welding") no-repeat center/cover;
  height: 75vh;
  display: flex; align-items: center; justify-content: center;
}
.hero .overlay {
  background: rgba(0,0,0,0.7);
  color: #fff; text-align: center;
  padding: 40px; border-radius: 10px;
}
.hero h1 { font-size: 3rem; }
.btn {
  display: inline-block; margin-top: 20px;
  padding: 12px 25px;
  background: #c0392b; color: #fff;
  border-radius: 5px; text-decoration: none;
  transition: background 0.3s;
}
.btn:hover { background: #a93226; }

/* Section */
.section { padding: 60px 20px; text-align: center; }
.section.light { background: #f9f9f9; }

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; margin-top: 30px;
}

/* Cards */
.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.card h3 { margin-bottom: 10px; color: #c0392b; }

/* Portfolio */
.images img {
  width: 100%; border-radius: 8px;
  transition: transform 0.3s;
}
.images img:hover { transform: scale(1.05); }

/* Contact */
.contact-details { margin-bottom: 20px; font-size: 1.1rem; }
.contact-details a { color: #c0392b; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

form {
  max-width: 500px; margin: 0 auto;
  display: flex; flex-direction: column;
}
form input, form textarea, form button {
  margin: 10px 0; padding: 12px;
  font-size: 1rem; border: 1px solid #ccc;
  border-radius: 5px;
}
form textarea { resize: vertical; min-height: 120px; }
form button {
  background: #c0392b; color: #fff;
  border: none; cursor: pointer;
  transition: background 0.3s;
}
form button:hover { background: #a93226; }
#formMsg { margin-top: 10px; font-weight: bold; }

/* Footer */
footer {
  background: #333; color: #fff;
  text-align: center; padding: 15px;
}
