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

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      background: #fafafa;
      color: #333;
    }

    /* HEADER */
    header {
      background:  #002b5c; /* navy blue #111;*/
      color: white;
      padding: 0.7rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .brand img {
      width: 52px;
      height: 69px;
    }
    .brand span {
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 1.2;
    }

    

    /* Default nav links */
    nav.navbar a {
      color: #f0c040;             /* default color */
      text-decoration: none;
      padding: 8px 16px;
      transition: all 0.3s ease;
    }

    /* Hover effect */
    nav.navbar a:hover {
      color: #0d6efd;            /* blue on hover */
    }

    /* Active link */
    nav.navbar a.active {
      color: #f0c040;             /* keep yellow */
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 4px;
    }

    /* Mobile Menu */
    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
    }
    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        padding: 1rem;
      }
      nav.active { display: flex; }
      .menu-toggle { display: block; }
      .brand span { font-size: 0.9rem; } /* smaller name on mobile */
    }

    /* HERO */
    .hero {
      /* background: url('https://picsum.photos/1200/600?grayscale') center/cover no-repeat; */
      background: url('../images/backgr1.png') center/cover no-repeat;
      height: 70vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      position: relative;
      padding: 1rem;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      /* background: rgba(0,0,0,0.5); */
      background: rgba(0, 43, 92, 0.6); /* deep blue overlay */
    }
    .hero-content {
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-content img {
      width: 90px; 
      height: auto;
      margin-bottom: 0.5rem;
    }
    .hero-content h1 {
      font-size: 1.8rem;
      font-weight: bold;
      text-transform: uppercase;
    }
    .hero-content p {
      margin-top: 0.5rem;
      font-size: 1.1rem;
    }
    .hero-content button {
      margin-top: 1rem;
      padding: 0.7rem 1.5rem;
      border: none;
      background: #f0c040;
      color: #111;
      font-weight: bold;
      cursor: pointer;
      border-radius: 5px;
    }

    /* SECTIONS */
    .section {
      padding: 3rem 2rem;
      max-width: 1200px;
      margin: auto;
    }
    .section h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      /* color: #222; */
      color: #002b5c; /* navy blue */
    }

    /* CARDS */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .card:hover { transform: translateY(-5px); }
    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .card-content { padding: 1rem; }

    /* VISITOR INFO */
    .info {
      text-align: center;
      /* background: #f5f5f5; */
      padding: 2rem;
      /* border-radius: 10px; */
      background: #f0f6ff; /* soft blue background */
      border: 1px solid #cddff5;
    }

    /* BUTTON */
    .hero-content button {
      background: #f0c040; /* gold */
      color: #002b5c; /* navy text */
    }

    /* FOOTER */
    footer {
      /* background: #111;
      color: white; */
      background: #002b5c; /* navy */
      color: white;
      padding: 2rem;
      text-align: center;
      margin-top: 2rem;
    }
    /* footer a { color: #f0c040; text-decoration: none; } */
    footer a { color: #f0c040; } /* gold links */

/* WELCOME SECTION */
.welcome-section {
  background: linear-gradient(135deg, #1a3d7c, #285ea8);
  color: #fff;
  padding: 60px 20px;
}

/* TITLE ALWAYS AT TOP, CENTERED */
.welcome-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 35px;
}

/* IMAGE + TEXT SIDE BY SIDE */
.welcome-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;/*flex-start;*/
  gap: 40px;
  padding: 20px 0;
}

/* LEFT IMAGE */
.welcome-img img {
  width: 140px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* RIGHT PARAGRAPH + BUTTON */
.welcome-text-block {
  /* flex: 1; */
  max-width: 800px;
}

/* JUSTIFIED TEXT */
.welcome-text {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;      /* ★★★ PARA JUSTIFIED */
  color: #e2e8f0;
  /* margin-bottom: 20px; */
}

/* .welcome-btn {
  background: #fff;
  color: #1a3d7c;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
} */
 .welcome-btn-container {
  text-align: center;      /* center the button */
  margin-top: 20px;
}

.welcome-btn {
  display: inline-block;     /*required for centering */
  background: #fff;
  color: #1a3d7c;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
}

.welcome-btn:hover {
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .welcome-container {
        flex-direction: column;    /* Stack vertically */
        text-align: center;        /* Center items */
        padding: 10px;
    }

    .welcome-img img {
        width: 110px;              /* Smaller image */
        margin: 0 auto;            /* Center image */
        display: block;
    }

    .welcome-text-block {
        width: 100%;
        text-align: justify;       /* Keep text justified */
    }

    .welcome-text {
        text-align: justify;
    }  
}
  
/* Responsive */
/* Section styling */
.legacy-section {
  background: linear-gradient(to right, #0a1f44, #10316b, #0a1f44);
  color: white;
  padding: 4rem 1.5rem;
}

.legacy-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.legacy-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.legacy-intro,
.legacy-content p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

/* Collapsible content */
.legacy-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.7s ease-in-out;
}

/* Button */
.legacy-button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background:white;/* #d3f527;*/
  color: #0a1f44;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.legacy-button:hover {
  background: #10316b;
  color: #fff;
}

/*Breadcrumb*/
  .breadcrumb-wrapper {
    background: #0f2351;   /* deep blue background */
    padding: 8px 16px;
    background: #0f2351;
    min-height: 24px;       /* fixes jumping */
    display: flex;
    align-items: center;
  }

  #breadcrumb {
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #fff;  /* fallback text color */
  }

  #breadcrumb a {
    color:#f0c040;/*  #D3F527;          your highlight yellow */
    text-decoration: none;
    font-weight: 500;
  }

  #breadcrumb a:hover {
    color: #4da3ff;          /* hover blue */
    text-decoration: underline;
  }

  #breadcrumb span {
    color: #fff;             /* › separator & current page */
    margin: 0 6px;
  }

  #breadcrumb .current {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
  }


















