.navbar{
    background-color: #A8B5C1;
    padding-bottom:15px;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: #0d416e; /* color after scrolling */
}

.navbar .nav-item .nav-link{
    font-size:21px;
    color:white;
    font-weight: 500;
}
.navbar .nav-item .nav-link:hover{
    color: #6366f1;
    transition: 0.3s;
}

/* Work section design */
.works-section  .card{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition:transform 0.3s, box-shadow 0.3s;
}
.works-section  .card:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


/* Categories section */
.categories-section {
  position: relative;
  background: #062C4E;
  padding: 60px 0;      
  overflow: hidden;   
}

.categories-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  max-width: 100%;
}

.categories-track {
  display: inline-flex;
  animation: scroll 20s linear infinite;
}

.category-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #ff6600;
  margin: 0 15px;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}

.category-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-circle:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


    /* FAQ section */
     .faq-section {
      padding: 50px 20px;
    }
    .faq-title {
      text-align: center;
      font-weight: bold;
      margin-bottom: 30px;
    }
    .accordion-button {
      font-size: 16px;
      font-weight: 500;
      color: #333;
    }



    /* Profite calculation section design */
     .calculator-box {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .result-box {
      font-size: 1.2rem;
      font-weight: bold;
      margin-top: 20px;
    }
    .rules-box {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .rules-box ul {
      padding-left: 20px;
    }
    .rules-box li::marker {
      color: green;
    }

    /* start feedback  design*/
     .testimonial-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
      padding: 20px;
      height: 100%;
      transition: transform 0.3s ease-in-out;
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
    }
    .stars {
      color: #f7c948;
    }

    /* start CTA design */
    .cta-banner {
      background: #4f46e5;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      border-radius: 8px;
      margin-top: 50px;
    }

    /* Start footer design */
    .footer-link {
    color: #d1d5db; /* light gray */
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-link:hover {
    color: #6366f1; /* purple */
  }
  .social-icon {
    color: #d1d5db;
    margin-left: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  .social-icon:hover {
    color: #6366f1;
    transform: scale(1.2);
  }


  /* Academy Page Design */
   .hidden-text {
     display: none;
     }


    /* Login page Design */
   .login-main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 100px; /* navbar space */
      padding-bottom: 40px;
    }
    .login-card {
      background: #fff;
      border-radius: 12px;
      padding: 40px;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }
    .login-btn-custom {
      background: #ff6600;
      border: none;
      color: #fff;
      font-weight: 600;
      transition: 0.3s;
    }
    .login-btn-custom:hover {
      background: #e65c00;
    }

    /* SignUp Page Design */
    .signup-main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 100px; /* navbar space */
      padding-bottom: 40px;
    }
    .signup-card {
      background: #fff;
      border-radius: 12px;
      padding: 40px;
      width: 100%;
      max-width: 450px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }
    .sign-btn-custom {
      background: #ff6600;
      border: none;
      color: #fff;
      font-weight: 600;
      transition: 0.3s;
    }
    .sign-btn-custom:hover {
      background: #e65c00;
    }