       body {
           
            font-family: Arial, sans-serif;
        }
        html,body{
              height: 100%;
              margin: 0;
        }
        
        body{
            display:flex;
            flex-direction:column;
            min-height:100vh;
        }
        .navbar {
            background-color: #333;
        }
        main{
            flex:1;
            padding:20px;
        }
        
        .navbar-brand, .navbar-nav .nav-link  {
            color: #b6862c; /* G&S Legacy gold tone */
        }
 
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;          /* ✅ FULL viewport height */
  max-width: 85%;
  background-color: #333;
  overflow-y: auto;      /* ✅ allows scrolling */
  z-index: 1050;
  padding-top: 70px;
  transition: width 0.3s ease;
}

        .side-menu a {
            padding: 10px 15px;
            text-decoration: none;
            font-size: 25px;
            color: #b6862c; /* G&S Legacy gold tone */
            display: block;
            transition: 0.3s;
        }
        .side-menu a:hover {
            color: #f1f1f1;
        }
        .side-menu .close-btn {
            position: absolute;
            top: 10px;
            right: 25px;
            font-size: 36px;
        }
        @media screen and (max-height: 450px) {
            .side-menu {padding-top: 15px;}
            .side-menu a {font-size: 18px;}
        }
            .sticky-top {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 1020;
        }
.footer {
  bottom: 0;
  width: 100%;
  background-color: #333;
            color: #b6862c; /* G&S Legacy gold tone */
  text-align: center;
  padding: 10px;
}

.grecaptcha-badge {
  visibility: hidden;
}


/* ===== Login form polish ONLY ===== */

.auth-card {
  background-color: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Header icon */
.auth-card .brand-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b6862c, #d1a84a);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Headings */
.auth-card h1 {
  font-weight: 600;
  color: #333;
}

/* Inputs */
.auth-card .form-control {
  border-radius: 10px;
}

.auth-card .form-control:focus {
  border-color: #b6862c;
  box-shadow: 0 0 0 0.2rem rgba(182, 134, 44, 0.25);
}

/* Button */
.auth-card .btn-brand {
  background: linear-gradient(135deg, #b6862c, #d1a84a);
  border: none;
  border-radius: 10px;
  color: #333;
}

.auth-card .btn-brand:hover {
  filter: brightness(0.95);
}

/* Links */
.auth-card .subtle-link {
  color: #b6862c;
  text-decoration: none;
}

.auth-card .subtle-link:hover {
  text-decoration: underline;
}

/* Alerts */
.auth-card .alert {
  border-radius: 10px;
}

/* Small footer text inside card */
.auth-card p.small {
  line-height: 1.4;
}

.auth-card {
  animation: authFade 0.3s ease-out;
}

@keyframes authFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- AUTH LAYOUT ---------- */


.auth-layout{
  display:grid;
  place-items:center;
  padding:1.5rem;
}


.auth-dash{
  display:flex;
  flex-direction:column;
  justify-content:center;   /* vertical only */
  padding:1.5rem;
}


/* ================================
   HEADER POLISH (SAFE & SCOPED)
   ================================ */

/* Navbar base */
.navbar {
  background-color: #333;
  padding: 0.75rem 1.25rem;
}

/* Brand */
.navbar-brand {
  color: #b6862c !important;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Nav links */
.navbar-nav .nav-link {
  color: #b6862c !important;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hover state */
.navbar-nav .nav-link:hover {
  color: #e0b85a !important;
}

/* Desktop buttons (Dashboard / Logout) */
.navbar .btn {
  font-size: 0.85rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  line-height: 1.2;
}

/* Align buttons nicely with links */
.navbar-nav .btn {
  margin-left: 0.5rem;
}

/* Mobile toggler */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ================================
   MOBILE HEADER POLISH
   ================================ */
@media (max-width: 991px) {

  .navbar {
    padding: 0.65rem 1rem;
  }

  .navbar-brand {
    font-size: 1.15rem;
  }

  .navbar-toggler-icon {
    filter: brightness(1.2);
  }
}

/* ================================
   NAV ACTION BUTTONS – DESKTOP
   ================================ */

.nav-action-btn {
  width: 120px;               /* fixed width on desktop */
  text-align: center;
  padding: 0.45rem 0;
  font-size: 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
}

/* Icon spacing */
.nav-action-btn i {
  margin-right: 6px;
}

/* ================================
   NAV ACTION BUTTONS – MOBILE
   ================================ */
@media (max-width: 991px) {

  .nav-action-btn {
    width: 100%;              /* ✅ full width */
    display: block;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    margin: 25px 0;
  }

  /* If inside navbar */
  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }
}

.service-icon {
  font-size: 2.25rem;
  color: #b6862c; /* your gold */
  margin-bottom: 1rem;
}

.service-icon i {
  line-height: 1;
}

/* PAGE BACKGROUND */


/* PROGRAM CIRCLE BUTTON */
.program-circle-btn {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 2px solid var(--program-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
  padding: 1.25rem;
  background: transparent;
  transition: all 0.25s ease;
}

/* Hover = filled */
.program-circle-btn:hover {
  background-color: var(--program-color);
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}

/* Text inside circle */
.program-circle-text {
  font-size: 1.05rem;
  line-height: 1.25;
}

/* Tablet */
@media (max-width: 991px) {
  .program-circle-btn {
    width: 155px;
    height: 155px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .program-circle-btn {
    width: 130px;
    height: 130px;
  }
  .program-circle-text {
    font-size: 0.95rem;
  }
}