
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #111;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  height: 40px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #FE5D26;
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f5f5f5;
}

.hero h1 {
  font-size: 2.5rem;
  color: #000;
}

.cta-button {
  background-color: #FE5D26;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  display: inline-block;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #F2C078;
}

section {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #fff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 2rem;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.footer {
  background-color: #000;
  color: white;
  padding: 1rem;
  text-align: center;
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-form button {
  padding: 0.8rem;
  background-color: #FE5D26;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

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

.form-status {
  text-align: center;
  color: green;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .navbar ul {
    flex-direction: column;
    background: #000;
    padding: 1rem;
    display: none;
  }

  .navbar ul.show {
    display: flex;
  }
}

.card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.footer {
  background-color: #000;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.footer nav {
  margin-bottom: 1rem;
}

.footer nav a {
  color: #F2C078;
  margin: 0 1rem;
  text-decoration: none;
}

.footer nav a:hover {
  color: #FE5D26;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1.1rem;
  color: #FE5D26;
  font-weight: bold;
}

.card ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1rem;
}

.card ul li {
  padding: 0.3rem 0;
  border-bottom: 1px dashed #eee;
}

.card:nth-child(1) {
  border-top: 5px solid #FE5D26;
}

.card:nth-child(2) {
  border-top: 5px solid #F2C078;
}

.card:nth-child(3) {
  border-top: 5px solid #C1DBB3;
}

.hero-video-container {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(0.4);
}

.hero-text-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding-top: 10vh;
}

.hero-text-overlay h1 {
  font-size: 2.5rem;
}

.hero-text-overlay p {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.hero-text-overlay .cta-button {
  margin-top: 2rem;
}

.hero-text-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 10vh 2rem 2rem;
}

.hero-text-overlay h1 {
  color: #FE5D26;
}

.hero-text-overlay h1,
.hero-text-overlay p {
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 1rem 2rem;
  margin: 1rem auto;
  border-radius: 8px;
}

.hero-text-overlay .cta-button {
  background-color: #FE5D26;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero-text-overlay .cta-button:hover {
  background-color: #F2C078;
}

.hero-text-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text-overlay h1,
.hero-text-overlay p {
  max-width: 90%;
  margin: 1rem 0;
  text-align: center;
}

.hero-text-overlay .cta-button {
  margin-top: 1.5rem;
}

.contact-email {
  margin: 1rem auto;
  font-size: 1rem;
  color: #333;
}

.contact-email a {
  color: #FE5D26;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}
