




.dashboard-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1.5px solid #d0a53b;
  padding: 12px 28px;
   font-family: 'Rubik', sans-serif;
  color: #272727;
}


.title-stack{
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 🔑 ensures no centering drift */
  line-height: 1.4;
  margin-left: 4px;
}


.system-title{
 
}

.system-subtitle{
  font-size: 0.78rem;
  font-weight: 500;
  color: white;        /* muted gold – matches your theme */
  letter-spacing: 0.8px;
    word-spacing: 0.15em;

  text-transform: uppercase;
  margin-top: 4px;
   border-radius: 3px;
  padding: 4.5px 7px;
  background-color: #550d0dd5;
  
}



.system-title{
  color: black;
  font-size: 17px;
}


.header-left {
  display: flex;
  justify-content: center;  /* Centers horizontally if space allows */
  align-items: center;       /* ✅ Vertically centers all children */
  gap: 6px;
 
}

.header-right {
   display: flex;
    justify-content: flex-end;
    gap: 12px;
    color: #000;
}

/* CENTER: profile + logout */
.header-center .person-icon,
.header-center .signout-link svg,

/* RIGHT: chat icon only */
.help-section .chat-icon svg{
  color: #550d0d0;        /* for stroke="currentColor" */
       /* safety for filled icons */
}
.whatsapp-icon, .chat-icon{
    color: #550d0d;
}
.help-text{
  color: #550d0d;
}

.signout-link {
    margin-left: 4px;
    color: #d79e17;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.signout-link:hover svg {
    stroke: #f10c0c; /* highlight on hover */
}

.help-section {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap; /* prevents wrapping to 2 lines */
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 4.5px;
    background-color: #c69014;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Coda', sans-serif;
}

.logo {
    height: 60px;
    width: 185px;
}

.vertical-divider {
    width: 0.3px;
    height: 71px;
    background-color: #272727;
}

.admin-name,
.help-section,
.header-title {
    display: flex;
    align-items: center; /* 🔑 vertically centers icons & text */
    gap: 6px; /* space between items */
}

.admin-name svg,
.help-section svg {
    vertical-align: middle;
    position: relative;
    top: 1px; /* fine-tune if needed */
}

/* Hover effect */
.header svg:hover,
.header a:hover,
.help-section svg:hover,
.help-section a:hover {
    color: #c69014; /* 🔴 red hover (pick your brand color) */
    cursor: pointer;
}



 





/* ==========================================================
   UNIVERSAL MODAL BASE (Applies to all modals)
========================================================== */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.modal.show {
  opacity: 1;
  pointer-events: all;
}

.modal.hide {
  opacity: 0;
  pointer-events: none;
}

 
.modal.show .modal-content { transform: scale(1); }
.modal.hide .modal-content { transform: scale(0.95); }

















/* Footer container */
.footer-container {
  margin-top: 60px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 30px;
  width: 100%;
  min-height: 300px;
  padding: 40px 30px;
  background-color: #776161;

  /* 🆕 center the grid items (columns) vertically */
  align-items: center;

  overflow: hidden;
}

/* Each column */
.footer-container .colom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;

  /* 🆕 center the cards inside each column */
  justify-content: center;   /* vertical */
  align-items: center;       /* horizontal */

  gap: 10px;
  text-align: left;
  color: #fff;
  padding: 0;
  height: 100%;
}


/* Background image */
.footer-container .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.85;
}

 
/* Contact card */
.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: left;
 
  background: rgba(255, 255, 255, 0.651);
  color: #1a1a1a;
  padding: 20px;
  border-radius: 4px;
  max-width: 260px;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: 'rubik';
}



/* Contact card */
.values-card {
  display: flex;
  flex-direction: column;
  justify-content: left;
  background: rgba(255, 255, 255, 0.267);
  color: #1a1a1a;
  padding: 10px;
  border-radius: 4px;
  max-width: 260px;
  font-size: 0.90rem;
  line-height: 1.4;
  font-family: 'rubik';
}



.values-card h3 {
  font-size: 20px;
  line-height: 1;
  color: white;
  margin: 0;
  margin-bottom: 4px;      /* reduce spacing */
}

.values-card ul {
  margin-top: 4px;         /* close the gap */
 
}


/* Logo */
.card-logo {
  display: block;       /* make the image a block */
  width: 200px;
  margin: 0 auto 12px;  /* top 0, bottom 12px, horizontally centered */
}

/* Contact list */
.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  text-shadow: 0.2px 0.2px 0.3px #ffffff; /* subtle black shadow */

}

.contact-card li {
  display: flex;
  align-items: first baseline;
  margin: 8px 0;
}

.contact-card li i {
  color: #f3ae1b;
  margin-right: 10px;
  vertical-align: baseline; /* 'first baseline' isn't valid in CSS */
  text-shadow: 0.5px 0.5px 0.5px #000; /* subtle black shadow */
}

/* Social media icons */
.social-icons {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: center; /* center horizontally */
  margin-top: 12px;
}

.social-icons a {
  color: #2f0702;
  font-size: 1.7em;
  transition: transform 0.2s, color 0.2s;
    text-shadow: 0.5px 0.5px 0.5px #b9b9b9; /* subtle black shadow */

}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffd95b;
}


.global-search-box {
  display: flex;
  width: 100%;               /* always take full column width */
  max-width: 600px;          /* increase max width */
  margin: 0 auto;            /* center horizontally */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  padding: 0 10px;
  box-sizing: border-box;
  margin-top: 30px;
   box-shadow:  1px 1px rgba(0, 0, 0, 0.4); /* smooth shadow */
}




.global-search-box input {
  flex: 1;                    
  padding: 12px 16px;
  border: none;
  font-size: 0.95rem;
  outline: none;
}

.global-search-box button {
  padding: 12px 16px;
  border: none;
  background-color: #ffffff;
  color: #651313;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.global-search-box button:hover {
 
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .global-search-box {
    max-width: 100%;        
    padding: 0 5px;         
  }

  .global-search-box input, 
  .global-search-box button {
    padding: 10px;
    font-size: 0.9rem;
  }
}
/* Website overlay – small card under values card */
/* Small card under the values-card, same column */
.website-overlay {
  width: 100%;
  max-width: 260px;              /* match values-card width */
  box-sizing: border-box;

  background: rgba(0, 0, 0, 0.74);
  color: #ffffff;

  padding: 10px 14px;
  border-radius: 4px;
  margin-top: 8px;               /* small gap under values-card */

  display: flex;
  flex-direction: column;        /* stack disclaimer + link */
  align-items: flex-start;       /* left-align content */

  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  text-align: left;
}
/* Disclaimer text */
.website-overlay .disclaimer {
  margin: 0 0 6px 0;
  font-size: 11px;
  line-height: 1.3;
  color: #f5f5f5;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
}

/* ROW: Globe + “Official Website” + Link */
.website-link-line {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  gap: 6px;
}

/* Globe icon */
.website-link-line i {
  color: #d99f1a;
  font-size: 1.2rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Icon hover pulse */
.website-link-line:hover i {
  transform: scale(1.2);
  color: #ffcf5b;
}

/* Link */
.website-link-line a {
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline slide effect */
.website-link-line a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #a77406, #ffcf5b);
  transition: width 0.3s ease;
}

/* Hover underline expands */
.website-link-line a:hover::after {
  width: 100%;
}

/* Hover glow */
.website-link-line a:hover {
  color: #ffcf5b;
  text-shadow: 0px 0px 6px rgba(255, 198, 70, 0.8);
}

/* “ntonga” */
.site-name-part1 {
  color: #a77406;
  font-family: 'Rubik';
   transition: color 0.3s ease;
}

/* “.africa” */
.site-name-part2 {
  color: #f5f5f5;
  transition: color 0.3s ease;
}

/* Text shimmer on hover */
.website-link-line a:hover .site-name-part1 {
  color: #ffcf5b;
}

.website-link-line a:hover .site-name-part2 {
  color: #ffcf5b;
  text-shadow: 2px 2px 2px 4px rgb(255, 255, 255);}


/* Globe icon inside footer website line */
.website-link-line i.fa-globe {
  position: static;       /* cancel absolute */
  transform: none;
  right: auto;
  top: auto;
  font-size: 1.2rem;
  color: #d99f1a;
}




.brown-line {
  width: 100% !important;         
  margin: 0 !important;           
  padding: 0;

  height: 60px;                   /* your preferred height */
  
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #2b0000;     /* your brown footer bar */
  color: #ffffff;
  
  font-size: 0.80rem;
  font-family: 'rubik';

  border-radius: 0 !important;   /* ensure square full-width */
  box-shadow: none !important;   /* no shrink effect */
}




.footer-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}



.registered-counter {
  margin-top: 60px;   /* reduced gap */
  color: #fff;
  font-family: 'Rubik', sans-serif;
  line-height: 1;
  padding: 0;
}

.registered-counter .counter-title,
.registered-counter .counter-number,
.registered-counter .counter-subtitle {
  margin: 0;
  padding: 0;
  line-height: 1;   /* remove extra line spacing */
}

.registered-counter .counter-title {
  font-size: 1rem;
  font-weight: 500;
}

.registered-counter .counter-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ebac18;
  font-family: 'Rajdhani', sans-serif;
}

.registered-counter .counter-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  max-width: 180px;
}







.chat-icon, .whatsapp-icon{
  co
}














.page-container-admin {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 200vh;            /* demo long page */
  box-sizing: border-box;

  position: relative;            /* create stacking context */
  z-index: 0;                    /* content above background layer */
}






 

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: clip;   /* best: prevents sideways scroll without layout weirdness */
}
:root{
  --grid-height: 100%;
  --tile: 22px;
  --sq: 4px;
  --gold: #caa25d;
  --mask-cycle: 100vh;   /* one fade-in/out cycle height */
  --header-h: 0px;       /* fallback if JS hasn't set it */
}
/* Your container */
.page-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 200vh;            /* demo long page */
  box-sizing: border-box;

  position: relative;            /* create stacking context */
  z-index: 0;                    /* content above background layer */
}

.page-container::before {
  content: "";
  position: absolute;
  top: var(--header-h, 0px);  /* start after header */
  left: 0;
  right: 0;
  height: var(--grid-height);
  pointer-events: none;
  z-index: -1;

  /* real gold squares */
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'>\
<rect x='12' y='12' width='4' height='4' fill='%23c48c28'/>\
</svg>");
  background-repeat: repeat;
  background-size: var(--tile) var(--tile);
  opacity: 0.4;

  /* repeating fade (in → out → in …) */

  /* smooth, continuous fade (no plateau) */
  -webkit-mask-image: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0)   0%,
    rgba(0,0,0,0.85) 50%,
    rgba(0,0,0,0) 100%
  );
          mask-image: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0)   0%,
    rgba(0,0,0,0.85) 50%,
    rgba(0,0,0,0) 100%
  );

  -webkit-mask-size: 100% var(--mask-cycle);
          mask-size: 100% var(--mask-cycle);
  -webkit-mask-repeat: repeat;
          mask-repeat: repeat;
}






