body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px;
}

section {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

label, input, textarea, button {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
}

button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.hero-section {
  background: linear-gradient(to right, #2196f3, #1e88e5);
  padding: 4rem 0;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-top: 10px;
}

.hero-button {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1.1rem;
}

.team-section .card {
  background: #ffffff;
  transition: transform 0.2s ease-in-out;
}

.team-section .card:hover {
  transform: translateY(-5px);
}
.contractor-button {
  background: linear-gradient(to right, #ffcc00, #ff9900); /* Gold Gradient */
  color: #212529;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.contractor-button:hover {
  background: #ff9900;
  color: white;
}

.interest-button {
  background: linear-gradient(to right, #28a745, #218838); /* Green gradient */
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.interest-button:hover {
  background: #218838;
  color: white;
}
