html {
      scroll-behavior: smooth;
    }

    body {
      padding-top: 80px;
      font-family: "Poppins", sans-serif;
      font-size: 1rem;
    }

  /* navbar */
  .navbar-nav .nav-link {
    position: relative;
    color: #333;
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff6f00; /* Highlight color */
    transition: width 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    color: #ff6f00;
  }

  .navbar-nav .nav-link:hover::after {
    width: 100%;
  }

  /* Optional: Style for login/register buttons */
  .nav-orange {
    color: #ca6f1e !important;
    font-weight: 600;
  }

  .nav-orange:hover {
    color: #ff6f00 !important;
  }


/* hero */
    .hero-section {
      height: 90vh;
      min-height: 500px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg img {
      object-fit: cover;
      height: 100%;
      width: 100%;
    }

    .hero-bg .overlay {
      background: rgba(0, 0, 0, 0.65);
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      padding: 60px 20px;
      z-index: 2;
    }

    .hero-section h1 {
      font-size: 2.5rem;
      line-height: 1.3;
    }

    .hero-section p {
      font-size: 1.15rem;
    }

    .navbar-brand img {
      transition: transform 0.3s ease;
    }

    .navbar-brand:hover img {
      transform: scale(1.1);
    }
    .nav-orange {
      color: #ca6f1e !important;
    }
      /* counter */
    .counter {
    font-size: 2rem;
  }

  /* pricing */
/* Pricing Card Hover */
.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.pricing-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* List Item Styling */
.feature-list li {
  padding: 6px 0;
  font-size: 14px;
  color: #333;
  transition: all 0.2s ease-in-out;
}

.feature-list li:hover {
  transform: translateX(5px);
  color: #1f3b56;
}

/* Optional bounce effect */
@keyframes zoomBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1.05); }
}





   /* footer */
    .footer-bottom {
      background-color: #1f3b56;
      padding: 15px 0;
      font-size: 0.9rem;
    }
    .footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
  }
  .footer-link:hover {
    color: #0dcaf0;
    padding-left: 8px;
  }

  .social-icon {
    color: #ccc;
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  .social-icon:hover {
    color: #0dcaf0;
    transform: scale(1.2);
  }

  .fade-in {
    animation: fadeIn 1.2s ease-in-out both;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


/* login page*/
  body {
      background-color: rgb(31, 59, 86);
    }
    .login-card {
      max-width: 400px;
      margin: auto;
      margin-top: 80px;
      background-color: rgb(5, 22, 41);
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(20, 19, 19, 0.1);
      padding: 20px;
    }
    .footer-text {
      font-size: 0.9rem;
      color: #888;
    }
    .form-label, .form-control {
      color: #fff;
    }
    .form-control::placeholder {
      color: #ccc;
    }
    a {
      color: #aad;
    }