:root {
  --primary: #0b1c2d;
  --secondary: #c9a44c;
  --light: #f5f7f9;
  --dark: #111;
}

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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
}

header {
  background: #78b3ef; 
  border-bottom: 1px solid #0e2a44;
}

.navbar {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
}

.navbar img {
  height: 130px;        /* Bigger & more authoritative */
  width: auto;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: #fffbfb;
  font-weight: 500;
  letter-spacing: 0.6px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: gold; /* Muted Gulf Gold */
}

.hero {
  background: linear-gradient(to right, #0b1c2d, #122c45);
  color: #fff;
  padding: 90px 24px;
}

.hero-content {
  max-width: 1300px;
  margin: auto;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.section {
  max-width: 1300px;
  margin: auto;
  padding: 80px 24px;
}

.section h2 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: var(--primary);
  color: #ffffff;
  padding-top: 70px;
  margin-top: 100px;
  overflow: hidden;
}

/* Gold top line */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
}

/* Watermark Logo */
.footer::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 400px;
  height: 400px;
  background: url("../images/logo.png") no-repeat center;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  padding: 0 24px 50px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column p {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ddd;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--secondary);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 18px;
  font-size: 18px;
}

.footer-social a {
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #ccc;
}