/* styles.css */

/* Resetting margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(to right, #4682b4, #5a8d9d); /* Steel Blue gradient */
  color: white;
  height: 100vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

/* Washed-out overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4); /* Light, semi-transparent white overlay */
  z-index: 1;
}

/* Hero Content */
.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* Hero Title */
.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Call to Action Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-button {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background-color: #3b7a8c; /* Dark Steel Blue */
  color: white;
  border: 2px solid #3b7a8c;
}

.cta-button.secondary {
  background-color: transparent;
  color: #f0f0f0;
  border: 2px solid #f0f0f0;
}

.cta-button:hover {
  transform: translateY(-5px);
}

.cta-button.primary:hover {
  background-color: #2f6272;
  border-color: #2f6272;
}

.cta-button.secondary:hover {
  background-color: #f0f0f0;
  color: #4682b4;
}

/* About Section */
.about {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.profile-img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Services Section */
.services {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.services-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 1rem;
  color: #555;
}

/* Location Section */
.location {
  background-color: #4682b4;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.location h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.location p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form
