/* Footer base */
.footer {
  background-color: #1D2D22;
  color: #ffffff;
  font-size: 14px;
}

/* Headings */
.footer h2 {
  color: #C18F2D;
  font-size: 20px;
  margin-bottom: 15px;
}

/* Links */
.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #C18F2D;
 
}

/* Contact Info */
.footer li {
  margin-bottom: 8px;
}

/* Bottom border row */
.footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer .fw-bold {
  font-weight: 600;
}


/* Scroll to top button */
#scroll-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #C18F2D;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease;
  text-decoration: none;
}

/* Hover effect */
#scroll-to-top:hover {
  background-color: #1D2D22;
  color: #fff;
}

/* Optional responsive tweaks for small screens */
@media (max-width: 576px) {
  #scroll-to-top {
    padding: 10px;
    bottom: 15px;
    left: 15px; /* Still on the left side */
  }

  .footer {
    text-align: center;
  }

  .footer h2 {
    margin-top: 20px;
  }

  .footer ul {
    padding-left: 0;
  }
}

/* form-check  */
/* Container styling */
.custom-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap; 
}

/* Custom checkbox styling */
.custom-consent-checkbox {
    width: 18px;
    height: 18px;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

/* Checked state with tick */
.custom-consent-checkbox:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.custom-consent-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Label styling */
.custom-consent-label {
    font-size: 0.95rem;
    color: #333;
    user-select: none;
    white-space: nowrap; /* Prevent label from breaking into multiple lines */
}

/* Optional error feedback */
/* .custom-invalid-feedback {
    display: none;
    font-size: 0.8rem;
    color: #dc3545;
    margin-left: 28px;
    margin-top: 0.15rem;
} */

.custom-consent-checkbox:invalid:required ~ .custom-invalid-feedback {
    display: block;
}

