/* =========================
   GLOBAL WATERMARK
   ========================= */

body {
  position: relative;
  min-height: 100vh;
}

/* Watermark layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("images/logo.jpg") center / 60% no-repeat;
  opacity: 0.08;              /* subtle & executive */
  pointer-events: none;      /* do not block clicks */
  z-index: 0;
}

/* Ensure all content stays above watermark */
body > * {
  position: relative;
  z-index: 1;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f8f9fb;
    color: #222;
}

header {
    background: #0d2036;
    color: #fff;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}

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

nav a {
    color:  #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a.active {
    border-bottom: 2px solid #fff;
}

.logo {
    height: 100px;
}

.hero {
    text-align: center;
    padding: 10px 10px;
}

.hero h1 {
    font-size: 3.8rem;
}

.btn {
    padding: 12px 25px;
    background: #3a76e8;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
    display: inline-block;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 10px 10px;
}

.container h1 {
    max-width: 900px;
    margin: auto;
    padding: 10px 10px;
    color: darkblue;
}

.container li {
    max-width: 900px;
    margin: auto;
    padding: 5px 5px;
}

/* VISION */
.vision {
  margin: auto;
  text-align: center;
}

.vision h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.vision h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2fa36b;
  margin: 10px auto 0;
}

.vision-lead {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #0f3d2e;
}

.vision-points p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #2c3e38;
}

.highlights {
    background: #eef2f7;
    padding: 10px 0;
}

.three-col li {
    margin-bottom: 10px;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.consultant-switcher {
  margin-bottom: 30px;
  text-align: right;
}

.consultant-switcher select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.contact-box p {
    margin: 5px 0;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

button {
    padding: 12px 20px;
    background: #0d2036;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0d2036;
    color: #fff;
    margin-top: 40px;
}

