 .nav-link.active, .dropdown-item.active {
    
    color: #5572FA !important; /* Optional: change text color when active */
}

 
 .navbar {
    transition: background-color 0.3s ease-in-out;
  }
  .navbar.scrolled {
    background-color: #343a40 !important; /* Dark Background when scrolled */
  }
  
  .nav-link{
  color:#fff !important;
  }
  
  .dropdown-item{
  color:#fff !important;
  }
  
  .login-form{
   inset: 45px auto auto -200px!important;   
    min-width: 330px;
    padding: 25px;
    color: #000;
  }
  .btn-primary{
  background-color:#5571F7 !important;
  }
  .btn-primary:hover{
  background-color:#5571F !important;
  }
  .btn-info{
  background-color:#525593 !important;
  border-color:#525593 !important;
  color:#fff !important;
  }
  
  
          .timeline {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            padding: 50px 0;
        }
        .vertical-line {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background-color: #525593;
            transform: translateX(-50%);
            z-index: -1;
        }
        .counter {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #525593;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            z-index: 2;
            transition: all 0.4s ease;
        }
        .content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
            max-width: 400px;
        }
        .counter.active {
            background-color: #5468D4;
            transform: translateX(-50%) scale(1.5);
            box-shadow: 0px 0px 15px rgb(111 66 193 / 68%);
        }
        section {
            padding: 80px 0;
            position: relative;
        }
        
        /* Responsive Layout */
        @media (max-width: 768px) {
            .vertical-line {
                left: 50%;
            }
            .counter {
                left: 50%;
            }
            .content {
                text-align: center;
                max-width: 90%;
                margin: 0 auto;
            }
            .row {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
            }
        }
    