/* Import Jost font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

/* Apply Jost font globally */
body {
  font-family: 'Jost', 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: #198754;
}

.h2 {
  color: #198754;
}

.bg-success-gradient {
    background: linear-gradient(135deg, #198754, #28a745); /* Bootstrap success shades */
    color: white;
  }

.bg-gradient-tech-1 {
    background: linear-gradient(135deg, #d1e7dd, #a3cfbb); /* light greenish */
    color: #000;
  }
  .bg-gradient-tech-2 {
    background: linear-gradient(135deg, #cff4fc, #9eeaf9); /* light blue */
    color: #000;
  }
  .bg-gradient-tech-3 {
    background: linear-gradient(135deg, #fde2e4, #f9bec7); /* light pink */
    color: #000;
  }
  .bg-gradient-tech-4 {
    background: linear-gradient(135deg, #fff3cd, #ffe69c); /* light yellow */
    color: #000;
  }

  .fs-4 a:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
  }

.footer {
  font-family: 'Jost', sans-serif;
}

.footer h4, .footer h5 {
  color: #198754;
}

.footer h5 :hover {
   color: #198754
}


.footer .form-control {
  font-size: 14px;
}

.footer .btn-warning {
  background-color: #198754;
  border: none;
}

.footer .btn-warning:hover {
  background-color: #146c43;
}

.social-links :hover {
    color: #198754
}

.quick-links a:hover {
    color: #146c43 !important;
}

.social-links a:hover {
    color: #146c43 !important;
}

#backToTopBtn {
  background-color: #198754; /* 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: #146c43; /* 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%);
  }
}
