:root {
   --navy: #0a1628;
   --blue: #1a3c6e;
   --accent: #e8a020;
   --gold: #f5c842;
   --light: #f4f7fb;
   --white: #ffffff;
   --text: #2d3748;
   --muted: #718096;
 }

/* ═══════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════ */
 #mainNav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   transition: all .4s ease;
   background: transparent;
   padding: 18px 0;
 }

 #mainNav.scrolled {
   background: var(--navy);
   padding: 10px 0;
   box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
 }

 #mainNav .navbar-brand img {
   height: 105px;
 }

 #mainNav .nav-link {
   color: rgba(17, 16, 16, 0.9);
   font-weight: 500;
   font-size: .92rem;
   letter-spacing: .5px;
   padding: 8px 14px !important;
   border-radius: 6px;
   transition: all .25s;
 }

 #mainNav.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

 #mainNav .nav-link:hover,
 #mainNav .nav-link.active {
   color:var(--gold);
   /* background: --accent; */
 }

 #mainNav .dropdown-menu {
   border: none;
   border-radius: 12px;
   box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
   background: var(--navy);
   padding: 10px 6px;
   margin-top: 6px;
   animation: dropIn .25s ease;
 }

 @keyframes dropIn {
   from {
     opacity: 0;
     transform: translateY(-8px)
   }

   to {
     opacity: 1;
     transform: translateY(0)
   }
 }

 #mainNav .dropdown-item {
   color: rgba(255, 255, 255, .8);
   font-size: .88rem;
   border-radius: 8px;
   padding: 8px 16px;
   transition: all .2s;
 }

 #mainNav .dropdown-item:hover {
   background: rgba(255, 255, 255, .1);
   color: var(--gold);
 }

 .navbar-toggler {
   border: none;
   padding: 6px 10px;
   background: rgba(255, 255, 255, .12);
   border-radius: 8px;
 }
    
    @media (max-width:576px){
         .navbar-toggler {
   border: none;
   padding: 6px 10px;
   background: rgba(0, 0, 0);
   border-radius: 8px;
 }
    }


 .navbar-toggler-icon {
   filter: invert(1);
 }

 .nav-cta {
   background: var(--accent) !important;
   color: var(--navy) !important;
   border-radius: 30px !important;
   padding: 8px 20px !important;
   font-weight: 600 !important;
   margin-left: 8px;
 }

 .nav-cta:hover {
   background: var(--gold) !important;
   color: var(--navy);
   transform: translateY(-1px);
 }




/* ================================
   PAYROLL / PROCESS SECTION
================================ */
.pr {
  padding: 180px 0;
  background: var(--light);
}

/* CONTAINER */
.pr-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.pr-header {
  text-align: center;
  margin-bottom: 60px;
}

.pr-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 6px 16px;
  font-size: 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.pr-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 12px;
}

.pr-title span {
  color: var(--accent);
}

.pr-sub {
  color: var(--muted);
  margin-top: 10px;
  font-size: 15px;
}

/* GRID */
.pr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */
.pr-left {
  background: var(--navy);
  color: var(--white);
  padding: 35px;
  border-radius: 16px;
}

.pr-left h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.pr-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.pr-item i {
  font-size: 20px;
  color: var(--gold);
}

/* RIGHT SIDE */
.pr-right p {
  color: var(--text);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* KEY POINTS */
.pr-key-points {
  list-style: none;
  padding: 0;
}

.pr-key-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.pr-key-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* PROCESS STEPS */
.pr-process {
  margin-top: 70px;
  text-align: center;
}

.pr-process h3 {
  color: var(--navy);
}

.pr-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 20px;
}

.step {
  background: var(--white);
  padding: 25px;
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.step:hover {
  transform: translateY(-6px);
}

.step span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

/* CTA */
.pr-cta {
  margin-top: 70px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 50px;
  border-radius: 16px;
}

.pr-cta h3 {
  margin-bottom: 10px;
}

.btn-gold {
  margin-top: 15px;
  padding: 12px 30px;
  background: var(--accent);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pr-grid {
    grid-template-columns: 1fr;
  }

  .pr-steps {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
 footer {
   background: var(--navy);
   color: rgba(255, 255, 255, .7);
   padding: 80px 0 0;
 }

 /*   */
 .footer-brand p {
   font-size: .88rem;
   line-height: 1.7;
   color: rgba(255, 255, 255, .55);
   max-width: 280px;
 }

 .footer-social {
   display: flex;
   gap: 10px;
   margin-top: 24px;
 }

 .footer-social a {
   width: 38px;
   height: 38px;
   border-radius: 10px;
   background: rgba(255, 255, 255, .08);
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, .65);
   font-size: 1rem;
   transition: all .3s;
   text-decoration: none;
 }

 .footer-social a:hover {
   background: var(--accent);
   color: var(--navy);
   transform: translateY(-3px);
 }

 .footer-heading {
   font-family: 'DM Sans', sans-serif;
   font-size: .78rem;
   font-weight: 700;
   letter-spacing: 2.5px;
   text-transform: uppercase;
   color: var(--gold);
   margin-bottom: 22px;
   position: relative;
   padding-bottom: 12px;
 }

 .footer-heading::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 30px;
   height: 2px;
   background: var(--accent);
   border-radius: 2px;
 }

 .footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .footer-links li {
   margin-bottom: 10px;
 }

 .footer-links a {
   color: rgba(255, 255, 255, .55);
   text-decoration: none;
   font-size: .88rem;
   display: flex;
   align-items: center;
   gap: 8px;
   transition: all .25s;
 }

 .footer-links a::before {
   content: '';
   width: 5px;
   height: 5px;
   border-radius: 50%;
   background: var(--accent);
   flex-shrink: 0;
   transition: transform .25s;
 }

 .footer-links a:hover {
   color: var(--white);
   transform: translateX(4px);
 }

 .footer-links a:hover::before {
   transform: scale(1.5);
 }

 .footer-contact-item {
   display: flex;
   gap: 12px;
   margin-bottom: 16px;
   align-items: flex-start;
 }

 .footer-contact-item i {
   color: var(--accent);
   font-size: 1rem;
   margin-top: 2px;
   flex-shrink: 0;
 }

 .footer-contact-item span {
   font-size: .86rem;
   color: rgba(255, 255, 255, .55);
   line-height: 1.5;
 }

 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, .08);
   margin-top: 60px;
   padding: 22px 0;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 12px;
 }

 .footer-bottom p {
   margin: 0;
   font-size: .83rem;
   color: rgba(255, 255, 255, .4);
 }

 .footer-bottom a {
   color: var(--gold);
   text-decoration: none;
 }