/* General */
body {
  font-family: 'Jost', sans-serif;
  background: #f0f4f8;
  color: #333;
}

h1, h2, h4, h5, h6 {
  color: #003366;
}

a {
  text-decoration: none;
}

.btn-primary {
  background-color: #003366;
  border: none;
}

.btn-primary:hover {
  background-color: #001f4d;
}

.btn-warning {
  color: #003366;
}

.section-title {
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 28px;
}

/* Spacing Fixes */
section, header {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Hero */
.hero {
  background: url('images/banner.jpg') no-repeat center/cover;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
  background: rgba(0,0,0,0.4);
  padding: 60px 20px;
  width: 100%;
}

/* KPIs */
.kpi {
  background: linear-gradient(to bottom right, #ffffff, #e6f0fa);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.kpi h5 {
  font-size: 30px;
  color: #17a2b8;
  font-weight: 700;
}

/* Chatbot button */
#chatBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #17a2b8;
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}

#chatBtn:hover {
  background: #138496;
}

/* Chatbot modal styling */
.modal-content {
  border-radius: 10px;
}

.modal-header {
  background: #003366;
  color: white;
  border-bottom: none;
}

.modal-body {
  max-height: 300px;
  overflow-y: auto;
  background: #f8fbff;
}

.chat-answer {
  background: #eef1f6;
  padding: 10px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 15px;
}

/* News cards */
.card {
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  border-radius: 10px;
  overflow: hidden;
}

.card h6 {
  font-size: 16px;
  color: #003366;
  font-weight: 600;
}

.card p {
  font-size: 14px;
  color: #555;
}

.card img {
  height: 180px;
  object-fit: cover;
}

/* Accordion FAQ */
.accordion-button {
  font-size: 17px;
  padding: 1rem 1.25rem;
  background: #f0f4f8;
  border-radius: 6px 6px 0 0;
}

.accordion-body {
  background: #ffffff;
  padding: 1.25rem;
}

.accordion-item {
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  overflow: hidden;
}

/* Contact form */
form .form-control {
  height: 48px;
  background: #f9f9f9;
  border-radius: 6px;
}

form textarea.form-control {
  height: auto;
  background: #f9f9f9;
  border-radius: 6px;
}

form button {
  height: 48px;
  padding: 0 24px;
}

/* Footer */
footer {
  background: #003366;
  color: white;
  padding: 30px 0;
  text-align: center;
  margin-top: 80px;
  box-shadow: inset 0 8px 12px rgba(255,255,255,0.05);
}

/* Subscription */
.bg-light .btn-primary {
  margin-top: 5px;
}

/* Section styling */
section, header {
  padding-top: 60px;
  padding-bottom: 60px;
}

.container {
  max-width: 1140px;
}

/* Section backgrounds for contrast */
.bg-alt {
  background: linear-gradient(to bottom right, #f4f9ff, #ffffff);
}
.bg-dark-blue {
  background: #002244;
  color: white;
}

/* Smooth transition */
button, .btn {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
