body {
  background-color: #0f0f0f;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

.dashboard-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100vh;
  overflow: hidden;
}

/* LEFT PANEL */
.intro-section {
  width: 50%;
  padding: 40px 60px;
  box-sizing: border-box;
  overflow-y: auto;
}

.page-title {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 10px;
}

.subheading {
  color: #ccc;
  font-size: 1.2rem;
}

.description {
  font-size: 1rem;
  margin: 15px 0;
}

.description.emphasis {
  font-weight: bold;
}

.highlight {
  color: #fff;
  font-weight: 600;
}

/* BUTTONS */
button, .secondary-btn {
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
  background-color: #1e90ff;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  width: auto;
  min-width: 120px;
}

.secondary-btn {
  background-color: #444;
}

button:hover, .secondary-btn:hover {
  opacity: 0.85;
}


.top10-sidebar {
  width: 50%;
  background-color: #003110;
  padding: 40px 30px;
  overflow-y: auto;
  box-sizing: border-box;
  border-left: 1px solid #333;
}

.top10-sidebar h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.leaderboard {
  list-style: none;
  padding: 0;
  margin: 0;
}

.leaderboard li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #450000;
  border-radius: 6px;
  padding: 12px 18px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #ddd;
}

.flag-icon {
  font-weight: 600;
  color: #fff;
}

.crime-count {
  color: #bbb;
  font-size: 0.95rem;
  
}
.city-tagline {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #1e1e1e;
  border-left: 5px solid #4dabf7;
  border-radius: 8px;
}

.city-tagline h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.city-tagline p {
  font-size: 1.1rem;
  color: #cccccc;
}

.city-tagline a {
  color: #00315a;
  text-decoration: none;
  font-weight: 600;
}

.city-tagline a:hover {
  text-decoration: underline;
}

.top-banner {
  width: 100%;
  height: 500px;
  background: url('../images/world-map.png') no-repeat center center;  background-size: cover;
  position: relative;
}

.overlay-text {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(0, 102, 15);
  text-align: right;
}

.banner-title {
  font-size: 5.5rem;
  font-weight: 800;
  color: #680101;
  margin: 0;
}

.banner-desc {
  font-size: 1.2rem;
  color: #3e0027;
}
.hero-section {
  position: relative;
  width: 500%;
  height: 200px; /* Adjust as needed */
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  position: absolute;
  top: 50%;  /* vertical center */
  left: 50%; /* horizontal center */
  transform: translate(-50%, -50%);
  color: rgb(249, 44, 44);
  font-size:3rem; /* bigger size */
  font-weight: 500; /* bolder */
  letter-spacing: 0.5px; /* spread letters slightly */
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9); /* stronger shadow for visibility */
  margin: 0;
}
