@font-face {
  font-family: 'Libertinus Sans';
  src: url('fonts/LibertinusSans-Regular.woff2') format('woff2'),
       url('fonts/LibertinusSans-Regular.woff') format('woff'),
       url('fonts/LibertinusSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Libertinus Sans';
  src: url('fonts/LibertinusSans-Bold.woff2') format('woff2'),
       url('fonts/LibertinusSans-Bold.woff') format('woff'),
       url('fonts/LibertinusSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Libertinus Sans', sans-serif;
}





/* 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: #0C57D1;
}

.h2 {
  color: #0C57D1;
}

.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: 'Libertinus Sans', sans-serif;
}

.footer h4, .footer h5 {
  color: #0C57D1;
}

.footer h5 :hover {
   color: #0C57D1
}


.footer .form-control {
  font-size: 14px;
}

.footer .btn-warning {
  background-color: #0C57D1;
  border: none;
}

.footer .btn-warning:hover {
  background-color: #0C57D1;
}

.social-links :hover {
    color: #0C57D1
}

.quick-links a:hover {
    color: #0C57D1 !important;
}

.social-links a:hover {
    color: #0C57D1 !important;
}

#backToTopBtn {
  background-color: #0C57D1; /* 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: #0C57D1; /* 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%);
  }
}

.btn-outline-orange {
  color: #FF6100;
  border-color: #FF6100;
}

.btn-outline-orange:hover {
  background-color: #FF6100;
  color: white;
}

.btn-outline-green {
  color: #49D206;
  border-color: #49D206;
}

.btn-outline-green:hover {
  background-color: #49D206;
  color: white;
}
