/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 56px; /* Offset for fixed navbar */
}

/* Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.8);
}
.navbar-nav .nav-link {
  color: #fff;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #f8d210;
}

/* Hero Section */
#heroCarousel {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
  min-height: 500px;
  position: relative;
  z-index: 1;
}

.carousel-inner {
  height: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.carousel-item.active {
  z-index: 2;
  position: relative;
}

.carousel-item:not(.active) .hero-slide {
  transform: scale(1) !important;
  animation: none !important;
}


.hero-slide.zoom-animate {
  animation: zoomIn 10s ease-in-out forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  bottom: 20%;
}
.carousel-caption h1 {
  font-size: 3rem;
  color: #f8d210;
}
.carousel-caption p {
  font-size: 1.2rem;
  color: #fff;
}
.carousel-caption .btn {
  margin-top: 10px;
  background-color: #f8d210;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.carousel-caption .btn:hover {
  background-color: #ffc107;
}

/* Paragraph Section */
section {
  background: #f8f9fa;
  padding: 50px 0;
}
section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}
section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Footer */
footer {
  background: #343a40;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
footer a {
  color: #f8d210;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
/* Make Google reCAPTCHA responsive */
.g-recaptcha {
  transform: scale(0.85);
  -webkit-transform: scale(0.85);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

@media (max-width: 576px) {
  .g-recaptcha {
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-left: -15px;
  }
}