@charset "utf-8";

/* Global body styling */
body {
  background: url('images/BKG_Blue_Dots.jpeg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Navbar Styling */
.navbar.fixed-top.navbar-expand-lg.navbar-light.bg-light {
  background-image: linear-gradient(180deg, rgba(0,31,63,0.70) 0%, rgba(255,255,255,0.85) 51.30%, rgba(0,31,63,0.70) 100%);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0,0,0,0.9) !important; /* Dark text */
  text-shadow: 0px 0px 0px rgba(0,0,0,0.6); /* Blur effect */
  font-weight: bold;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0,0,0,1.0) !important; /* Slightly darker on hover */
}

/* Main headings */
h1, h2 {
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

/* Intro Box Styling */
.intro-box {
  background-color: rgba(0, 31, 63, 0.7);
  padding: 0.75rem 1rem;
  margin: 1rem auto;
  border-radius: 0.25rem;
  max-width: 600px;
  text-align: center;
  font-size: 1.5rem;
}

/* Feature List Styling */
.feature-list {
  max-width: 600px;
  margin: 0.5rem auto;
  padding: 0;
  text-align: left;
}

.feature-list li {
  list-style: none;
  background-color: rgba(0, 51, 102, 0.8);
  border-radius: 0.25rem;
  margin: 0.5rem 0;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  position: relative;
}

.feature-list li::before {
  content: "✔ ";
  color: #28a745;
  margin-right: 0.5rem;
}
/* Chatbot Container */

/* Footer Styling */
footer {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 31, 63, 0.7) url('images/BKD_Hexagon.jpeg') no-repeat center center;
  background-size: cover;
  color: #fff;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

footer p {
  margin: 0.5rem 0;
}

/* Custom CSS to fix chatbot bubble text color */
div.talktext p {
  color: black !important;
}
