:root {
  --primary: #1a5fa8;
  --primary-dark: #0d4480;
  --accent: #f5a623;
  --text: #2d2d2d;
  --text-light: #666;
  --bg: #ffffff;
  --bg-light: #f4f8fd;
  --border: #e0eaf5;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* ── NAVBAR ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 100px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26, 95, 168, .08);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Base */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  width: 120px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Hide mobile login on desktop */
.mobile-login {
  display: none;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;

    /* Hidden by default */
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  /* Hide desktop login */
  .desktop-login {
    display: none;
  }

  /* Show login inside menu */
  .mobile-login {
    display: block;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, #2e86de 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(26, 95, 168, .3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
}

.logo-text span:last-child {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.btn-login {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  text-decoration: none;
}

.btn-login:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(26, 95, 168, .35);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, #000000 0%, #1a5fa8 50%, #2e86de 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero h1 {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .2);
  border: 2px solid rgba(255, 255, 255, .4);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background .2s;
  z-index: 3;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, .35);
}

.hero-nav.prev {
  left: 24px;
}

.hero-nav.next {
  right: 24px;
}

/* ── SECTION COMMON ── */
section {
  padding: 60px 60px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  background-image: linear-gradient(to right, rgb(0, 74, 145), rgb(40, 157, 183));
  background-clip: text;
  color: transparent;

}



.section-divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 32px;
}

/* ── WELCOME ── */
.welcome {
  background: var(--white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.welcome-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.welcome-img {
  border-radius: 12px;
  overflow: hidden;
  height: auto;
  background: linear-gradient(135deg, #1a5fa8 0%, #2e86de 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}



.mission-vision-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mv-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.mv-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.mv-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.mv-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── SERVICES ── */
.services {
  background: var(--bg-light);
}

.service-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-tab {
  padding: 10px 24px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
}

.service-tab:hover,
.service-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── ACHIEVEMENT BANNER ── */
.achievement {
  background: linear-gradient(135deg, #0d4480 0%, #1a5fa8 60%, #2e86de 100%);
  padding: 50px 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 60px;
  border-radius: 10px;
  flex-wrap: wrap;

}


.achievement-text {
  flex: 1;
  max-width: 650px;
}

.achievement-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.achievement-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 22px;
}

.btn-login-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .6);
  color: #fff;
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.btn-login-outline:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
}

.achievement-stats {
  display: flex;
  gap: 150px;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 6px;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── NOTIFICATIONS ── */
.notifications {
  background: var(--white);
}

.notif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.view-all {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.view-all:hover {
  text-decoration: underline;
}

.notif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.notif-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}

.notif-card:hover {
  box-shadow: 0 6px 20px rgba(26, 95, 168, .1);
  transform: translateY(-2px);
}

.notif-img {
  width: 88px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e0eaf5, #c5d9f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  overflow: hidden;
}

.notif-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notif-content p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notif-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── CONTACT / WE ARE HERE ── */
.contact {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-row p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  padding-top: 8px;
}

.map-placeholder {
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #d0e4f7 0%, #b3cfe8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--border);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-pin {
  font-size: 60px;
  opacity: .6;
}

/* ── FOOTER ── */
footer {
  background: #0d2a4a;
  padding: 50px 60px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-icon {
  background: rgba(255, 255, 255, .15);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-top: 12px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }

  section {
    padding: 40px 20px;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
  }

  .achievement {
    padding: 40px 20px;
    flex-direction: column;
  }

  .achievement-stats {
    gap: 30px;
  }

  .notif-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    gap: 18px;
  }

  .notif-header {
    margin-bottom: 18px;
  }
}

@media (max-width: 992px) {
  .welcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-vision-grid {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .welcome-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-column: span 1;
  }

  .mv-card {
    text-align: left;
  }

  .mv-icon {
    font-size: 28px;
  }
}

/* Desktop */
.mission-vision-grid {
  grid-column: span 2;
}

/* Tablet */
@media (max-width: 992px) {
  .mission-vision-grid {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .mission-vision-grid {
    grid-column: span 1;
  }
}

.mission-vision-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 600px) {
  .mission-vision-grid-inner {
    grid-template-columns: 1fr;
  }

  .achievement {
    margin: 0px;
  }

  .nav-links {
    display: none;
  }
}

.welcome-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}