.full-screen {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f8f9fa;
}
.custom-red {
  background-color: red;
  color: white;
  border-color: red;
}
.custom-red:hover {
  background-color: darkred;
  color: white;
  border-color: darkred;
}

.footer-section {
  background-color: #002b40; /* Dark blue background */
}

.footer-section .form-control {
  border-radius: 0;
}

.footer-section .btn-success {
  background-color: #004d40; /* Dark green */
  border: none;
}

.footer-section .btn-success:hover {
  background-color: #00695c;
}

.footer-section .social-icons a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.footer-section .social-icons a:hover {
  color: #00c853; /* Green hover */
}

/* Default style */
.accordion-button {
  background-color: #fff;
  color: #000;
  transition: all 0.3s ease-in-out;
}

/* Active/expanded state */
.accordion-button:not(.collapsed) {
  background-color: #000 !important;
  color: #fff !important;
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

/* Hero Section */
.hero {
  margin-top: 56px;
  /* account for navbar */
  position: relative;
  background: url("../img/Hero-01.jpg") right center/cover no-repeat;
  min-height: 700px;
  /* height: 100vh; */
  display: flex;
  align-items: center;
  color: #000;
}

.hero-content {
  max-width: 600px;
  padding: 40px 20px;
  /* background: rgba(255, 255, 255, 0.85); */
  /* subtle white bg to improve text readability */
  border-radius: 8px;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #004d40;
  color: #fff;
  padding: 18px 20px;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: #000;
  /* default link color */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: red;
  /* hover color */
}

.btn-outline-danger:hover {
  background-color: red;
  color: #fff;
  border-color: red;
}

.btn-outline-danger {
  /* background-color: red; */
  color: #000000;
  border-color: red;
  font-weight: 600;
}

.btn-danger {
  background-color: red;
  color: #fff;
  border-color: red;
  font-weight: 600;
}

.btn-danger:hover {
  background-color: rgba(255, 0, 0, 0);
  color: #000000;
  border-color: red;
}

/* Mobile view */
@media (max-width: 768px) {
  .hero {
    background: none;
    min-height: auto;
    display: block;
    color: #333;
    /* padding-top: 20px; */
  }

  .hero img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .hero-content {
    background: transparent;
    padding: 0 15px;
  }

  .hero-badge {
    position: relative;
    /* bottom: auto; */
    float: right;
    /* margin: 15px auto; */
    margin-top: -52px;
    left: -10px;
    width: 100px;
    height: 100px;
    font-size: 12px;
  }
}
