/* ── Shared Layout Styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0a1628; --dark-navy: #060e1c; --teal: #00b4a0; --teal-light: #00d4bc;
  --green: #00c896; --blue: #1a73e8; --blue-dark: #0d47a1; --purple: #6c3fc5;
  --text: #1a2a3a; --text-light: #4a6070; --border: #e0e8ef;
  --bg-light: #f4f7fb; --white: #ffffff; --accent-green: #4cbb8a;
}
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: #fff;
       font-size: 14px; display: flex; flex-direction: column; min-height: 100vh; }

/* NEWS BAR */
.news-bar { background: var(--navy); color: #fff; font-size: 12.5px; padding: 7px 20px;
  display: flex; align-items: center; justify-content: space-between; }
.news-bar .news-left { display: flex; align-items: center; gap: 10px; width: 92%; overflow: hidden; }
.news-bar .badge { background: #036799; color: #fff; font-weight: 700; font-size: 10px;
  padding: 2px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap; flex-shrink: 0; }
.news-bar .read-more { color: #08a152; text-decoration: none; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; margin-left: 8px; }
.news-bar .social-icons { display: flex; gap: 14px; flex-shrink: 0; }
.news-bar .social-icons a { color: #aac; font-size: 13px; text-decoration: none; }
.news-bar .social-icons a:hover { color: #fff; }

/* NAVBAR */
nav { background: #fff; border-bottom: 1px solid var(--border); padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100; height: 80px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; }
.logo-text h1 { font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 800;
  color: #0b62a4; line-height: 1; }
.logo-text h1 span { color: #0b7840; }
.logo-text p { font-size: 10px; color: var(--text-light); letter-spacing: 1px; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 15px; font-weight: 700;
  padding: 8px 14px; border-radius: 4px; transition: all .2s;
  display: flex; align-items: center; gap: 4px; }
.nav-links a:hover { color: #0b7840; background: #f0fbf9; }
.nav-links a.active { color: #0b7840; border-bottom: 2px solid var(--teal); border-radius: 0; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.search-btn { background: none; border: none; cursor: pointer; color: var(--text-light); font-size: 16px; }
.join-btn { background: linear-gradient(90deg, #0f34ac 0%, #0a5d5a 50%, #257a2d 100%);
  color: #fff; padding: 10px 20px; border-radius: 6px; text-decoration: none;
  font-weight: 700; font-size: 13px; display: flex; align-items: center; gap: 6px; transition: background .2s; }
.join-btn:hover { background: var(--teal); }

/* FOOTER */
footer { background: var(--dark-navy); color: #8aa0b8; padding: 40px 40px 20px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand > p { font-size: 11.5px; line-height: 1.7; color: #6a8aaa; margin: 14px 0; max-width: 220px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { color: #6a8aaa; font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-socials a:hover { color: var(--teal); }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px; color: #fff; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: #6a8aaa; text-decoration: none; font-size: 12px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.stay-updated h4 { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px; color: #fff; margin-bottom: 8px; }
.stay-updated p { font-size: 11.5px; color: #6a8aaa; margin-bottom: 12px; line-height: 1.5; }
.subscribe-form { display: flex; }
.subscribe-form input { flex: 1; padding: 9px 12px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15); border-right: none;
  border-radius: 5px 0 0 5px; color: #fff; font-size: 12px; outline: none; }
.subscribe-form input::placeholder { color: #4a6a80; }
.subscribe-form button { background: var(--teal); color: #fff; border: none; padding: 9px 16px;
  border-radius: 0 5px 5px 0; font-size: 12px; font-weight: 700; cursor: pointer; transition: background .2s; }
.subscribe-form button:hover { background: var(--teal-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; font-size: 11px; color: #4a6a80; }
.footer-bottom a { color: #4a6a80; text-decoration: none; }
.footer-bottom a:hover { color: var(--teal); }
.footer-bottom-links { display: flex; gap: 16px; }
.contact-block { font-size: 12px; }
.contact-block p { margin-bottom: 6px; display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.contact-block p i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.email-link { text-decoration: none; color: inherit; }

/* ── Homepage-specific Styles ── */
.dev-container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(135deg, #0a1628, #0d2040, #0a1e35);
  color: #fff;
}

.dev-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: #00d4bc;
  text-shadow: 0 0 10px rgba(0,212,188,0.4);

  animation: glow 2s ease-in-out infinite alternate;
}

.dev-title i {
  color: #00c896;
  font-size: 38px;
  animation: rotate 3s linear infinite;
}

.dev-sub {
  margin-top: 12px;
  font-size: 16px;
  color: #a0b8cc;
}

/* 🔥 Animations */

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(0,212,188,0.3);
  }
  to {
    text-shadow: 0 0 20px rgba(0,212,188,0.8);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}