/* LOG IN */
.login_body {
  background-image: url('../img/qwe.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
}

.custom-nav {
    background-color:#8B0000;
    padding: .25rem 0;
}

/* Logo */
.logo-img {
    height: 50px;
    margin-right: 8px;
}

/* Brand Text */
.brand-text {
    color: white;
    font-size: 13px;
    line-height: 1.1;
    font-family: 'Courier New', monospace;
}

/* Mobile responsive: hide text if too small */
@media (max-width: 400px) {
    .brand-text {
        font-size: 11px;
        max-width: 120px;
        line-height: 1.1;
    }
}

/* Navbar links centered */
.navbar-nav .nav-item .nav-link {
    color: white;
    font-size: 18px;
}

/* Make menu items appear centered + like buttons */
.nav-btn {
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
}

/* Add spacing inside dropdown */
#navbarNav {
    padding-bottom: 15px;
}


/* Make title readable on mobile */
.navbar-title {
    font-size: 14px;
    font-weight: 300;
    font-family: 'Courier New', monospace;
    line-height: 1.1;
    white-space: nowrap;
}

/* Mobile fix: stack title below logo */
@media (max-width: 576px) {
    .navbar-title {
        display: block;
        white-space: normal;
        font-size: 12px;
        margin-top: 3px;
        line-height: 1.2;
    }

    .navbar .container {
        flex-wrap: wrap;
    }
}



.header h1 {
  font-weight: 700;
}

.login-container {
  margin-top: 100px;
  padding: 40px 40px 10px 40px;
  border-radius: 10px;
  width: 350px;
  text-align: center;
  box-shadow: 0 0px 40px 0 rgba(6, 3, 3, 0.721);
}

.login-container h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 30px;
}

.login-container input {
  width: 93%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 2px solid black;
  font-size: 16px;
}

.login-container button {
  width: 83%;
  margin-bottom: 5px;
  padding: 10px 0;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

.login-container button:hover {
  background-color: #00bbff;
}

#loginForm {
  margin-bottom: 50px;
}

.login-container a {
  color: #ffffff;
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
}

/* MAIN USER INTERFACE */
.brand-link {
  background-color: #8B0000;
  padding-top: 0.60rem;
  padding-bottom: 0.60rem;
  text-align: center;
}

.brand-text {
  color: blue;
}

.main-sidebar {
    display: none !important;
}

body.sidebar-mini .content-wrapper,
body.sidebar-mini .main-footer,
body.sidebar-mini .main-header {
    margin-left: 0 !important;
}

.main-header {
  background-color: #0F6CBF;
}

.content-wrapper {
  background-color: #ffffff;

}

.far {
  color: #ffffff;
}

.fas {
  color: #ffffff;
}

.logout {
  text-align: center;
  margin-top: 370px;
}

.logout button {
  padding: 10px 25px;
  background-color: #ffffff1f;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #c2c7d0;
}

.logout button:hover {
  background-color: #ffffff5b;
}

.card-body,
.content {
  background-color: white;
}

.fa-users,
.fa-certificate,
.fa-location-dot,
.fa-chart-pie,
.fa-id-card-alt,
.fa-id-card-alt,
.fa-store,
.fa-money-check,
.fa-book,
.fa-cart-plus,
.fa-bookmark,
.fa-gear,
.fa-house,
.fa-bars-progress,
.fa-image,
.fa-file-o {
  color: black;
}

.fa-user {
  color: white;
}

.text1 {
  color: black;
}

/* General Styles */
.ah {
  text-decoration: none;
  color: white;
}

.uls {
  list-style: none;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #00bbff;
  color: white;
}

header .logo h1 {
  font-size: 24px;
}

header nav ul {
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #ff5722;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #0F6CBF, #0F6CBF);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-button {
  padding: 15px 30px;
  background-color: white;
  color: #00bbff;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
  background-color: #ff5722;
  color: white;
}

/* Services Section */
.services {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.service-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.service {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 8px;
  flex: 1;
  transition: transform 0.3s;
}

.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service p {
  font-size: 16px;
  color: #777;
}

.service:hover {
  transform: scale(1.05);
}

/* Promo Section */
.promo {
  background-color: #0F6CBF;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.promo h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.promo-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.promo-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.promo-image img {
  max-width: 700px;
  height: 300px;
  border-radius: 8px;
}

.promo .cta-button {
  background-color: #fff;
  color: #ff5722;
  padding: 15px 30px;
  border-radius: 5px;
}

.modal-backdrop {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-content {
  transition: all 0.3s ease-in-out;
}

.modal-content:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.btn-light.text-maroon {
  background-color: #fff;
  color: maroon;
  border: 1px solid maroon;
}

.btn-light.text-maroon:hover {
  background-color: maroon;
  color: #fff;
}

/* Make navbar brand center on mobile */
@media (max-width: 768px) {
  .navbar-brand span {
    font-size: 12px !important;
  }

  .brand-image {
    height: 32px !important;
  }

  .main-header.navbar {
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
  }
}