/* 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: #19277F;
}

.dropdown-item {
    transition: background-color 0.3s, color 0.3s;
  }

  .dropdown-item:hover {
    background-color: #19277F; /* Your brand color or desired hover background */
    color: #fff;               /* Text color on hover */
  }

.h2 {
  color: #19277F;
}

.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: white;
}

.footer h5 :hover {
   color: #19277F
}


.footer .form-control {
  font-size: 14px;
}

.footer .btn-warning {
  background-color: #19277F;
  border: none;
}

.footer .btn-warning:hover {
  background-color: #19277F;
}

.social-links :hover {
    color: #19277F
}

.quick-links a:hover {
    color: #19277F !important;
}

.social-links a:hover {
    color: #19277F !important;
}

#backToTopBtn {
  background-color: #19277F; /* 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: #19277F; /* 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%);
  }
}

  /* Timeline Container */
    .timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem 0;
    }

    /* Vertical line */
    .timeline::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: #19277F;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    /* Timeline Item */
    .timeline-item {
      position: relative;
      width: 50%;
      padding: 1.5rem 2rem;
      box-sizing: border-box;
    }

    .timeline-item.left {
      left: 0;
      text-align: right;
    }

    .timeline-item.right {
      left: 50%;
      text-align: left;
    }

    /* Content Box */
    .timeline-content {
      background: white;
      padding: 1.5rem 2rem;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .timeline-content:hover {
      transform: translateY(-8px);
      box-shadow: 0 14px 24px rgba(0,0,0,0.15);
    }

    /* Circle on timeline */
    .timeline-item::before {
      content: '';
      position: absolute;
      top: 1.8rem;
      width: 24px;
      height: 24px;
      background: #19277F;
      border-radius: 50%;
      border: 4px solid white;
      box-shadow: 0 0 8px rgba(17, 218, 233, 0.6);
      z-index: 10;
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    .timeline-item.left::before {
      right: -12px;
    }
    .timeline-item.right::before {
      left: -12px;
    }

    /* Heading inside timeline */
    .timeline-content h4 {
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #19277F;
      font-size: 1.25rem;
      letter-spacing: 0.05em;
    }
    .timeline-content p {
      margin: 0;
      font-size: 1rem;
      color: #555;
      line-height: 1.5;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .timeline::after {
        left: 20px;
      }
      .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
        text-align: left !important;
      }
      .timeline-item.left,
      .timeline-item.right {
        left: 0 !important;
      }
      .timeline-item::before {
        left: 4px !important;
        right: auto !important;
      }
    }

   
  #clients {
    position: relative;
  }

  #clients .carousel-control-prev,
  #clients .carousel-control-next {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    z-index: 5;
    background-color: #00000099; /* semi-transparent dark */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none; /* Remove vertical centering */
  }

  #clients .carousel-control-prev {
    left: 0;
  }

  #clients .carousel-control-next {
    right: 0;
  }

  #clients .carousel-control-prev-icon,
  #clients .carousel-control-next-icon {
    background-size: 60% 60%;
  }

.btn-outline-custom {
  color: #19277F;
  border: 1px solid #19277F;
  background-color: transparent;
}

.btn-outline-custom:hover,
.btn-outline-custom.active {
  background-color: #19277F;
  color: #fff;
}


/* extra */
  .client-logo-box {
    border: 1px dashed #ccc;
    padding: 20px;
    border-radius: 4px;
    background-color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .client-logo {
    max-height: 60px;
    object-fit: contain;
  }

