:root {
  --primary: #0d47a1;
  --secondary: #1565c0;
  --accent: #ff9800;
  --light: #f4f7fb;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f5f7fb;
}

/* HEADER */

.top-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
}

.logo {
  width: 70px;
}

.department-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

.department-sub {
  color: #666;
}

.helpline {
  text-align: right;
}

.helpline h2 {
  color: #d32f2f;
  font-size: 48px;
  margin: 0;
  font-weight: 800;
}

/* NAVBAR */

.navbar-custom {
  background: var(--primary);
}

.navbar-custom .nav-link {
  color: #fff !important;
  font-weight: 500;
}

/* HERO */

.hero {
  background:
    linear-gradient(rgba(13, 71, 161, 0.85), rgba(21, 101, 192, 0.85)),
    url("images/banner.jpg");

  background-size: cover;
  background-position: center;

  padding: 80px 0;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
}

.hero .hero-title,
.hero p {
  color: #fff;
}

.hero-desc {
  font-size: 18px;
  opacity: 0.95;
}

.btn-custom {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
}

/* LEADERS */

.leader-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  text-align: center;
  padding: 20px;
  height: 100%;
}

.leader-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.leader-card h5 {
  margin-top: 15px;
  color: #fff;
}

.leader-card p {
  color: #fff;
  margin-bottom: 0;
}

/* LOGIN */

.login-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.login-card h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #000;
}

.form-control {
  height: 52px;
}

.btn-login {
  background: var(--primary);
  color: #fff;
  height: 52px;
}
.btn-login:hover {
  background: var(--secondary);
  color: #fff;
}

/* STATS */

.stats {
  margin-top: -40px;
}

.stat-box {
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 25px;
}

.bg1 {
  background: #1976d2;
}

.bg2 {
  background: #2e7d32;
}

.bg3 {
  background: #ef6c00;
}

.bg4 {
  background: #8e24aa;
}

.stat-box h2 {
  font-weight: 800;
}

/* SECTION */

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* ACCORDION */

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

/* SERVICES */

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 48px;
  color: var(--primary);
}

.service-card h5 {
  margin-top: 15px;
}

/* VISION */

.info-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* NEWS */

.news-list li {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

/* FOOTER */

.footer {
  background: #111827;
  color: #fff;
  padding-top: 50px;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 30px;
  text-align: center;
}

/* MOBILE */

@media (max-width: 768px) {
  .department-title {
    font-size: 20px;
  }

  .hero-title {
    font-size: 30px;
  }

  .helpline {
    text-align: left;
    margin-top: 15px;
  }
}
