@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;0,600;0,700;1,500&display=swap');
/* <!----- #ID , .CLASS, *ALL---> */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
  --color-text-primary: #1E1E1E;        /* high-contrast readable text */
  --color-text-placeholder: #6B7280;    /* softer but still visible */
  --color-bg-primary: #FAFAF5;          /* soft light background */
  --color-bg-secondary: #F1F3F9;        /* gentle section contrast */
  --color-bg-sidebar: #FFFFFF;          /* clean navigation area */
  --color-border-hr: #D1D5DB;           /* visible but not harsh */
  --color-hover-primary: #F6C344;       /* deep accessible blue */
  --color-hover-secondary: #E6EBF5;     /* calm hover background */
  --color-shadow: rgba(0,0,0,0.05);
}

body {
    background: var(--color-bg-primary);
}

br {
        line-height: 150%;
}

.page-badge {
      display: inline-block;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--color-text-primary);
      background: #ffe9a3;
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 10px;
    }

/***** START OF SIDEBAR & SITE BAR *****/
.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 360px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    background: var(--color-bg-sidebar);
    border-right: 1px solid var(--color-border-hr);
    box-shadow: 0 3px 9px var(--color-shadow);
    transition: width 0.4s ease;
}

.sidebar.collapsed {
    width: 90px;
}

.sidebar .sidebar-header {
    display: flex;
    padding: 20px 18px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border-hr);
}



.icon {
    height: 24px;
    width: 24px;
}

.qr-code-img {
  width: 140px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .qr-code-img {
    width: 100px;
    height: auto;
  }
}

@media (max-width: 576px) {
  .qr-code-img {
    width: 80px;
    height: auto;
    width: 100%;
  }
}

.sidebar-header .header-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    border-radius: 0%;
    transition: opacity 0.4s ease;
    position: relative;
    left: 15px;
}

.sidebar.collapsed .sidebar-header .header-logo {
    opacity: 0;
    pointer-events: none;
}

.site-nav .sidebar-toggle,
.sidebar-header .sidebar-toggle {
    height: 40px;
    width: 40px;
    border: none;
    position: absolute;
    right: 18px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    background: var(--color-bg-secondary);
}

.sidebar.collapsed .sidebar-header .sidebar-toggle {
    height: 48px;
    width: 50px;
    transform: translateX(-2px);
}

.site-nav .sidebar-toggle,
.sidebar-header .sidebar-toggle:hover {
    background: var(--color-hover-secondary);
}

.sidebar-header .sidebar-toggle span {
    font-size: 1.75rem;
    transition: transform 0.4s ease;
}

.sidebar.collapsed .sidebar-toggle span {
    font-size: 1.75rem;
    transform: rotate(180deg);
}

.sidebar .sidebar-content {
    flex: 1;
    padding: 20px 0px;
    overflow: hidden auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-text-placeholder) transparent;
}

.sidebar.collapsed .sidebar-content {
    scrollbar-width: none;
}

.sidebar-content .search-form {
    min-height: 48px;
    border-radius: 8px;
    display: flex;
    padding: 0 15px;
    margin: 5px 0 20px;
    
    align-items: center;
    white-space: nowrap;
    background: var(--color-bg-secondary);
    transition: 0.4s ease;
}

.sidebar.collapsed .sidebar-content .search-form:hover {
    cursor: pointer;
}

.sidebar.collapsed .sidebar-content .search-form:hover,
.sidebar-content .search-form:focus-within {
    background: var(--color-hover-secondary);
}

.search-form input {
    border: none;
    background: none;
    outline: none;
    font-size: 1rem;
    width: 100%;
    margin-left: 15px;
    color: var(--color-text-primary);
}

.search-form span {
    color: var(--color-text-placeholder);
}

.search-form input::placeholder {
    color: var(--color-text-placeholder);
}

.sidebar-content .menu-list {
    display: flex;
    gap: 4px;
    flex-direction: column;
    list-style: none;
}

.menu-list .menu-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 12px 10px;
    margin-right: 10px;
    border-radius: 8px;
    color: var(--color-text-primary);
    transition: 0.3s ease;
}

.menu-link .menu-label {
    transition: 0.3s ease;

}

.sidebar.collapsed .menu-link .menu-label {
    opacity: 0;
    pointer-events: none;

}



.menu-list .menu-link:is(:hover, .active) {
    color: #ffffff;
    background: var(--color-hover-primary);
}

.site-nav {
    display: none;
    position: sticky;
    top: 0;
    padding: 15px  20px;
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border-hr);
}

.site-nav .sidebar-toggle {
    position: unset;
}

@media (max-width: 768px) {
    .site-nav {
        display: block;
    }
    .sidebar {
        position: fixed;
        left: 0;
        width: 330px;
        height: 100%;
        z-index: 20;
        transition: left 0.4s ease;
    }

    .sidebar.collapsed {
        left: -270px;
        width: 270px;
    }
}

.sidebar .sidebar-footer {
    padding: 15px  20px;
    white-space: nowrap;
    border-top: 1px solid var(--color-border-hr);
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-bg-sidebar);
    flex-shrink: 0;
}
.sidebar-footer .footer-logo {
  width: 60px;
  height: auto;
  display: inline-block;
}

.sidebar-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text-primary);
    width: 100%;
}

.sidebar-footer .footer-text {
    font-size: 0.95rem;
    color: var(--color-text-primary);
    font-style: italic;
    opacity: 0.7;
}

/* Hide copyright text when sidebar is collapsed */
.sidebar.collapsed .sidebar-footer .footer-text {
  display: none !important;
}
/* Center footer when collapsed */
.sidebar.collapsed .sidebar-footer {
    justify-content: center;
    padding: 15px 0;
}

/***** END OF SIDEBAR & SITE BAR *****/

.layout-wrapper {
    display: flex;

}

.layout-wrapper .main-content {
    flex: 1;
    padding: 30px;
    color: var(--color-text-primary);
} 

.main-content .page-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.main-content .card {
  text-align: justify;
    border-radius: 8px;
    padding: 20px;
    background-color: var(--color-bg-sidebar);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}


/* SCROLL TO TOP BUTTON STYLES */
#go-to-top-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  /* font-size: 16px; */
  background-color: #3c6ca8;
  color: white;
  opacity: 0.5;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 5px 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.2s linear;
  z-index: 1001;
}

#go-to-top-button:hover {
  opacity: 1;
}
#go-to-top-button.hidden {
  display: none;
}
/* END OF SCROLL TO TOP BUTTON STYLES */

.main-content .home-banner {
    width: 100%;
    max-width: 960px;
    display: block;
    margin: 20px auto;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.content-grid {
  max-width: 960px;
  margin: 24px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.content-grid-news {
  max-width: 960px;
  margin: 24px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 16px 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f5f7fb;
  color: #1b3a57;
  margin-top: 4px;
}

.highlight-box {
  max-width: 960px;
  margin: 24px auto 0 auto;
  background: #1b3a57;
  color: #f6c344;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.highlight-text {
  font-size: 15px;
  max-width: 520px;
}

.highlight-cta {
  font-size: 14px;
  background: #f6c344;
  color: #1b3a57;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.highlight-cta:hover {
  opacity: 0.9;
}

.step-list {
  max-width: 960px;
  margin: 24px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 22px 18px 22px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1b3a57;
  color: #f6c344;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  line-height: 1.5;
}

.two-columns {
  max-width: 960px;
  margin: 24px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.small-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  line-height: 1.5;
}

.small-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

/* page background: fixed design image with fallback color */
.background  {
  background-color: #f5f7fb;
  background-image: url("media assets/background.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  color: #1b3a57;
  padding: 20px; /* space for fixed navbar */
}

/* home background */
.home-background  {
  /* background-color: #F1F3F9; */
  color: #1b3a57;
  padding: 20px; 
  /* space for fixed navbar */
}



/* form styling */
.field {
  margin-bottom: 10px;
}

.field label {
  display: block;
  font-size: 12px;
  color: var(--color-bg-sidebar);
}

.field input {
  display: block;
  min-width: 250px;
  line-height: 1.5;
  font-size: 14px;
}

input[type="submit"] {
  display: block;
  padding: 6px 30px;
  font-size: 14px;
  background-color: #4460AA;
  color: #fff;
  border: none
}

/* email us style */
.emailus,
.findus {
  height:80vh;
  width: 100%;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: gray;
  border-radius: 10px;
  color: var(--color-bg-sidebar);
  background-color: rgba(65, 64, 64, 0.555);
}
/* Search results dropdown styling */
#results {
  position: sticky;
  top: 70px;
  right: 10px;
  width: calc(100% - 20px);
  max-width: 400px;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  background: rgba(255, 0, 0, 0.0);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
}



/* Hide results when sidebar is collapsed */
.sidebar.collapsed #results {
  display: none !important;
}

#results .alert {
  margin-bottom: 10px;
  margin-top: 0;
}

.search-results-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.search-results-list li {
  margin-bottom: 8px;
  padding: 8px;
  border-bottom: 1px solid #e9ecef;
}

.search-results-list li:last-child {
  border-bottom: none;
}

.search-results-list a {
  color: #F6C344;
  text-decoration: none;
  font-weight: 500;
}

.search-results-list a:hover {
  text-decoration: underline;
}

mark {
  background-color: #ffff00;
  padding: 2px 4px;
  border-radius: 3px;
}

.btn-outline-success {
  background-color: #ffffff;
  color: var(--color-text-placeholder);
  border: 2px solid #4460AA;
}
.btn-outline-success:hover {
  background-color: #4460AA;
  color: #ffffff;
  border: 2px solid #4460AA;
}

/* ==== start liezel (BENEFITS) ==== */

.benefit-card
{
  max-width: 960px;
  margin: 12px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 22px 18px 22px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
} 

.benefit2-card
{
  max-width: 960px;
  margin: 12px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 22px 18px 22px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.benefit3-card
{
  max-width: 960px;
  margin: 12px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 22px 18px 22px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.reminder-card
{
  max-width: 960px;
  margin: 12px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 22px 18px 22px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  bottom: 12px auto;
}

.icon-img {
  width: 40px;
  height: 40px; 
  object-fit: contain;
}

.page-title {
  text-align: center;
  font-size: 3rem;
}

.fb-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}