body {
  background: linear-gradient(135deg, #002244, #014421);
  color: white;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.modal-bg {
  /* position: relative; */
  background: linear-gradient(135deg, rgba(253, 253, 253, 0.568) 0%, rgba(162, 171, 184, 0.562) 100%);
  color: #002244;
}

.navbar {
  background: linear-gradient(135deg, #002244, #014421);
  color: white;
}

.footer-bar {
  background: linear-gradient(135deg, #002244, #014421);
  color: white;
}

.section {
  padding: 80px 0;
}

/* dash menu start */
.hover-bg:hover {
  background-color: #0d6efd;
  /* Bootstrap primary */
  color: #fff !important;
  text-decoration: none;
}

.nav-link.active {
  background-color: #0d6efd !important;
  color: #fff !important;
}

/* Dash menu ends */
.card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* label */
label {
  color: #123;
  font-weight: 500;
}

.stat-card {
  text-align: center;
  padding: 30px;
  margin: 15px 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 10px 0;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-text {
  font-weight: bold;
  margin: 10px 0;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.logo {
  width: 150px;
  margin-bottom: 30px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #00ff88, #00ccff);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00ff88;
}

.btn-custom {
  background: linear-gradient(45deg, #00ff88, #00ccff);
  border: none;
  color: #002244;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* login css */
.login-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.form-control::placeholder {
  color: #ccc;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* login css ends */
/* sign-up css starts */
.signup-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}



/* signup css ends */