    :root {
      --navy:  #1a2344;
      --navy2: #0f1628;
      --gold:  #f5c518;
      --gold2: #e0ae00;
      --white: #ffffff;
      --light: #f4f6fa;
      --text:  #333344;
    }
html, body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
section {
  overflow-x: hidden;
}


    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text);
       -webkit-text-size-adjust: 100%;
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5,h6 { font-family: 'Oswald', sans-serif; }

    /* ─── SIDEBAR NAV ─────────────────────────────────── */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background: var(--gold);
  z-index: 1050;

  display: flex;
  flex-direction: column;


  align-items: center;
  padding: 0;
}

/* LOGO BOX */
#sidebar .logo-box {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;  /* ✅ horizontal center */
  align-items: center;      /* ✅ vertical center */
}

/* LOGO IMAGE */
#sidebar .logo-box img {
  width: 130px;
  height: auto;
  display: block;
}

    #sidebar nav {
      width: 100%;
      margin-top: 10px;
      flex: 1;
    }
 #sidebar nav a {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: bolder;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .6px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

/* HOVER */
#sidebar nav a:hover {
 background: var(--navy);
  color: var(--gold);
}

/* ACTIVE */
#sidebar nav a.active {
    background: var(--navy) !important;
  color: var(--gold) !important;

  border-left-color: var(--navy);
  padding-left: 18px;
}

    /* ─── MAIN CONTENT OFFSET ─────────────────────────── */
    #main-content { margin-left: 250px; transition: margin-left 0.3s ease; }

    /* ─── HERO ────────────────────────────────────────── */

#hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* IMPORTANT: makes it like background-size: cover */
  z-index: -1;
}
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(10,16,40,.45) 0%, rgba(10,16,40,.2) 60%, rgba(10,16,40,.6) 100%);
    }
   

    /* ─── ABOUT ───────────────────────────────────────── */
    #about {
      background:var(--navy);
      color: #fff;
    }
    #about h2 {
      color: #fff;
      font-size: 1.7rem;
      text-align: center;
      font-weight: lighter;
      
    }
    #about p {
      font-size: .9rem;
      line-height: 1.8;
      color: #c8d0e0;
    }
    #about .btn-learn {
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 1px;
      border: none;
      padding: 10px 28px;
      margin-top: 20px;
      transition: background .2s;
    }
    #about .btn-learn:hover { background: var(--gold2); }

    /* ─── SECTION HEADER BANNER ───────────────────────── */
    .sec-banner {
      text-align: center;
      padding: 17px 0;
      background-color: var(--gold);
    }
    .sec-banner h2 {
      font-size: 1.9rem;
      font-weight: 700;
      letter-spacing: 3px;
      color: var(--navy);
      margin: 0;
    }

    /* ─── COMPANY ─────────────────────────────────────── */
  #company {
  background: #fff;
  padding: 30px 10px;
}

/* ─── CARDS ─── */
.card-mission,
.card-values,
.accred-box {
  background: var(--navy);
  border-radius: 8px;
  border: 1px solid #e6e9f2;
  padding: 28px;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: 0.3s ease;
}

.card-mission:hover,
.card-values:hover,
.accred-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* ─── TITLES ─── */
.card-mission h4,
.card-values h4,
.accred-box h5 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

/* ─── TEXT ─── */
.card-mission p {
  font-size: .9rem;
  line-height: 1.7;
  color: #fff;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
}

/* Button */
.value-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}

.value-btn span {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Arrow */
.arrow {
  transition: transform 0.3s ease;
}

.values-list li.active .arrow {
  transform: rotate(180deg);
}

/* CONTENT (FIXED 🔥) */
.value-content {
  display: none;
  padding: 10px 0 10px 28px; /* clean alignment */
  font-size: 14px;
  line-height: 1.6;
  color: #FFF;
}

/* Show content */
.values-list li.active .value-content {
  display: block;
}
.accredSwiper {
  padding: 20px 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* REMOVE BOX COMPLETELY */
.badge-box {
  background: transparent;
  border: none;
  padding: 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BIGGER LOGOS */
.badge-box img {
  max-width: 220px;   /* 👈 increase size here */
  max-height: 130px;
  width: auto;
  height: auto;
  object-fit: cover;
  transition: 0.3s ease;
}

.badge-box img:hover {
  transform: scale(1.08);
}
.swiper-button-next,
.swiper-button-prev {
  color: #1a2344;
  width: 30px;
  height: 30px;
}

/* actual arrow icon size */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px; /* 👈 smaller arrows */
}
/* ─── AFFILIATED BAR ───────────────── */
#affiliated {
  background: #f1c40f; /* yellow */
  padding: 10px 0;
  font-weight: 600;
}


.aff-right {
  display: flex;
  gap: 10px;
}

.aff-badge {
  background: #000;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 4px;
}
/* SECTION FULL WIDTH */
#testimonials {
  background: #eef0f3;
  padding: 80px 0;
}

/* CUSTOM CONTAINER (better than bootstrap) */
.testi-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  padding: 0 20px;
}

/* TITLE */
.testi-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2c2c2c;
}

/* TEXT ROW */
.testi-text-row {
  margin-bottom: 50px;
}

/* TESTIMONIAL TEXT */
.testimonial-text {
  font-size: 18px;
  color: #555;
  font-style: italic;
  line-height: 1.8;
  max-width: 900px;
  margin: auto;
}

/* INLINE BLOCK */
.testi-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

/* IMAGE */
.testi-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  
}

/* TEXT INLINE */
.testi-inline-text {
  margin-top: 15px;
  color: #2c2c2c;
}

/* COMPANY */
.testi-company {
  font-size: 1.7rem;
  font-weight: 600;
  
}

/* PERSON */
.testi-person {
  text-align: left;
  font-size: 16px;
  color: #777;
}

/* DOTS */
.testimonialSwiper .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonialSwiper .swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
  width: 8px;
  height: 8px;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  background: #000;
}

/* SLIDE CENTER FIX */
.testimonialSwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.aff-left{
  font-size: 1.8rem;
  font-weight: bold;
}
.aff-right {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.aff-logo {
  display: block;
  border-radius: 6px;
  transition: 0.3s;
}

.aff-logo img {
  height: 60px;   /* control logo size */
  width: 180px;
  display: block;
}

/* Hover effect */
.aff-logo:hover {
  background: #333;
  transform: translateY(-2px);
}


/* SECTION */
#footprints {
  background: #f2f2f2;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* REMOVE container spacing completely */
#footprints .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/* REMOVE row gutters */
#footprints .row {
  margin-left: 0;
  margin-right: 0;
}

/* REMOVE column padding (MAIN FIX 🔥) */
#footprints [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

/* HEADER */
.fp-header {
  background: var(--navy);
  padding: 30px 0;
  width: 100%;
}

.fp-header h2 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

/* MAP */
.fp-map {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

/* TEXT SIDE */
.fp-text {
  padding: 40px 30px; /* keep inner spacing */
  text-align: center;
}

/* DESCRIPTION */
.fp-desc {
  color: #555;
  font-size: 15px;
  margin-bottom: 30px;
}

/* ICON */
.fp-icon {
  height: 140px;
  width: auto;
}

/* SWIPER DOTS */
.footprintSwiper .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.footprintSwiper .swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}

.footprintSwiper .swiper-pagination-bullet-active {
  background: #000;
}
/* ─── WHAT WE DO ──────────────────────────────────── */
    #what-we-do {
      background: var(--light);
      padding: 30px 20px;
    }
    #what-we-do .sub-heading {
      color: #8090b0;
      font-size: .85rem;
      text-align: center;
      margin-bottom: 36px;
      letter-spacing: 1px;
    }

    .service-card {
  background: #FFF;
  border: 0.5px solid #e74c3c;
  border-radius: 10px;
  padding: 15px 20px;
  height: 100%;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon-wrap {
  margin-bottom: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-wrap img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

/* Title */
.service-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

/* List */
.service-card ul {
  text-align: left;
  padding-left: 18px;
  margin: 0;
}

.service-card ul li {
  font-size: 14px;
  margin-bottom: 5px;
}
    /* ─── CLIENTS ─────────────────────────────────────── */
    #clients { background: #fff; padding: 50px 60px; }
    .client-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px 10px;
      border: 1px solid #e8eaf0;
      border-radius: 4px;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 1px;
      transition: border-color .2s, box-shadow .2s;
      height: 60px;
    }
    .client-logo:hover { border-color: var(--gold); box-shadow: 0 2px 10px rgba(0,0,0,.08); }

    /* ─── AFFILIATED ──────────────────────────────────── */
    #affiliated {
      background: var(--gold);
      padding: 14px 60px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    #affiliated .aff-label {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      flex: 1;
    }
    .aff-badge {
      background: var(--navy);
      color: var(--gold);
      font-family: 'Oswald', sans-serif;
      font-size: .88rem;
      font-weight: 600;
      padding: 8px 20px;
      border-radius: 3px;
      letter-spacing: 1px;
    }

    /* ─── TESTIMONIALS ────────────────────────────────── */
    #testimonials { background: var(--light); padding: 60px 60px; text-align: center; }
    #testimonials .sec-title {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--navy);
      margin-bottom: 30px;
    }
    .testimonial-card {
      background: #fff;
      border-radius: 6px;
      padding: 28px 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,.06);
      max-width: 700px;
      margin: 0 auto;
    }
    .testimonial-card p {
      font-size: .92rem;
      line-height: 1.8;
      color: #555;
      font-style: italic;
    }
    .testimonial-card .client-name {
      margin-top: 18px;
      font-family: 'Oswald', sans-serif;
      font-size: .95rem;
      color: var(--navy);
      font-weight: 600;
    }
    .testimonial-card .client-company {
      font-size: .78rem;
      color: #888;
    }
    .t-logo {
      font-family: 'Oswald', sans-serif;
      font-size: .85rem;
      color: var(--navy);
      border: 1px solid #ddd;
      display: inline-block;
      padding: 4px 14px;
      border-radius: 3px;
      margin-top: 8px;
    }

    /* ─── FOOTPRINTS ──────────────────────────────────── */
    #footprints { background: #fff; padding: 50px 60px; }
    #footprints .fp-inner { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
    #footprints .map-container {
      flex: 0 0 420px;
      background: #e8f0fc;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      min-height: 360px;
    }
    .pak-map-svg { width: 100%; height: auto; }

    #footprints .fp-text { flex: 1; min-width: 220px; }
    #footprints .fp-text p { font-size: .88rem; color: #555; line-height: 1.8; margin-bottom: 20px; }
    .landmark-row { display: flex; gap: 16px; flex-wrap: wrap; }
    .landmark-item {
      text-align: center;
      font-size: .75rem;
      color: var(--navy);
      font-family: 'Oswald', sans-serif;
    }
    .landmark-item .lm-icon {
      width: 50px; height: 50px;
      background: var(--navy);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 6px;
    }
    .landmark-item .lm-icon i { color: var(--gold); font-size: 24px; }

    /* ─── MAP PIN ─────────────────────────────────────── */
    .map-pin {
      position: absolute;
      width: 14px; height: 14px;
      background: var(--navy);
      border: 3px solid var(--gold);
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }
    .map-pin::after {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }

    /* ─── HOW CAN WE HELP ─────────────────────────────── */
    #contact { background: var(--light); padding: 50px 60px; }
    #contact .form-label { font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
    #contact .form-control, #contact .form-select {
      border: 1px solid #d0d5e8;
      border-radius: 3px;
      font-size: .85rem;
      padding: 8px 12px;
    }
    #contact .form-control:focus, #contact .form-select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 .15rem rgba(245,197,24,.25);
    }
    .btn-submit {
      background: var(--gold);
      color: var(--navy);
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      letter-spacing: 1.5px;
      border: none;
      padding: 10px 36px;
      border-radius: 3px;
      transition: background .2s;
      margin-top: 6px;
    }
    .btn-submit:hover { background: var(--gold2); }
    #contact .map-embed {
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid #d0d5e8;
    }
    #contact .contact-info {
      font-size: .85rem;
      color: #555;
      line-height: 1.8;
      margin-top: 12px;
    }
    #contact .contact-info strong { color: var(--navy); }

  /* ─── FOOTER MAIN ───────────────────── */
/* ─── FOOTER ───────────────────── */
footer {
  background: var(--navy);
  color: #fff;
  padding: 50px 40px 20px;
  justify-content: center;
}

/* Equal spacing handled by col-lg-3 */

/* Headings GOLD */
footer h6 {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
}

/* Lists */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  ;
}

footer ul li {
  margin-bottom: 7px;
}

/* Links */
footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

footer a:hover {
  color: var(--gold);
  padding-left: 3px;
}

/* Paragraph text */
.footer-text {
  font-size: 13px;
  color: #d1d9e0;
  line-height: 1.6;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
footer .row {
  justify-content: space-between;
  
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #c0c8d0;
}

/* ─── NEW RESPONSIVE STYLES ───────────────────────── */

/* Toggle Button for Mobile */
#menu-toggle {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 2000;
  background: var(--gold2);
  border: none;
  color: var(--navy);
  width: 45px;
  height: 45px;
  border-radius: 5px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {

  /* Sidebar */
  #sidebar {
    transform: translateX(-100%);
    width: 260px;
    padding: 20px 0;
  }
#sidebar .logo-box img { width: 80px; }
  #sidebar.active {
    transform: translateX(0);
  }

  #main-content {
    margin-left: 0;
  }

  /* Toggle button */
  #menu-toggle {
    display: flex;
  }

  /* Reduce padding globally */
  section,
  #what-we-do,
  #clients,
  #testimonials,
  #contact {
    padding: 25px 15px !important;
  }

  /* Footer */
  footer .row {
    justify-content: center;
    text-align: center;
  }

  footer {
    padding: 30px 15px;
  }
  
}
@media (max-width: 768px) {
 
  #hero {
    min-height: 55vh;
  }

  #hero h1 {
    font-size: 1.5rem;
  }

  .sec-banner h2 {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  /* Stack columns */
  .row {
    flex-direction: column;
  }

  /* Cards */
  .card-mission,
  .card-values,
  .service-card {
    margin-bottom: 15px;
  }

  /* Testimonials */
  .testimonial-text {
    font-size: 15px;
  }

  .testi-inline {
    flex-direction: column;
    text-align: center;
  }

  .testi-person {
    text-align: center;
  }

  /* Affiliated section */
  .aff-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Map */
  #footprints .map-container {
    width: 100%;
    min-height: 280px;
  }

  /* Footer spacing */
  footer ul li {
    margin-bottom: 5px;
  }
}
@media (max-width: 480px) {

  
  #hero {
    min-height: 45vh;
  }

  #hero h1 {
    font-size: 1.2rem;
  }

  .sec-banner h2 {
    font-size: 1rem;
  }

  /* Sidebar logo */
  

  /* Footer text */
  footer a,
  .footer-text {
    font-size: 12px;
  }

  /* Contact */
  #contact .contact-info {
    font-size: 12px;
  }

  /* Buttons */
  .btn-submit {
    width: 100%;
  }

  /* Reduce padding */
  .card-values,
  .card-mission {
    padding: 14px;
  }
  #sidebar .logo-box img { 
    height: 80px;
    width: 80px;
  align-self: center;}
  #sidebar{
    justify-content: center;
    align-items: center;
  }
}
