body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  color: #000;
  background: #fff;
}

.hero {
  position: relative;
  width: 100%;
  display: block;
}


.hero-text h1, .hero-text h2, .hero-text p {
  margin: 0.5rem 0;
  color: #000;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  max-width: 40%;
  color: #dad8d6;
}


.hero-text h1 {
  color: #FF6B00;
  font-size: 5rem;
}

.hero-text h2 {
  color: #FF6B00;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.services {
  padding: 3rem 1rem;
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid #ccc;
  padding: 1rem;
  width: 280px;
  text-align: center;
  text-decoration: none;
  color: black;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #FF6B00;
}

.card img {
  width: 100%;       
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.contact-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3rem 1rem;
  gap: 2rem;
}

.contact-form, .about-text {
  flex: 1 1 45%;
  min-width: 300px;
}

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

.contact-form label {
  margin-top: 1rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  margin-top: 1.5rem;
  background-color: #ff6b00;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #ff8500;
}

.about-text p {
  line-height: 1.6;
}


.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
  position: sticky; /* Keeps it at the top when scrolling */
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.main-header nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.main-header nav a:hover {
  color: #FF6B00;
}

/* Add to style.css */
.main-footer {
  background-color: #f8f9fa;
  color: #6c757d;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #eee;
  margin-top: 3rem;
}
