/* Custom Colors */
.bg-lightblue {
  background-color: #a8d8db;
}

.bg-darkblue {
  background-color: #1c2b45;
}

/* Hero Section */
/* .hero-section {
  background: url('hero.jpg') center/cover no-repeat;
  height: 80vh;
} */

.hero-section h1,
.hero-section p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Newsletter */
.newsletter input {
  max-width: 400px;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

footer input {
  background: #fff;
  border: none;
  border-radius: 5px;
}

footer button {
  background: #007bff;
  border: none;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .newsletter input {
    width: 80% !important;
  }
}


/* Hero Video Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.btn-primary {
  background-color: #3e9cd0;
  border-color: #3e9cd0;
  color: #fff;
  padding: 10px;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.btn-primary:hover {
  background-color: #2b7ca8;
  border-color: #2b7ca8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(62, 156, 208, 0.4);
}
