body {
  margin: 0;
  font-family: Arial;
}

/* TOP BAR */
.topbar {
  background: #1e4fa1;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 5px 15px;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f5f5f5;
  padding: 15px;
}

.logo {
  position: absolute;
  left: 20px;
  width: 60px;
}

.title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.datetime {
  position: absolute;
  right: 20px;
  font-size: 14px;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  background: orange;
  margin: 0;
  padding: 0;
}

/* MENU LINKS */
.menu li a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

/* HIDE */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1e4fa1;
  min-width: 180px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 999; /* VERY IMPORTANT */
}

/* SHOW */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ITEMS */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  color: white;
  padding: 10px;
}

.dropdown-menu li a:hover {
  background: orange;
}
/* HERO SLIDER */
.hero {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  bottom: 20px;
  left: 40px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 5px;
}
.news-ticker {
  background: #1e3a8a;
  color: white;
  padding: 8px;
  font-size: 14px;
}

.news-ticker span {
  font-weight: bold;
  margin-right: 10px;
}
.about {
  padding: 40px;
  background: #ffffff;
  line-height: 1.8;
}

.about h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
/* MAIN SECTION */
.main-section {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  gap: 20px;
}

/* LEFT DASHBOARD */
.left-box {
  width: 65%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD STYLE */
.card {
  background: #f1f1f1;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.card:hover {
  background: orange;
  color: white;
  transform: translateY(-5px);
}

/* RIGHT BOX */
.right-box {
  width: 30%;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* LEADER CARD */
.leader-card {
  text-align: center;
  animation: fadeIn 0.5s ease;
}

/* IMAGE */
.leader-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 6px solid orange;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* TEXT */
.leader-card h3 {
  margin-top: 12px;
  font-size: 18px;
  color: #222;
}

.leader-card p {
  font-size: 14px;
  color: #555;
}

/* BUTTON */
.prev, .next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
}

.prev { left: 5px; }
.next { right: 5px; }

/* DOTS */
#dots {
  margin-top: 15px;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  display: inline-block;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: orange;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.city-section {
  padding: 50px 20px;
  background: #f9f9f9;
}
.city-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1e3a8a;
  font-size: 30px;
  position: relative;
}

.city-container {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: auto; /* CENTER FIX */
}

/* TEXT */
.city-text {
  width: 55%;
  line-height: 1.8;
  font-size: 15px;
  color: #333;
}

/* IMAGE */
.city-image {
  width: 45%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.city-slider {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.page-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #1e4fa1;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

table th {
  background: #1e4fa1;
  color: white;
  padding: 10px;
}

table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

table tr:hover {
  background: #f5f5f5;
}

/* TOP CARDS */
.top-card, .card {
  background: #fff;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 🔥 IMAGE PERFECT FIX */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-position: center 35%;  /* ⭐ BEST BALANCE */
}

/* 🔥 TEXT FIX */
.slide p {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
/* FOOTER */
footer {
  background: #1e4fa1;
  color: white;
  text-align: center;
  padding: 10px;
}