
.navbar-nav .nav-link {
  color: white;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #9a9b9c; /* Bright gold/yellow on hover */
}
   .btn-contact {
      background-color: #1c321c;
      border-color: whitesmoke;
    }
    .btn-contact:hover {
      background-color: #213521;
      color: white;
    }
/* FOOTER */
footer {
  color: white;
  background-color: #182918;
  padding: 0.5rem 0;
  margin-top: 0;
}
/* CONTACT SECTION */
#contactus {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}

#contactus::after {
  content: "";
  width: 100%;
  height: 70%;
  background: url("/IMAGE/tile-merchant-ireland-Wblr6Q2Vr70-unsplash.jpg");
  opacity: 0.7;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#contactus .form-control {
  border-radius: 0;
}

#contactus .form-control:focus {
  box-shadow: none;
  border-color: #182918;
}

.btn-brand {
  background-color: #182918;
  color: white;
  transition: all 0.3s ease-in-out;
  border: none;
}

.btn-brand:hover {
  background-color:#182918;
  color: white;
}

    
/* Ensure body takes full height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Make container take full height and use flexbox layout */
.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main content expands to fill available space */
.content {
  flex: 1;
}

/* Footer styling (optional, customize as needed) */
footer {
  background: #182918;
  color: white;
  padding: 1rem;
  text-align: center;
}
.lang-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.lang-toggle-wrapper .form-check-input {
  width: 50px;
  height: 26px;
  cursor: pointer;
  border-radius: 15px;
  position: relative;
  -webkit-appearance: none;
  background-color: #6c757d;
  outline: none;
  transition: background-color 0.3s ease;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

.lang-toggle-wrapper .form-check-input:checked {
  background-color: #4caf50;
}

.lang-toggle-wrapper .form-check-input::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background: white;
  transition: 0.3s;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.lang-toggle-wrapper .form-check-input:checked::before {
  left: 26px;
}

.lang-toggle-wrapper .form-check-label {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  user-select: none;
}
.counter-section {
  background: #eaf5e4;
  color: #2f4b23;
  font-weight: 700;
}
.counter-section h2 {
  font-size: 3rem;
  color: #3b5a0b;
}
.counter-section p {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #47632a;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}



.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-5px);
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
