body {
  background: #fafafa;
  color: #333333;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  background-image: url('../images/10.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin-left: 10%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero .tagline {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: #FFD700; /* Golden color */
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1E2A5E;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #283b8b;
  color: white;
  text-decoration: none;
}

/* Navbar styles */
.navbar {
  /*background-color: rgba(30, 42, 94, 0.9); /* #1E2A5E with 90% opacity */
  background-color: #1E2A5E;
  transition: background-color 0.3s ease, padding 0.3s ease;
  padding: 0.5rem 1rem;
}

.navbar-brand {
  font-size: 1.25rem; /* Slightly smaller brand font */
}


.navbar-dark .navbar-brand,
.navbar-dark .navbar-nav .nav-link {
  color: #FFD700; /* Golden color for better visibility */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Text shadow for better contrast */
  transition: color 0.3s ease;
  font-size: 0.9rem; /* Smaller font size for nav links */
}

/* Adjust logo size */
.navbar-brand img {
  width: 50px; /* Reduced from 50px */
  height: 50px; /* Reduced from 50px */
}

/* Profile picture styles */
.navbar-dark .nav-item .nav-link img {
  width: 25px; /* Reduced from 30px */
  height: 25px; /* Reduced from 30px */
  margin-right: 8px; /* Slightly reduced margin */
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #FFF; /* White color on hover */
}

/* Styles for when the navbar is scrolled */
.navbar.scrolled {
  /* background-color: rgba(30, 42, 94, 1);  */
  padding: 0rem 0rem; /* Slightly reduce padding when scrolled */
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .navbar-nav .nav-link {
  color: #FFD700; /* Keep the golden color when scrolled */
  text-shadow: none; /* Remove text shadow when scrolled */
}

.navbar.scrolled .navbar-brand:hover,
.navbar.scrolled .navbar-nav .nav-link:hover {
  color: #FFF; /* White color on hover when scrolled */
}

/* Profile picture styles */
.navbar-dark .nav-item .nav-link img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  object-fit: cover;
  border: 2px solid #FFD700;
  margin-right: 10px; /* Add space between image and username */
}

/* Logout icon styles */
.navbar-dark .nav-link .fa-right-from-bracket {
  color: #FFD700;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

/* .navbar-dark .nav-link:hover .fa-right-from-bracket {
  color: #FFF;
} */

.navbar-dark .btn-link.nav-link {
  color: #FFD700;
  transition: color 0.3s ease, opacity 0.3s ease;
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

/* .navbar-dark .btn-link.nav-link:hover,
.navbar-dark .btn-link.nav-link:focus {
    color: #FFF;
    text-decoration: none;
    opacity: 0.9;
}*/

.logout-icon {
  filter: invert(83%) sepia(71%) saturate(401%) hue-rotate(358deg) brightness(107%) contrast(107%);
  transition: filter 0.3s ease;
  margin-left: 10px; /* Add space between username and logout icon */
}

/*
.navbar-dark .btn-link.nav-link:hover .logout-icon,
.navbar-dark .btn-link.nav-link:focus .logout-icon {
  filter: brightness(0) invert(1);
} */

/* Adjust the toggler color for better visibility */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 215, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ... rest of your styles ... */

.content-section {
  background: #ffffff;
  padding: 20px 25px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}

.content-section .form-group {
  margin-bottom: 20px;
}

.content-section .form-control {
  border-radius: 0;
}

.content-section .btn-outline-info {
  color: #1E2A5E;
  border-color: #1E2A5E;
}

.content-section .btn-outline-info:hover {
  color: #ffffff;
  background-color: #1E2A5E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-section {
      padding: 15px;
  }
}

/* Override any conflicting styles */
main[role="main"] {
  padding-top: 60px; /* Adjust based on your navbar height */
}

.container {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Ensure form doesn't span across entire page */
@media (min-width: 768px) {
  .content-section.card {
      max-width: 600px;
      margin: 0 auto;
  }
}

/* Add more styles as needed for other sections */