 html, body {
      height: 100%;
      font-family: 'Poppins', sans-serif;
      margin: 0;
    }

    .full-height {
      height: 100vh;
    }

    .hero-section {
      background: linear-gradient(to bottom right, #fff, #ffe6e6);
      padding: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .hero-section img {
      max-width: 100%;
      height: auto;
    }

    .login-wrapper {
      padding: 3rem 2rem;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 420px;
      margin: auto;
    }

    .logo {
      font-size: 2rem;
      font-weight: 700;
      color: #e60000;
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .form-control {
      border-radius: 8px;
      padding: 0.75rem 1rem;
      border: 1px solid #ddd;
      transition: all 0.3s;
    }

    .form-control:focus {
      border-color: #e60000;
      box-shadow: 0 0 0 0.2rem rgba(230, 0, 0, 0.25);
    }

    .btn-login {
  background-color: #e60000 !important;
  color: #fff !important;
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(230, 0, 0, 0.3);
}

.btn-login:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 0, 0, 0.4);
}

.btn-login:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(230, 0, 0, 0.3);
}

    .alert {
      font-size: 0.9rem;
      border-radius: 6px;
    }

    @media (max-width: 768px) {
      .hero-section {
        display: none;
      }
    }


    /* Dashbaord Styles */

    .bg-navy {
    background-color: #001f3f !important;
    color: #fff !important;
}

#sidebarToggle {
      color: #fff;
    border: 1px solid #fff;

}

   /* Sidebar styles */
    #sidebar {
       position: fixed;
      top: 0;
      left: 0;
      width: 280px;
      height: 100vh;
      background-color: #e60000;
      border-right: 1px solid #dee2e6;
      padding: 1rem;
      overflow-y: auto;
      z-index: 1050;
      /* transform: translateX(-100%); */
      transition: transform 0.3s ease;
    }

     #sidebar.show {
      transform: translateX(0);
    }
    

    #sidebar .nav-link {
      color: white;
      font-weight: 600;
      font-size: 1.1rem;
      padding: 1rem 1.5rem;
      transition: background-color 0.3s;
    }

    #sidebar .nav-link:hover, #sidebar .nav-link.active {
      background: #cc0000;
      border-radius: 0 25px 25px 0;
      color: #fff;
    }

    /* Collapse sidebar on small screens */
    @media (max-width: 991.98px) {
      #sidebar {
        margin-left: -250px;
        position: fixed;
      }
      #sidebar.active {
        margin-left: 0;
      }
    }

    /* Main content styling */
    #content {
      margin-left: 300px; /* equal to sidebar width */
      padding: 2rem;
      transition: all 0.3s;
    }

    @media (max-width: 991.98px) {
      #content {
        margin-left: 0;
      }
    }

    /* Overlay for sidebar on small screens */
    #sidebarOverlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(0,0,0,0.5);
      z-index: 999;
    }
    #sidebarOverlay.active {
      display: block;
    }

    /* Cards with new colors */
    .card-blue {
      background-color: #0d6efd; /* Bootstrap primary blue */
      color: white;
    }
    .card-green {
      background-color: #198754; /* Bootstrap success green */
      color: white;
    }
    .card-purple {
      background-color: #6f42c1; /* Purple */
      color: white;
    }
    .card-orange {
      background-color: #fd7e14; /* Orange */
      color: white;
    }
    .card-teal {
      background-color: #20c997; /* Teal */
      color: white;
    }
    .card-gray {
      background-color: #6c757d; /* Gray */
      color: white;
    }

    .card-custom {
      border-radius: 15px;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
      transition: transform 0.3s;
      padding: 1.5rem;
      text-align: center;
    }

    .card-custom:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgb(0 0 0 / 0.15);
    }

    .card-custom h5 {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .card-custom h2 {
      font-weight: 700;
      font-size: 2.5rem;
      margin: 0;
    }

    /* Navbar for hamburger */
    .navbar {
      padding: 0.5rem 1rem;
      color: white;
    }
    .navbar-toggler {
      border-color: rgba(255,255,255,.1);
    }
    .navbar-toggler-icon {
      color: white;
    }

    .navbar-text {
      color: #fff !important;
      font-size: 1.5rem !important;
    }