/* =========================
   GLOBAL STYLES
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0b1c33;
  color: #1f2937;
  padding-left: 240px;
  padding-right: 240px;
}


/* =========================
   HEADER & NAV
========================= */
header {
  background: linear-gradient(135deg, #0f2a52, #08162b);
  text-align: center;
  padding: 2.5rem 1.5rem;
}

header img {
  max-width: 220px;
  margin-bottom: 0.75rem;
}

header h1 {
  color: #ffffff;
  margin: 0.25rem 0;
}

header p {
  color: #cbd5f5;
  margin-bottom: 1.2rem;
}

nav a {
  display: inline-block;
  margin: 0.25rem;
  padding: 0.6rem 1.3rem;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1.5rem;
}

nav a.active {
  background: linear-gradient(135deg, #06234c, #0f2a52);
  color: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
}

nav a:hover {
  filter: brightness(1.1);
}

nav a.active:hover {
  filter: none;
}

/* =========================
   CONTENT SECTIONS
========================= */
section {
  background: #f9fafb;
  padding: 0.5rem 1.5rem;
  text-align: center;
  color: #1f2937;
}

.container {
  max-width: 1200px;
  margin: auto;
  line-height: 1.7;
}

h1 {
  font-size: 2.2rem;
  color: #0f2a52;
}

h2 {
  font-size: 1.6rem;
  color: #0f2a52;
}

h3 {
  font-size: 1.2rem;
  color: #0f2a52;
}

p {
  max-width: 1000px;
  margin: 0.75rem auto;
  font-size: large;
}

.card {
  background: linear-gradient(135deg, #22c55e80, #0ea4e994);
  border-radius: 16px;
  padding: 24px;
  margin: 2rem auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  border: none;
  min-width: 300px;
}

.card p {
  font-size: medium;
}
.card a {
  font-size:120%;
}

/* Grid (services / contact cards) */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem auto;
  text-align: center;
  font-size: large;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   CALL TO ACTION
========================= */
.cta {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #06234c;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.cta a {
  color: #06234c;
  text-decoration: underline;
  font-weight: bold;
  font-size: 2rem;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #08162b;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

footer a {
  color: #22c55e;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 1.1rem;
}

/* =========================
   FIXED SIDE BANNERS
========================= */
.side-banner {
  position: fixed;
  top: 0;
  width: 220px;
  height: 100vh;
  background-image: url("side-banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #0b1c33;
  z-index: 3;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.side-banner:hover {
  opacity: 1;
}


.side-banner.left { left: 0; }
.side-banner.right { right: 0; }



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .side-banner {
    display: none;
  }

  body {
    padding-left: 0;
    padding-right: 0;
  }
  header img {
    max-width: 180px;
  }
}
