/* Redefine Reach Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

p, li {
  color: #ccc;
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 60px 20px;
  border-radius: 12px;
}

.logo {
  width: 200px;
  margin-bottom: 30px;
}

.subhead {
  margin: 20px 0;
  font-size: 1.2rem;
  color: #ddd;
}

.cta-button {
  display: inline-block;
  background: #609bbf;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #4a7e9c;
}

.services .cards {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.why-us ul {
  padding-left: 20px;
  margin-top: 20px;
}

.lifestyle .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.lifestyle img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.lifestyle img:hover {
  transform: scale(1.05);
}

.apply form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

form input, form textarea, form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

form input, form textarea {
  background: #222;
  color: #fff;
}

form button {
  background: #3d1d26;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background: #5a2d3a;
}

footer {
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
  background: #000;
  color: #777;
}

footer a {
  color: #6aa7e2;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
