:root{
  --black:#0b0b0b;
  --black2:#111111;
  --white:#ffffff;
  --muted:#cfcfcf;
  --mustard:#d4a017;      /* mustard yellow */
  --mustard2:#b88910;
  --border:rgba(255,255,255,.12);
  --shadow: 0 18px 45px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 10% -10%, rgba(212,160,23,.12), transparent 60%),
              radial-gradient(900px 600px at 100% 10%, rgba(212,160,23,.10), transparent 55%),
              var(--black);
  color: var(--white);
  line-height: 1.6;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{ width:min(1150px, 92%); margin:0 auto; }
.section{ padding: 70px 0; }
.section.small{ padding: 45px 0; }

.badge{
  display:inline-flex; gap:10px; align-items:center;
  padding: 8px 12px;
  border:1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 14px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-weight: 650;
  letter-spacing: .2px;
  transition: .18s ease;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); }

.btn.primary{
  border-color: rgba(212,160,23,.65);
  background: linear-gradient(180deg, rgba(212,160,23,.98), rgba(184,137,16,.98));
  color: #141414;
}
.btn.primary:hover{ filter: brightness(1.03); }

.btn.outline{
  background: transparent;
  border-color: rgba(212,160,23,.55);
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,11,11,.7);
  border-bottom: 1px solid var(--border);
}
.navwrap{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand{
  display:flex; align-items:center; gap: 10px;
  font-weight: 800;
  letter-spacing: .3px;
}
.logo{
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(180deg, var(--mustard), var(--mustard2));
  box-shadow: 0 10px 26px rgba(212,160,23,.25);
  display:grid; place-items:center;
  color:#121212;
  font-weight: 900;
}

.nav{
  display:flex; gap: 14px; align-items:center;
}
.nav a{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  transition: .15s ease;
}
.nav a:hover{ background: rgba(255,255,255,.06); color: var(--white); }
.nav a.active{ color: var(--white); border: 1px solid var(--border); background: rgba(255,255,255,.06); }

.navToggle{
  display:none;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
}

@media (max-width: 860px){
  .navToggle{ display:inline-flex; }
  .nav{
    position:absolute;
    left: 4%;
    right: 4%;
    top: 70px;
    display:none;
    flex-direction:column;
    padding: 10px;
    border-radius: 16px;
    background: rgba(15,15,15,.95);
    border:1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav.open{ display:flex; }
  .nav a{ width:100%; }
}

/* HERO */
/* ===== HERO SECTION WALLPAPER ===== */
.hero{
  padding: 70px 0 35px;
  position: relative;
   background: url("/images/paul-salute.jpg") center 25% /cover no-repeat;
}

/* dark overlay so text stays readable */
.hero::before{
  background: rgba(0,0,0,.18);  /* clearer */
}


.hero .container{
  position: relative;
  z-index: 1;
}


/* Keep content above overlay */
.hero .container{
  position: relative;
  z-index: 1;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 900px){
  .heroGrid{ grid-template-columns: 1fr; }
}

.hTitle{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 14px 0 12px;
}
.hTitle span{ color: var(--mustard); }
.hSub{
  color: var(--muted);
  font-size: 16.5px;
  max-width: 60ch;
}

.heroCard{
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.heroStats{
  display:grid; gap: 12px;
  margin-top: 16px;
}
.stat{
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
}
.stat b{ color: var(--white); }
.stat small{ color: var(--muted); }

.row{
  display:flex; gap: 12px; flex-wrap:wrap;
  margin-top: 18px;
}

/* SECTIONS */
.kicker{
  color: var(--mustard);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.h2{
  font-size: clamp(26px, 2.6vw, 36px);
  margin: 10px 0 10px;
}
.p{ color: var(--muted); max-width: 80ch; }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
@media (max-width: 950px){
  .grid3{ grid-template-columns: 1fr; }
}

.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.card h3{ margin: 8px 0 8px; }
.card p{ margin: 0; color: var(--muted); }
.icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  background: rgba(212,160,23,.14);
  border: 1px solid rgba(212,160,23,.35);
  display:grid; place-items:center;
  color: var(--mustard);
  font-weight: 900;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
}

.form{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}
.input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: var(--white);
  outline: none;
}
textarea{ min-height: 140px; resize: vertical; }
.help{ color: var(--muted); font-size: 13px; }

.alert{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(212,160,23,.35);
  background: rgba(212,160,23,.10);
  color: var(--white);
}

.footer{
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.25);
  padding: 34px 0;
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
@media (max-width: 900px){
  .footerGrid{ grid-template-columns: 1fr; }
}
.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--white); }

.hr{ height:1px; background: var(--border); margin: 16px 0; }
.smallNote{ color: var(--muted); font-size: 13px; }
/* ===== LOGO FIX ===== */
.logo-box{
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-box img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
 
 /* ===== TOPBAR / NAVBAR BACKGROUND ===== */
.header,
.navbar,
.topbar,
.top-nav,
.site-header {
    background-color: #000000;
    color: #ffffff;
}


/* ===== MENU LINKS TEXT ===== */
.header a,
.navbar a,
.nav-links a,
.nav-menu a,
.menu a {
    color: #000 !important;
    font-weight: 500;
}

/* ===== ACTIVE MENU ITEM ===== */
.navbar a.active,
.nav-links a.active {
    color: #000 !important;
    background-color: #d4d4d4;
    border-radius: 8px;
}

/* ===== HOVER EFFECT ===== */
.navbar a:hover,
.nav-links a:hover {
    color: #000 !important;
    background-color: #cfcfcf;
}
/* REMOVE right hero info card */
.hero .heroCard {
  display: none;
}
.hero .row{ margin-bottom: 28px; }
.hero .grid3{ margin-top: 28px; }
.services-preview {
  background: #ffffff;
  padding: 100px 0;
  margin-top: 0; /* hero ends cleanly */
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-cards .card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.section-title {
  text-align: center;     /* center text */
  font-size: 2rem;
  margin-bottom: 50px;
  color: #ffffff;
}
/* Yellow word badge (Guards / Cctv / Electric) */
.card .icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;                 /* remove fixed width */
  min-width: max-content;      /* fit the text */
  height: auto;                /* remove fixed height */
  padding: 8px 18px;           /* widen */
  margin-bottom: 12px;

  background: #facc15;         /* mustard */
  color: #111;
  font-weight: 700;
  font-size: 14px;

  border-radius: 999px;        /* pill shape */
  white-space: nowrap;         /* don't wrap */
}

/* If an old rule is forcing circle sizes, this will override it */
.icon{
  width: auto !important;
  height: auto !important;
}
.section-title{ text-align:center; }
.hero .container{
  position: relative;
  z-index: 2;

  /* move text away from image */
  max-width: 1300px;        /* keeps text narrow */
  margin-right: 0;          /* stick to left */
  padding-top: 150px;      /* push text downward */
}
/* Hero paragraph text color */
.hero-text-box p,
.hero-text-box .hero-desc {
  color: #000000;   /* black text */
}
/* Explore Services button -> black */
.hero .container .btn.outline{
  color: #000 !important;
  border-color: #000 !important;
  background: transparent !important;
}

.hero .container .btn.outline:hover{
  background: #000 !important;
  color: #fff !important;
}
.hero .container .hTitle{
  color: #000;
}
/* === FORCE HERO PARAGRAPH TO BLACK === */
.hero .container p{
  color: #000000;
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}
