body{
  font-family: 'Poppins', 'Courier New', Courier, monospace;
  /*height: 200vh;*/
}

.bg-light{
  background-color: #f0f0f0 !important;
}

.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary {
  color: #FFFFFF;
}

.btn-sm-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-weight: normal;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: blue;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link  {
      margin-right: 0;
      padding: 10px 0;
  }

  .navbar-light .navbar-nav {
      border-top: 1px solid #EEEEEE;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: black;
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: .5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}


/* Why Choose Us */
.feature-card {
      background-color: #e0e4f1;
      border-radius: 15px;
      padding: 40px 20px 20px;
      text-align: center;
      position: relative;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      position: absolute;
      top: -40px;
      left: 0;
      right: 0;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .icon-circle img {
      width: 35px;
      height: 35px;
    }
    .card-body {
      margin-top: 40px;
    }
    h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }
    p {
      color: #555;
      font-size: 15px;
    }

     /* ===== Placemet-Student====== */

     .clients-card {
      overflow: hidden;
      position: relative;
      background: #fff;
      border-radius: .75rem;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      padding: 1rem;
    }

    /* Scrolling animation */
    .scroll-track {
      display: flex;
      gap: 1rem;
      align-items: center;
      animation: scroll-left 20s linear infinite;
      will-change: transform;
    }

    .clients-card:hover .scroll-track {
      animation-play-state: paused;
    }

    /* Client card style */
    .client-item {
      min-width: 140px;
      max-width: 160px;
      background: #f8f9fa;
      border-radius: .5rem;
      padding: .75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .client-item img {
      width: 90px;
      height: 110px;
      border-radius: .25rem;
      object-fit: cover;
      border: 2px solid rgba(0,0,0,0.05);
      margin-bottom: .5rem;
    }

    .client-info h6 {
      margin: 0;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .client-info p {
      margin: 0;
      font-size: 0.8rem;
      color: #6c757d;
    }

    @keyframes scroll-left {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 768px) {
      .client-item { min-width: 120px; }
      .client-item img { width: 80px; height: 100px; }
    }

    @media (max-width: 420px) {
      .client-item { min-width: 100px; }
      .client-item img { width: 70px; height: 90px; }
    }


