body {
  margin: 0;
  font-family: Arial;
  background: #f4f7fb;
}

/* TOP BAR */
.topbar {
  background: #1e4fa1;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 6px 15px;
  font-size: 14px;
}

/* 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;
}

.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 li a {
  display: block;
  padding: 12px 22px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.menu li a:hover {
  background: #1e4fa1;
  border-radius: 5px;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.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;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  color: white;
  padding: 10px;
}

.dropdown-menu li a:hover {
  background: orange;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.hero-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;

  object-fit: contain;
  object-position: center; /* 🔥 PERFECT CENTER */
}
.fit-contain {
  object-fit: contain;
  background: #000;
}

/* DARK OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  top: 0;
  left: 0;
}

/* NEWS */
.news-ticker {
  background: #1e3a8a;
  color: white;
  padding: 8px;
}

/* MAIN SECTION */
.main-section {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  gap: 20px;
}

/* LEFT */
.left-box {
  width: 65%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARDS */
.card {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 5px 15px 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 PERFECT CENTER FIX */
.leader-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid orange;

  object-fit: cover;
  object-position: center; /* 🔥 MAIN FIX */

  background: #fff; /* black space remove */
  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;
}

/* CITY SECTION */
.city-section {
  padding: 50px 30px;
  background: #ffffff;
}

.city-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1e3a8a;
}

.city-container {
  display: flex;
  gap: 30px;
  align-items: center;
}

.city-text {
  width: 60%;
  line-height: 1.8;
}

.city-image {
  width: 40%;
}

.city-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* FOOTER */
footer {
  background: #1e4fa1;
  color: white;
  text-align: center;
  padding: 10px;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}