@media (min-width: 768px) {
  .main-text h1 {
    font-size: 50px;
    line-height: 53px;
  }
  .home-intro p {
    font-size: 38px;
    line-height: 48px;
  }
  .navbar-nav {
    gap: 10px;
  }
}

.hero-header {
  height: 80vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

.top-text {
  z-index: 3;
}

a {
  color: white !important;
}
.navbar-nav .nav-item .nav-link {
  color: white !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
  position: relative;
  line-height: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffff0000;
}

.navbar-toggler:focus {
  outline: 0;
  box-shadow: 0 0 0 0.15rem;
}

.main-text {
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}
.main-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
}

.navbar-nav {
  gap: 20px;
}

.home-intro p {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  max-width: 790px;
  margin: 0 auto;
  font-family: "Work Sans", sans-serif;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid #febf00 !important;
}

.card:hover {
  cursor: pointer;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.gallery-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

body {
  font-family: Arial, sans-serif;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fdbf00;
  color: white;
  padding: 15px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  background-color: #e6ac00;
}

.chat-form {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  width: 320px;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

.chat-form h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
}

.chat-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.chat-form button {
  background-color: #fdbf00;
  color: rgb(0, 0, 0);
  font-weight: 500 !important;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.chat-form button:hover {
  background-color: #fdbf00 !important;
}

.cancel-btn {
  background-color: #e0e0e0 !important;
  color: #333 !important;
  margin-left: 10px;
}

.cancel-btn:hover {
  background-color: #d5d5d5 !important;
}

.form-result {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: green;
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-result {
  margin-top: 10px;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  display: none;
  transition: all 0.5s ease;
}

.form-result.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-result.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
