/* Import Saira font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700&display=swap');

/* Apply Saira font globally */
body {
  font-family: 'Saira', sans-serif;
  margin: 0;
  padding: 0;
}




/* Topbar styling */
.topbar {
  background-color: #f8f9fa;
  font-size: 14px;
  padding: 5px 0;
}

.topbar a {
  text-decoration: none;
  color: #333;
}

/* Navbar styling */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 600;
  font-size: 20px;
}

.nav-link {
  color: #333;
  margin-right: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #AE8E38;
}

.h2 {
  color: #AE8E38;
}

  .fs-4 a:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
  }

.footer {
  font-family: 'Saira', sans-serif;
}

.footer h4, .footer h5 {
  color: #AE8E38;
}

.footer h5 :hover {
   color: #AE8E38
}


.footer .form-control {
  font-size: 14px;
}

.footer .btn-warning {
  background-color: #AE8E38;
  border: none;
}

.footer .btn-warning:hover {
  background-color: #AE8E38;
}

.social-links :hover {
    color: #AE8E38
}

.quick-links a:hover {
    color: #AE8E38 !important;
}

.social-links a:hover {
    color: #AE8E38 !important;
}

#backToTopBtn {
  background-color: #AE8E38; /* Green */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  border: none;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#backToTopBtn:hover {
  background-color: #AE8E38; /* Darker green on hover */
  transform: scale(1.1);
}

.clients-slider {
  position: relative;
  height: 100px;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
  align-items: center;
}

.client-logo {
  flex: 0 0 auto;
  width: 150px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.custom-btn {
  background-color: #AE8E38; /* Gold tone */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(174, 142, 56, 0.3);
}

.custom-btn:hover {
  background-color: #cba94a; /* Slightly lighter gold on hover */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(203, 169, 74, 0.5);
}

