/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #e2e8f0;
  background: #0a0f1c;
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= GLOBAL SPACING ================= */
section {
  padding: 80px 0;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #0b1a2b;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.logo span {
  color: white;
  font-size: 22px;
  font-weight: 600;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #38bdf8;
}

/* BUTTON */
.btn {
  background: linear-gradient(135deg, #1da1f2, #00c2ff);
  padding: 8px 16px;
  border-radius: 6px;
  color: white;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(to right, #0a0f1c, #1a2a4f);
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  color: #cbd5f5;
}

.hero .cta {
  display: inline-block;
  margin-top: 20px;
  background: #00c2ff;
  padding: 12px 25px;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* ================= SERVICES ================= */
.services {
  background: #0f172a;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  padding: 20px;
  background: #1e293b;
  border-radius: 10px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ================= ABOUT ================= */
.about {
  background: #101e39;
  text-align: center;
}

.about ul {
  list-style: none;
  margin-top: 20px;
}

.about li {
  margin: 10px 0;
}

/* ================= UPDATES ================= */
.updates {
  background: #0f172a;
  text-align: center;
}

.updates h3 {
  font-size: 28px;
  margin-bottom: 30px;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.update-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.update-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.update-card p {
  color: #cbd5f5;
}

.update-card a {
  display: inline-block;
  margin-top: 12px;
  color: #38bdf8;
  text-decoration: none;
}

.update-card a:hover {
  text-decoration: underline;
}

/* ================= CONTACT ================= */
.contact {
  text-align: center;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

input, textarea {
  background: #1e293b;
  color: white;
  border: 1px solid #334155;
  border-radius: 6px;
  padding: 12px;
  margin: 10px 0;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

button {
  padding: 12px;
  background: linear-gradient(135deg, #1da1f2, #00c2ff);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
}

/* ================= ACCESSIBILITY ================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ================= FOOTER ================= */
.footer {
  background: #020617;
  text-align: center;
  padding: 30px 0;
}

.footer .social-icon {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer ion-icon {
  font-size: 24px;
  color: white;
  transition: 0.3s ease;
}

.footer ion-icon:hover {
  transform: translateY(-5px);
  color: #38bdf8;
}