:root {
  --primary: #ff6e00;
  --green: #00ff9c;
  --bg: #020617;
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

/* 🔥 NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px;

  background: linear-gradient(270deg, var(--primary), var(--green));
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-bottom: 1px solid var(--border);
  transition: 0.4s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes gradientMove {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}

/* SHRINK */
.navbar.shrink {
  padding: 10px 25px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

/* CENTER */
.nav-center {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #ddd);
}

.arise {
  font-family: "Poppins";
  font-weight: 700;
}

.title {
  font-size: 14px;
}

/* BUTTON */
.login-btn {
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 18px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
}

/* 🔥 HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.4s;
}

/* ANIMATE */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 🔥 MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;

  background: var(--glass);
  backdrop-filter: blur(25px);

  padding: 80px 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  transition: 0.4s;
  z-index: 999;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
}

/* OPEN */
.mobile-menu.active {
  left: 0;
}

/* 🔥 OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MOBILE */
@media (max-width: 900px) {
  .title {
    display: none;
  }
}
/* 🔥 CAROUSEL */
.carousel {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* SLIDES */
.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transform: scale(1.1);
  transition: all 1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* CONTENT */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);

  padding: 40px;
  border-radius: 16px;
  text-align: center;
  color: white;

  animation: fadeUp 1s ease;
}

.slide-content h1 {
  font-size: 40px;
  font-family: "Poppins";
}

.slide-content p {
  margin: 15px 0;
}

.slide-content button {
  background: linear-gradient(135deg, var(--primary), var(--green));
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

.arrow.left {
  left: 20px;
}
.arrow.right {
  right: 20px;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: white;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  opacity: 1;
  background: var(--primary);
}
/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* PARALLAX BACKGROUND */
.bg {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;

  background-size: cover;
  background-position: center;

  transform: scale(1.2);
  transition: transform 8s ease;
}

/* ACTIVE ZOOM EFFECT */
.slide.active .bg {
  transform: scale(1);
}

/* VIDEO */
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(25px);

  padding: 50px;
  border-radius: 20px;
  text-align: center;
  color: white;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

  animation: fadeUp 1s ease;
}

.content h1 {
  font-size: 48px;
  font-family: "Poppins";
}

.content p {
  margin: 15px 0;
  font-size: 18px;
}

/* BUTTON */
.content button {
  background: linear-gradient(135deg, var(--primary), var(--green));
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-weight: 600;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.left {
  left: 20px;
}
.right {
  right: 20px;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
}

.dots span {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  background: white;
  opacity: 0.4;
  cursor: pointer;
}

.dots span.active {
  opacity: 1;
  background: var(--primary);
}
/* 3D PERSPECTIVE */
.hero {
  perspective: 1200px;
}

/* SLIDE CONTENT ENHANCED */
.content {
  transform-style: preserve-3d;
  transition: 0.3s;
}

/* MAGNETIC BUTTON */
.content button {
  transition: transform 0.2s ease;
}

/* EXTRA DEPTH */
.bg {
  will-change: transform;
}
/* 🔥 TIME BAR */
.time-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center; /* 🔥 CENTER EVERYTHING */

  padding: 12px 25px;

  background: var(--timebar-bg);
  backdrop-filter: blur(15px);

  color: white;
  font-size: 14px;
  font-weight: 500;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  z-index: 20;

  transition: background 0.8s ease;
}

/* LEFT TEXT */
.time-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ICON */
#greetingIcon {
  font-size: 18px;
}

/* LOGO */
.time-right {
  display: flex;
  align-items: center;
}

.mini-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--green));
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* MOBILE */
@media (max-width: 600px) {
  .time-bar {
    font-size: 12px;
    padding: 10px;
  }

  .mini-logo {
    width: 25px;
    height: 25px;
  }
}
.leadership {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  transition: background 1s ease;
}

/* TITLE */
.leadership h2 {
  font-size: 32px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.subtitle {
  opacity: 0.8;
  margin-bottom: 40px;
}

/* GRID */
.leadership-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.leader-card {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.leader-card:hover {
  transform: translateY(-5px);
}

/* REVERSE */
.leader-card.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.image-box {
  flex: 1;
  min-height: 250px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 AUTO FIT */
  display: block;
}

/* TEXT */
.text-box {
  flex: 1;
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-box h3 {
  font-family: "Poppins";
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 900px) {
  .leader-card {
    flex-direction: column;
  }

  .leader-card.reverse {
    flex-direction: column;
  }

  .text-box {
    text-align: center;
  }
}
/* 🔥 NAV LOGOS */
.nav-logo {
  height: 40px;
  width: auto;
  object-fit: contain;

  transition: 0.3s;
}

/* spacing between logos */
.nav-center {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 🔥 MINI LOGO (TIME BAR) */
.mini-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* 🔥 MOBILE */
@media (max-width: 768px) {
  .nav-logo {
    height: 30px;
  }

  .mini-logo {
    height: 25px;
  }
}
.achievements {
  padding: 60px 20px;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 40px;
}

/* CONTAINER */
.achievement-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ROW */
.achievement-row {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* REVERSE */
.achievement-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* TEXT */
.text-box {
  flex: 1;
}

.text-box h3 {
  color: #15803d;
  font-family: "Poppins";
  margin-bottom: 10px;
}

.text-box p {
  margin-bottom: 15px;
  color: #444;
}

/* BUTTON */
.text-box button {
  background: #ff6e00;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.text-box button:hover {
  background: #e65c00;
}

/* MOBILE */
@media (max-width: 900px) {
  .achievement-row {
    flex-direction: column;
  }

  .achievement-row.reverse {
    flex-direction: column;
  }

  .text-box {
    text-align: center;
  }
}
.outbreak {
  padding: 60px 20px;
  text-align: center;
  background: #f8fafc;
  transition: background 0.5s ease;
}

/* TITLE */
.outbreak-title {
  font-family: "Poppins";
  font-size: 30px;
  color: #15803d;
  margin-bottom: 25px;
  animation: fadeDown 1s ease;
}

/* FLASH BAR */
.flash-bar {
  background: #fb923c;
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  margin: 20px auto;
  max-width: 900px;

  animation: pulse 2s infinite;
}

/* GRID */
.outbreak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* CARDS */
.outbreak-card {
  padding: 25px;
  border-radius: 12px;
  color: white;
  font-weight: 500;
  line-height: 1.6;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  animation: fadeUp 1s ease;
  transition: transform 0.3s;
}

.outbreak-card:hover {
  transform: translateY(-5px);
}

/* COLORS */
.red {
  background: #dc2626;
}
.orange {
  background: #f59e0b;
}
.green {
  background: #16a34a;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .outbreak-grid {
    grid-template-columns: 1fr;
  }
}
/* 🔥 TICKER CONTAINER */
.ticker {
  width: 100%;
  overflow: hidden;
  background: #fb923c;
  color: white;
  padding: 12px 0;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1000px;
}

/* TRACK */
.ticker-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;

  /* 🔥 SCROLL ANIMATION */
  animation: scrollTicker 25s linear infinite;
}

/* TEXT */
.ticker-track span {
  font-weight: 600;
}

/* 🔥 PAUSE ON HOVER */
.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* 🔥 KEYFRAMES */
@keyframes scrollTicker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* ROTATOR */
.outbreak-rotator {
  position: relative;
  height: 150px; /* adjust if needed */
  max-width: 800px;
  margin: 30px auto;
}

/* CARDS */
.outbreak-card {
  position: absolute;
  width: 100%;
  padding: 25px;
  border-radius: 12px;
  color: white;
  line-height: 1.6;

  opacity: 0;
  transform: translateY(20px);

  transition: all 0.6s ease;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ACTIVE CARD */
.outbreak-card.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

/* COLORS */
.red {
  background: #dc2626;
}
.orange {
  background: #f59e0b;
}
.green {
  background: #16a34a;
}
.map-section {
  padding: 50px 20px;
  text-align: center;

  background: #ffffff;
  color: #111;

  transition: all 0.8s ease;
}

.map-title {
  font-family: "Poppins";
  font-size: 28px;
  margin-bottom: 20px;
}

.map-container {
  max-width: 1200px;
  margin: auto;

  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .map-container iframe {
    height: 350px;
  }
}
.complaint {
  padding: 60px 20px;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}

.complaint-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* TITLE */
.complaint-box h2 {
  color: #15803d;
  font-family: "Poppins";
  margin-bottom: 10px;
}

/* SUBTEXT */
.subtitle {
  color: #555;
  margin-bottom: 30px;
}

/* FORM */
.complaint-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ROW */
.row {
  display: flex;
  gap: 15px;
}

/* INPUTS */
input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: none;
}

/* FILE */
.file-box {
  text-align: left;
}

.file-box label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #444;
}

/* BUTTON */
button {
  background: #ff6e00;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #e65c00;
}

/* MOBILE */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
}
/* FOOTER */
.footer {
  position: relative;
  color: white;
  background: url("https://picsum.photos/1600/900?blur=2") center/cover
    no-repeat;
}

/* OVERLAY */
.footer-overlay {
  background: rgba(0, 80, 50, 0.9);
  padding: 80px 20px 30px;
}

/* LOGOS */
.footer-logos {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 20px;
}

.footer-logos img {
  height: 80px;
  width: auto;
  background: white;
  border-radius: 50%;
  padding: 5px;
}

/* CONTENT */
.footer-content {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* COLUMNS */
.footer-col h3 {
  margin-bottom: 15px;
  font-family: "Poppins";
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

/* NEWS */
.news-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.news-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* SOCIALS */
/* .socials span {
  margin-left: 10px;
  cursor: pointer;
  font-size: 18px;
} */
/* SOCIAL ICONS */
.socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);

  color: white;
  text-decoration: none;
  font-weight: bold;

  transition: 0.3s;
}

/* HOVER EFFECT */
.social-icon:hover {
  background: white;
  color: #065f46;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
  }

  /* LOGOS */
  .footer-logos img {
    height: 70px;
    width: 70px;

    object-fit: contain;

    background: white;
    border-radius: 50%;
    padding: 6px;
  }
}
/*SCROLL TO TOP*/
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 50px;
  height: 50px;

  background: #ff6e00;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  cursor: pointer;

  border-radius: 6px;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);

  /* 🔥 IMPORTANT */
  z-index: 9999;

  /* hidden by default */
  opacity: 0;
  pointer-events: none;

  transition: 0.3s;
}

/* SHOW */
#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}
/* FOOTER ICON STYLE */
.footer-col i {
  color: #ff6e00; /* 🔥 ORANGE */
  margin-right: 10px;
}

/* ALIGN TEXT */
.footer-col p {
  display: flex;
  align-items: center;
  gap: 10px;
}
