
/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-color: rgba(5, 109, 102, 0.5);
  background-blend-mode: overlay;
  color: #fff;
  text-align: center;
}

h1, h2 {
  text-align: center;
  color: #0e0b0b;
}

h2 {
  font-size: 1.5rem;
  margin-top: 10px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.tool-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.tool-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.tool-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.tool-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 15px;
}

.tool-card p {
  font-size: 1rem;
  color: #bbb;
}

.responsive-image {
  width: 300px;
  height: 200px;
}

.contact-us {
  margin-top: 50px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-us form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-us input, .contact-us textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  background: #fff;
}

.contact-us button {
  padding: 10px;
  background-color: #1e90ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-us button:hover {
  background-color: #007acc;
}

/* Footer Styles */
footer {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.5rem;
}

footer a:hover {
  color: #1e90ff;
}

footer p {
  font-size: 1rem;
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .tool-box {
      flex-direction: column;
      align-items: center;
  }

  .contact-us form {
      max-width: 100%;
  }
}