
:root{
  --bg: #0b1220;
  --surface: #0f1a2e;
  --card: #101f3a;
  --text: #0f172a;
  --muted: #475569;
  --brand: #1d4ed8;
  --brand-2: #0ea5e9;
  --border: rgba(15, 23, 42, .12);
  --ring: rgba(29, 78, 216, .35);
  --shadow: 0 10px 25px rgba(2, 6, 23, .08);
  --shadow-2: 0 18px 45px rgba(2, 6, 23, .14);
  --radius: 16px;
}
html{scroll-behavior:smooth;}
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}
a{color: var(--brand); text-decoration: none;}
a:hover{color:#163fb1;}
/* Navbar */
.navbar{
  transition: box-shadow .2s ease, background-color .2s ease, backdrop-filter .2s ease;
}
.navbar.navbar-scrolled{
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(10px);
}
.navbar-brand{
  font-weight: 800;
  letter-spacing: .2px;
}
.badge-soft{
  background: rgba(29,78,216,.10);
  color: var(--brand);
  border: 1px solid rgba(29,78,216,.18);
}
/* Buttons */
.btn{
  border-radius: 999px;
  padding: .7rem 1.1rem;
  font-weight: 600;
}
.btn-primary{
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 10px 20px rgba(29,78,216,.18);
}
.btn-primary:hover{background:#163fb1; border-color:#163fb1;}
.btn-outline-primary{
  border-color: rgba(29,78,216,.35);
}
.btn-outline-primary:hover{
  background: rgba(29,78,216,.08);
  border-color: rgba(29,78,216,.55);
  color:#163fb1;
}
.btn-light{
  background: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.9);
}
/* Sections */
.section{
  padding: 72px 0;
}
.section-sm{padding: 48px 0;}
.section-title{
  font-weight: 800;
  letter-spacing: -.02em;
}
.section-lead{
  color: var(--muted);
  max-width: 62ch;
}

/* Wider intro text (used on Core Values + Accreditation intro blocks) */
.lead-wide{ max-width: 100%; }

/* About: Core values section should span wider like the design reference */
.core-values-wide .section-lead{ max-width: 100%; }
.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-hover{
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-hover:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.kpi{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  background: rgba(255,255,255,.7);
}
.kpi strong{font-size: 1.15rem;}
/* Hero */
.hero{
position:relative;
overflow:hidden;
}
.hero-panel{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 18px 45px rgba(2,6,23,.28);
}
.hero h1{
  font-weight: 900;
  letter-spacing: -.03em;
}
.hero p{color: rgba(255,255,255,.88);}
.hero .pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .9rem;
}
.hero .hero-card{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 22px 60px rgba(2,6,23,.18);
}

.icon-circle{
  width: 46px; height: 46px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.16);
  color: var(--brand);
}
/* Footer */
.footer{
  background: #0b1220;
  color: rgba(255,255,255,.86);
}
.footer a{color: rgba(255,255,255,.86);}
.footer a:hover{color:#ffffff;}
.footer .muted{color: rgba(255,255,255,.65);}
/* Forms */
.form-control, .form-select{
  border-radius: 12px;
  border-color: rgba(15,23,42,.14);
}
.form-control:focus, .form-select:focus{
  border-color: rgba(29,78,216,.35);
  box-shadow: 0 0 0 .25rem var(--ring);
}
/* Utilities */
.hr-soft{border-top: 1px solid rgba(15,23,42,.10);}
.small-muted{color: var(--muted); font-size: .95rem;}
.list-check li{margin-bottom:.5rem;}
.list-check i{color: var(--brand);}
@media (max-width: 991.98px){
  .section{padding: 56px 0;}
  .hero{
  background: none;
  position: relative;
  overflow: hidden;
}
}

.brand-logo{border-radius:10px; box-shadow:0 6px 18px rgba(2,6,23,.25);}


.hero{
  background: none;
  position: relative;
  overflow: hidden;
}
.hero::before{
content:"";
position:absolute;
inset:0;
background-image:
linear-gradient(
rgba(11,18,32,.55),
rgba(11,18,32,.35)
),
var(--hero-bg, url("../img/hero/hero1.jpg"));
background-size:cover;
background-position:center;
background-repeat:no-repeat;
z-index:0;

filter: blur(2px) brightness(.78);
transform: scale(1.04);
will-change: opacity, transform;
}
.hero > *{
  position: relative;
  z-index: 1;
}

/* Brand logos */
.brand-logo-nav{height:42px;width:auto;display:block}
.brand-logo-mark{max-width:220px;height:auto}
@media (max-width:576px){
  .brand-logo-nav{height:36px}
}

/* Partners */
.partner-strip{display:grid;grid-template-columns:repeat(6,1fr);gap:18px;align-items:center}
.partner-logo{background:#fff;border:1px solid rgba(148,163,184,.45);border-radius:18px;padding:18px;display:flex;align-items:center;justify-content:center;min-height:120px;box-shadow:0 10px 24px rgba(15,23,42,.06)}
.partner-logo img{max-height:82px;max-width:100%;width:auto;filter:saturate(1.05) contrast(1.05)}
@media (max-width:992px){.partner-strip{grid-template-columns:repeat(3,1fr)}}
@media (max-width:576px){.partner-strip{grid-template-columns:repeat(2,1fr)} .partner-logo{min-height:74px;padding:12px}}

/* Projects gallery */
.project-card{display:block;text-decoration:none;color:inherit;background:#fff;border:1px solid rgba(148,163,184,.45);border-radius:18px;overflow:hidden;box-shadow:0 10px 24px rgba(15,23,42,.06);transition:transform .15s ease, box-shadow .15s ease}
.project-card:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(15,23,42,.10)}
.project-thumb{height:210px;background-size:cover;background-position:center;filter:saturate(1.03) contrast(1.03)}

.album-thumb{display:block;border-radius:16px;overflow:hidden;border:1px solid rgba(148,163,184,.45);background:#fff;box-shadow:0 8px 18px rgba(15,23,42,.06)}
.album-thumb img{width:100%;height:160px;object-fit:cover;display:block;transition:transform .2s ease}
.album-thumb:hover img{transform:scale(1.03)}
@media (max-width:576px){.album-thumb img{height:140px}}

/* Project detail cards */
.info-card{background:#fff;border:1px solid rgba(148,163,184,.45);border-radius:16px;padding:12px 14px;box-shadow:0 8px 18px rgba(15,23,42,.06)}
.info-label{font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;color:#64748b}
.info-value{font-weight:600;color:#0f172a;margin-top:4px}

/* Partners marquee */
.partner-strip[data-marquee="true"]{display:block;overflow:hidden;position:relative}
.partner-track{display:flex;gap:18px;align-items:center;width:max-content;animation:partnerScroll 28s linear infinite}
.partner-strip:hover .partner-track{animation-play-state:paused}
.partner-strip .partner-logo{flex:0 0 auto;min-width:220px}
.partner-strip .partner-logo a{display:flex;align-items:center;justify-content:center;width:100%}
@keyframes partnerScroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
@media (max-width:992px){
  .partner-strip .partner-logo{min-width:200px}
  .partner-track{animation-duration:34s}
}
@media (max-width:576px){
  .partner-strip .partner-logo{min-width:170px}
  .partner-track{animation-duration:40s}
}

.partner-logo a:hover img{transform:scale(1.02)}
.partner-logo img{transition:transform .15s ease}


/* Navbar logo + typography cleanup */
.navbar-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-logo,
.navbar-brand img{
  height:52px;
  width:auto;
  display:block;
}

.nav-company{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.nav-company-name{
  font-family:"Cinzel", "Times New Roman", Times, serif;
  font-weight:700;
  font-size:18px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#0f172a;
}

.nav-company-sub{
  display:none !important;
}

@media (max-width:992px){
  .nav-logo,
  .navbar-brand img{
    height:44px;
  }

  .nav-company-name{
    font-size:16px;
    letter-spacing:.05em;
  }
}

@media (max-width:576px){
  .nav-logo,
  .navbar-brand img{
    height:38px;
  }

  .nav-company-name{
    font-size:14px;
    letter-spacing:.04em;
  }
}

/* Projects: clamp long titles */
.project-card h3{
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

/* Core Values accordion (match legacy style, modern look) */
.core-accordion .accordion-item{
  border:0;
  background:transparent;
  margin-bottom:12px;
}
.core-accordion .accordion-button{
  background:#fff;
  border-radius:10px;
  box-shadow:0 2px 10px rgba(15,23,42,.08);
  padding:14px 16px;
  font-weight:500;
  color:#0f172a;
}
.core-accordion .accordion-button:not(.collapsed){
  box-shadow:0 8px 20px rgba(15,23,42,.12);
}
.core-accordion .accordion-button:focus{
  box-shadow:0 0 0 .2rem rgba(37,99,235,.15);
}
/* right dark square chevron */
.core-accordion .accordion-button::after{
  width:34px;
  height:34px;
  border-radius:6px;
  background-color:#111827;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  transform:none;
}
.core-accordion .accordion-button:not(.collapsed)::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'/%3E%3C/svg%3E");
}
.core-accordion .accordion-body{
  background:#fff;
  margin-top:10px;
  border-radius:10px;
  box-shadow:0 2px 10px rgba(15,23,42,.06);
}
.core-bullets{
  padding-left:18px;
}
.core-bullets li{
  margin:6px 0;
  color:#334155;
}


/* Nav: active state clearer */
.navbar-modern .nav-link.active{
  color:#2563eb !important;
  font-weight:600;
}

/* Core values: expand readable width */
.core-values-wide{
  max-width: 1280px;
}
@media (min-width:1400px){
  .core-values-wide{max-width: 1400px;}
}

/* Projects toolbar: keep compact after removing search/count */
.project-toolbar{gap:12px}


/* Ensure hero content stays above background layers */
.hero > .container,
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item{
  position: relative;
  z-index: 1;
}


/* Hero slider controls */
.hero-slider-controls{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  z-index:2;
  pointer-events:none;
}
.hero-slider-controls button{
  pointer-events:auto;
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(11,18,32,.35);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter: blur(6px);
}
.hero-slider-controls button:hover{
  background:rgba(11,18,32,.55);
}
@media (max-width: 991px){
  .hero-slider-controls{ display:none; }
}

.hero .container{
position:relative;
z-index:2;
}


/* V2: Stats section */
.sldcc-stats{ padding: 36px 0 10px; background: #fff; }
.sldcc-stats .stats-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.sldcc-stats .stat-card{
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}
.sldcc-stats .stat-value{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.35rem;
  color: #0f172a;
}
.sldcc-stats .stat-label{
  margin-top: 4px;
  font-size: .90rem;
  color: rgba(15,23,42,.72);
}
@media (max-width: 992px){
  .sldcc-stats .stats-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .sldcc-stats{ padding: 24px 0 8px; }
  .sldcc-stats .stats-grid{ grid-template-columns: 1fr; }
}

/* V2: Project title sizing */
.project-header h1{
  font-size: clamp(1.35rem, 2.0vw + 1rem, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 1100px;
}


/* Hide hero slider arrows */
.carousel-control-prev,
.carousel-control-next{
display:none !important;
}



/* Version 3: Hero crossfade background */
.hero::before{
  /* current background (kept) */
  transition: none;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(11,18,32,.25), rgba(11,18,32,.35)),
    var(--hero-bg-next, var(--hero-bg, url("../img/hero/hero1.jpg")));
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  z-index:0;
  transition: opacity 900ms ease;

filter: blur(2px) brightness(.78);
transform: scale(1.04);
will-change: opacity, transform;
}
.hero.is-fading::after{
  opacity:1;
}


/* Version 3: Project lightbox */
.sldcc-lightbox{position:fixed;inset:0;display:none;z-index:2000;}
.sldcc-lightbox.open{display:block;}
.sldcc-lightbox__backdrop{position:absolute;inset:0;background:rgba(2,6,23,.85);}
.sldcc-lightbox__figure{position:absolute;inset:0;display:grid;place-items:center;margin:0;padding:22px;}
.sldcc-lightbox__img{max-width:min(1100px, 92vw);max-height:78vh;border-radius:16px;box-shadow:0 30px 80px rgba(0,0,0,.45);background:#0b1220;}
.sldcc-lightbox__cap{max-width:min(1100px, 92vw);color:#e2e8f0;margin-top:12px;display:flex;justify-content:space-between;align-items:center;gap:12px;}
.sldcc-lightbox__title{font-size:.95rem;font-weight:600;opacity:.95}
.sldcc-lightbox__meta{font-size:.85rem;opacity:.85}
.sldcc-lightbox__close{position:absolute;top:14px;right:16px;width:44px;height:44px;border-radius:999px;border:1px solid rgba(226,232,240,.18);background:rgba(15,23,42,.35);color:#fff;font-size:26px;line-height:1;display:grid;place-items:center;cursor:pointer}
.sldcc-lightbox__nav{position:absolute;top:50%;transform:translateY(-50%);width:46px;height:46px;border-radius:999px;border:1px solid rgba(226,232,240,.18);background:rgba(15,23,42,.35);color:#fff;font-size:34px;line-height:1;display:grid;place-items:center;cursor:pointer}
.sldcc-lightbox__nav.prev{left:18px;}
.sldcc-lightbox__nav.next{right:18px;}
@media (max-width: 640px){
  .sldcc-lightbox__nav{display:none;}
}


/* Hero V10 upgrade */
.hero-content h1{
font-size:56px;
line-height:1.1;
letter-spacing:-1px;
text-shadow:0 10px 40px rgba(0,0,0,0.45);
}

.hero-content p{
max-width:650px;
}

.hero-content .badge{
font-size:14px;
padding:8px 14px;
border-radius:30px;
}


/* Hero V11: cleaner, no circles + metrics + motion */
.hero::before{
  background-image:
    radial-gradient(1200px 600px at 15% 35%, rgba(29,78,216,.25), transparent 60%),
    linear-gradient(rgba(11,18,32,.62), rgba(11,18,32,.38)),
    var(--hero-bg, url("../img/hero/hero1.jpg"));
}

.hero .hero-card .fw-semibold{color:#0b1220;}
.hero .hero-card p{color: rgba(15,23,42,.72);}
.hero .hero-card .text-secondary{color: rgba(15,23,42,.68)!important;}
.hero .hero-card .btn{border-radius:14px;}

.hero-metrics{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.hero-metrics .metric{
  display:flex;
  align-items:baseline;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
}
.hero-metrics .metric-kpi{
  color:#fff;
  font-weight:800;
  letter-spacing:-.02em;
}
.hero-metrics .metric-label{
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  font-weight:600;
}

@media (max-width: 576px){
  .hero-content h1{font-size:40px;}
  .hero-metrics .metric{width:100%; justify-content:space-between;}
}

@keyframes heroRise{
  from{opacity:0; transform: translateY(10px);}
  to{opacity:1; transform: translateY(0);}
}
.hero .carousel-item.active .hero-content,
.hero .carousel-item.active .hero-card{
  animation: heroRise .55s ease both;
}
.hero .carousel-item.active .hero-card{animation-delay:.08s;}

/* Project album lightbox (Bootstrap modal + carousel) */
.modal .lightbox-project-title{
  font-size: .92rem;
  font-weight: 600;
  opacity: .95;
  max-width: calc(100% - 70px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Move close button to the LEFT for project lightbox modal */
.modal#lightboxModal .modal-header{
  position: relative;
  padding-left: 60px;
}
.modal#lightboxModal .modal-header .btn-close{
  position: absolute;
  left: 16px;
  right: auto;
  margin: 0;
}

.modal .carousel-indicators{
  margin-bottom: 1.25rem;
  pointer-events: auto;
  z-index: 15;
}
.modal .carousel-indicators [data-bs-target]{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  cursor: pointer;
}


/* Navbar V20: clean underline navigation */
#mainNavbar .navbar-nav{gap:.45rem;}
#mainNavbar .nav-link{
  position:relative;
  color:#334155;
  font-weight:600;
  letter-spacing:.01em;
  padding:.85rem .95rem;
  border-radius:0;
  background:transparent !important;
  transition:color .2s ease, opacity .2s ease;
}
#mainNavbar .nav-link::after{
  content:"";
  position:absolute;
  left:.95rem;
  right:.95rem;
  bottom:.35rem;
  height:2px;
  background:#0d6efd;
  border-radius:999px;
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .22s ease;
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active,
#mainNavbar .show > .nav-link{
  color:#0d6efd;
  background:transparent !important;
  box-shadow:none !important;
}
#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after,
#mainNavbar .show > .nav-link::after{
  transform:scaleX(1);
}
#mainNavbar .dropdown-toggle::after{
  margin-left:.45rem;
  vertical-align:.15em;
}
#mainNavbar .nav-dropdown-menu{
  min-width:250px;
  border-radius:18px;
  padding:.55rem;
  box-shadow:0 18px 40px rgba(15,23,42,.14) !important;
}
#mainNavbar .dropdown-item{
  border-radius:12px;
  padding:.72rem .85rem;
  font-weight:500;
  color:#334155;
}
#mainNavbar .dropdown-item:hover{
  background:rgba(13,110,253,.08);
  color:#0d6efd;
}
@media (max-width: 991.98px){
  body.nav-open{
    overflow:hidden;
  }
  body.nav-open::before{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.42);
    z-index:100000;
  }
  body.nav-open .feedback-fab,
  body.nav-open .feedback-modal,
  body.nav-open .feedback-overlay{
    display:none !important;
  }
  #mainNavbar{
    z-index:100003;
  }
  #mainNavbar .navbar-toggler{
    width:56px;
    height:52px;
    border-radius:14px;
    border:1px solid rgba(15,23,42,.12);
    padding:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:none;
    position:relative;
    z-index:100004;
    background:#fff;
  }
  #mainNavbar .navbar-toggler:focus{
    box-shadow:0 0 0 .2rem rgba(13,110,253,.12);
  }
  #mainNavbar .navbar-toggler-icon{
    width:24px;
    height:24px;
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2867, 67, 67, 0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.25' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size:24px 24px;
  }
  #mainNavbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2867, 67, 67, 0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M7 7l16 16M23 7L7 23'/%3e%3c/svg%3e");
  }
  #mainNavbar .navbar-collapse,
  #mainNavbar .navbar-collapse.collapsing,
  #mainNavbar .navbar-collapse.show{
    position:fixed;
    top:0;
    right:0;
    left:auto;
    bottom:0;
    width:min(82vw,360px);
    max-width:360px;
    height:100vh !important;
    margin-top:0;
    padding:6.25rem 1.5rem 2rem;
    border:0;
    border-radius:18px 0 0 18px;
    background:#0c3ea8;
    box-shadow:-16px 0 40px rgba(15,23,42,.22);
    overflow-y:auto;
    overflow-x:hidden;
    z-index:100003;
    transform:none !important;
    visibility:visible !important;
    transition:none !important;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
  }
  #mainNavbar .navbar-collapse.collapsing{
    display:block !important;
    height:100vh !important;
  }
  #mainNavbar .navbar-collapse:not(.show):not(.collapsing){
    display:none !important;
  }
  #mainNavbar .navbar-nav{
    gap:.2rem;
    align-items:stretch !important;
    padding-top:.25rem;
    position:relative;
    z-index:100004;
  }
  #mainNavbar .nav-item + .nav-item{
    margin-top:.2rem;
  }
  #mainNavbar .nav-link,
  #mainNavbar .show > .nav-link,
  #mainNavbar .nav-link.active{
    color:#fff;
    padding:1rem 0;
    font-weight:700;
    letter-spacing:.01em;
    font-size:1.05rem;
    user-select:none;
    -webkit-user-select:none;
    -webkit-tap-highlight-color:transparent;
  }
  #mainNavbar .nav-link:hover,
  #mainNavbar .nav-link:focus{
    color:#fff;
    opacity:.95;
  }
  #mainNavbar .nav-link::after{
    left:0;
    right:auto;
    width:34px;
    bottom:.35rem;
    background:#8eb6ff;
  }
  #mainNavbar .dropdown-toggle::after,
  #mainNavbar .nav-home-dropdown .dropdown-menu{
    display:none !important;
  }
  #mainNavbar .dropdown-menu,
  #mainNavbar .nav-dropdown-menu{
    min-width:100%;
    margin-top:.35rem;
    padding:.4rem;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    border:0;
    box-shadow:none !important;
  }
  #mainNavbar .dropdown-item,
  #mainNavbar .dropdown-item:hover{
    color:#fff;
    background:transparent;
    padding:.75rem 0;
    border-radius:0;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  #mainNavbar .dropdown-item:last-child{
    border-bottom:0;
  }
  #mainNavbar .nav-summary-title,
  #mainNavbar .dropdown-item:hover .nav-summary-title{
    color:#fff;
  }
  #mainNavbar .nav-summary-text{
    color:rgba(255,255,255,.78);
  }
}



/* Home: Why work with us + major clients */
.section-heading-block{max-width:58ch}
.clients-showcase{background:linear-gradient(180deg,#f8fbff 0%, #ffffff 100%)}

.clients-showcase-main{max-width:100%;}
.clients-heading-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}
.clients-more-action-top{
  margin-top:0;
  flex-shrink:0;
  align-self:flex-start;
}
.work-with-grid,
.client-name-grid{display:grid;gap:18px}
.why-card,
.client-name-card{
  background:#fff;
  border:1px solid rgba(148,163,184,.35);
  border-radius:20px;
  box-shadow:0 14px 34px rgba(15,23,42,.07);
}
.why-card{
  padding:22px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  transition:transform .15s ease, box-shadow .15s ease;
}
.why-card:hover,
.client-name-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(15,23,42,.10);
}
.why-card-icon{
  width:52px;
  height:52px;
  min-width:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(29,78,216,.10);
  color:var(--brand);
  border:1px solid rgba(29,78,216,.16);
  font-size:1.25rem;
}
.why-card h3,
.client-name{
  margin:0 0 6px;
  font-size:1.06rem;
  font-weight:800;
  color:#0f172a;
}
.why-card p{
  margin:0;
  color:#475569;
  line-height:1.65;
}
.client-name-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.client-name-card{
  min-height:150px;
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.client-short{
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.14em;
  color:var(--brand);
  text-transform:uppercase;
}
@media (max-width:991.98px){
  .client-name-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:575.98px){
  .why-card{padding:18px}
  .client-name-grid{grid-template-columns:1fr}
  .client-name-card{min-height:unset}
}


/* Enhanced home dropdown summaries */
#mainNavbar .nav-mega-menu{
  min-width: 360px;
  padding: .65rem;
}
#mainNavbar .nav-summary-item{
  display:block;
  white-space:normal;
}
#mainNavbar .nav-summary-title{
  display:block;
  font-weight:800;
  color:#0f172a;
  margin-bottom:.2rem;
}
#mainNavbar .nav-summary-text{
  display:block;
  color:#64748b;
  font-size:.88rem;
  line-height:1.45;
}
#mainNavbar .dropdown-item:hover .nav-summary-title{
  color:#1d4ed8;
}
@media (min-width: 992px){
  #mainNavbar .nav-home-dropdown:hover .dropdown-menu{
    display:block;
    margin-top:.2rem;
  }
}

/* Client logo grid */
.client-logo-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.client-logo-card{
  background:#fff;
  border:1px solid rgba(148,163,184,.35);
  border-radius:20px;
  box-shadow:0 14px 34px rgba(15,23,42,.07);
  padding:22px 16px;
  min-height:190px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  transition:transform .15s ease, box-shadow .15s ease;
}
.client-logo-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(15,23,42,.10);
}
.client-logo-card img{
  max-width:100%;
  width:auto;
  height:88px;
  object-fit:contain;
  margin-bottom:14px;
}
.client-logo-name{
  font-weight:700;
  color:#0f172a;
  font-size:.92rem;
  line-height:1.4;
}
@media (max-width:991.98px){
  .client-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:575.98px){
  .client-logo-grid{grid-template-columns:1fr;}
  .client-logo-card{min-height:170px;}
}

/* About page company panel */
.company-profile-card{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
}
.about-logo-panel{
  background:linear-gradient(180deg,#ffffff 0%, #f7fbff 100%);
}
.about-company-logo{
  width:min(100%, 280px);
  height:auto;
  margin:0 auto 16px;
  display:block;
}
.about-logo-title{
  font-size:1.05rem;
  font-weight:800;
  color:#0f172a;
  margin-bottom:.45rem;
}


/* Home short about */
.home-about-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:28px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  padding:2rem 2.25rem;
  margin-top:-2rem;
  position:relative;
  z-index:3;
}
.home-about-logo{
  width:min(100%, 220px);
  height:auto;
  object-fit:contain;
}
.home-about-eyebrow{
  display:inline-block;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#2563eb;
  margin-bottom:.5rem;
}
.home-about-title{
  font-size:clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight:800;
  color:#0f172a;
  margin-bottom:.75rem;
}
.home-about-text{
  font-size:1.1rem;
  color:#475569;
  max-width:820px;
}
@media (max-width: 991.98px){
  .home-about-card{margin-top:0;padding:1.5rem;}
  .home-about-logo{width:min(100%,180px);}
  .home-about-text{font-size:1rem;}
}


/* 2026-03-09 navigation + homepage cleanup */
.home-about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.25rem 0 0;
}
.home-about-highlights span {
  display: inline-flex;
  align-items: center;
  padding: .65rem .95rem;
  border-radius: 999px;
  background: #f4f7ff;
  border: 1px solid #dbe5ff;
  color: #214fbf;
  font-weight: 600;
  font-size: .93rem;
}
.home-about-side-card {
  border: 1px solid #e8edf7;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 24px;
  padding: 1.5rem;
}
.home-about-side-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #102040;
  margin-bottom: .9rem;
}
.home-about-list {
  padding-left: 1.1rem;
  color: #5a6780;
}
.home-about-list li + li {
  margin-top: .6rem;
}
@media (max-width: 991.98px) {
  .home-about-side-card {
    margin-top: .5rem;
  }
}

.hero-card-head { display:block; }

/* 2026-03-09 newsroom */
.news-hero{
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(37,99,235,.12), transparent 60%),
    radial-gradient(800px 320px at 85% 12%, rgba(14,165,233,.10), transparent 55%);
}
.news-pill{
  display:inline-flex;
  align-items:center;
  padding:.55rem .9rem;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:.88rem;
  font-weight:700;
}
.news-summary-card{
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(8px);
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:1.4rem;
  box-shadow:0 16px 40px rgba(15,23,42,.07);
}
.news-summary-item + .news-summary-item{
  margin-top:.95rem;
  padding-top:.95rem;
  border-top:1px solid #e8edf5;
}
.news-summary-item strong,
.article-info-label{
  display:block;
  font-size:.78rem;
  color:#2563eb;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:.28rem;
}
.news-summary-item span{
  color:#475569;
}
.featured-news{
  border-radius:30px;
  background:linear-gradient(135deg,#ffffff 0%,#f8fbff 100%);
}
.featured-news-image{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}
.featured-news-body{
  padding:2rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
}
.news-meta{
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
  color:#64748b;
  font-size:.92rem;
}
.news-meta i{ margin-right:.25rem; }
.featured-news-title{font-size:clamp(1.8rem,2.5vw,2.5rem);font-weight:800;color:#0f172a;margin:.9rem 0;line-height:1.15;}
.featured-news-text{font-size:1.05rem;font-weight:600;color:#334155;margin-bottom:.75rem;}
.featured-news-copy,.news-card-text,.article-copy p{color:#475569;line-height:1.75;}
.news-filter-wrap{min-width:min(100%,320px);}
.news-search{
  border-radius:999px;
  border:1px solid #dbe5f3;
  padding:.85rem 1rem;
  box-shadow:none;
}
.news-chip-row{display:flex;flex-wrap:wrap;gap:.75rem;}
.news-chip{
  border:1px solid #dbe5f3;
  background:#fff;
  color:#1f3a68;
  border-radius:999px;
  padding:.6rem 1rem;
  font-weight:600;
}
.news-chip.active,
.news-chip:hover{background:#eff6ff;border-color:#bfdbfe;color:#1d4ed8;}
.news-card{
  height:100%;
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 28px rgba(15,23,42,.05);
}
.news-card-image-link{display:block;overflow:hidden;}
.news-card-image{width:100%;height:240px;object-fit:cover;transition:transform .35s ease;}
.news-card:hover .news-card-image{transform:scale(1.04);}
.news-card-body{padding:1.35rem;display:flex;flex-direction:column;height:100%;}
.news-card-title{font-size:1.18rem;font-weight:400;line-height:1.35;margin:.75rem 0;}
.news-card-title a{color:#0f172a;text-decoration:none;}
.news-card-title a:hover{color:#1d4ed8;}
.news-card-actions{margin-top:auto;}
.news-card-muted{background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);}
.news-cta-card{border-radius:28px;padding:1.8rem;}
.news-back-link{display:inline-flex;align-items:center;gap:.5rem;color:#1d4ed8;font-weight:700;text-decoration:none;}
.news-back-link:hover{color:#1e40af;}
.article-shell{max-width:1100px;margin:0 auto;}
.article-content{
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:30px;
  padding:1.5rem;
  box-shadow:0 18px 40px rgba(15,23,42,.06);
}
.article-gallery-main{
  border-radius:24px;
  overflow:hidden;
}
.article-gallery .carousel-item img{
  width:100%;
  height:620px;
  object-fit:cover;
  cursor:zoom-in;
}
.article-gallery .carousel-control-prev,
.article-gallery .carousel-control-next{width:54px;}
.article-gallery .carousel-control-prev-icon,
.article-gallery .carousel-control-next-icon{
  background-color:rgba(15,23,42,.45);
  border-radius:50%;
  padding:18px;
}
.article-thumbs{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:.75rem;}
.article-thumb{
  padding:0;
  border:2px solid transparent;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}
.article-thumb.active{border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.12);}
.article-thumb img{width:100%;height:90px;object-fit:cover;display:block;}
.article-info-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;margin-top:2rem;}
.article-info-card{
  background:#f8fbff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:1rem;
}
.article-actions{display:flex;flex-wrap:wrap;gap:.75rem;}
@media (max-width: 991.98px){
  .featured-news-image{min-height:280px;}
  .article-gallery .carousel-item img{height:420px;}
  .article-thumbs{grid-template-columns:repeat(3,minmax(0,1fr));}
  .article-info-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 575.98px){
  .featured-news-body,.article-content,.news-cta-card{padding:1.1rem;}
  .article-gallery .carousel-item img{height:280px;}
  .article-thumbs{grid-template-columns:repeat(2,minmax(0,1fr));}
  .article-info-grid{grid-template-columns:1fr;}
}

.news-hero-intro{max-width:760px;}
.news-summary-strip{max-width:980px;}
.news-summary-card.compact{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  padding:1rem 1.2rem;
}
.news-summary-card.compact .news-summary-item + .news-summary-item{
  margin-top:0;
  padding-top:0;
  border-top:0;
  border-left:1px solid #e8edf5;
  padding-left:1rem;
}
.news-template-note{
  background:#f8fbff;
  border:1px dashed #bfdbfe;
  color:#334155;
  border-radius:20px;
  padding:1rem 1.1rem;
}
.news-template-note-title{
  font-weight:800;
  color:#1d4ed8;
  margin-bottom:.35rem;
}
@media (max-width: 991.98px){
  .news-summary-card.compact{grid-template-columns:1fr;}
  .news-summary-card.compact .news-summary-item + .news-summary-item{border-left:0;border-top:1px solid #e8edf5;padding-left:0;padding-top:.95rem;}
}


.news-card-clickable{cursor:pointer;transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;}
.news-card-clickable:hover{transform:translateY(-4px);box-shadow:0 18px 38px rgba(15,23,42,.09);border-color:#d7e3f5;}
.news-empty-state .card{border-radius:24px;background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);}
.news-pagination{display:flex;justify-content:center;gap:.5rem;margin-top:1.5rem;flex-wrap:wrap;}
.news-pagination .page-btn{border:1px solid #dbe5f3;background:#fff;color:#1f3a68;border-radius:999px;padding:.6rem .95rem;font-weight:700;min-width:44px;}
.news-pagination .page-btn.active,.news-pagination .page-btn:hover{background:#eff6ff;border-color:#bfdbfe;color:#1d4ed8;}


/* Final professional homepage upgrades */
.impact-shell{
  background: linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid #e7edf7;
  border-radius:30px;
  padding:1rem;
  box-shadow:0 18px 34px rgba(15,23,42,.05);
  margin-top:-3rem;
  position:relative;
  z-index:3;
}
.impact-card{
  background:#fff;
  border:1px solid #e8edf5;
  border-radius:22px;
  padding:1.2rem 1.15rem;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
}
.impact-kpi{
  font-size:1.35rem;
  font-weight:800;
  color:#0f172a;
  margin-bottom:.35rem;
}
.impact-label{
  color:#475569;
  line-height:1.65;
  font-size:.96rem;
}
.final-cta{
  background:linear-gradient(135deg,#0f2f73 0%, #1d4ed8 55%, #2563eb 100%);
  border-radius:30px;
  padding:2rem;
  box-shadow:0 22px 44px rgba(29,78,216,.20);
}
.final-cta h2{
  font-size:clamp(1.7rem,2.8vw,2.5rem);
  font-weight:800;
}
.footer .badge{
  border:1px solid rgba(255,255,255,.12);
}
#mainNavbar .dropdown-item.nav-summary-item{
  white-space:normal;
}
#mainNavbar .dropdown-item.nav-summary-item .nav-summary-title{
  display:block;
  font-weight:800;
  color:#0f172a;
  margin-bottom:.2rem;
}
#mainNavbar .dropdown-item.nav-summary-item .nav-summary-text{
  display:block;
  color:#64748b;
  line-height:1.5;
}
@media (max-width: 991.98px){
  .impact-shell{margin-top:-1.5rem;}
  .final-cta{padding:1.35rem;}
}


/* CSR section */
#csr .csr-panel {
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
}
#csr .csr-logo {
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.08));
}

@media (max-width: 991.98px){
  .career-hero-helmet{display:none !important;}
}


/* Version 2 – Corporate Service Cards */
.services-corporate-section{
  padding-top: 76px;
  padding-bottom: 76px;
}
.services-corporate-header{
  align-items: center;
}
.services-corporate-lead{
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.65;
}
.services-projects-btn{
  min-width: 190px;
}
.corporate-service-card{
  background: #fff;
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(15,23,42,.06);
  padding: 26px 24px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.corporate-service-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(15,23,42,.10);
  border-color: rgba(29,78,216,.22);
}
.corporate-service-icon{
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(238,243,255,.96), rgba(232,238,252,.92));
  border: 1px solid rgba(99,102,241,.18);
  color: var(--brand);
  font-size: 1.15rem;
}
.corporate-service-title{
  margin: 0 0 14px;
  font-size: 1.12rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #0f172a;
}
.corporate-service-list{
  padding-left: 1.15rem;
  margin: 0;
}
.corporate-service-list li{
  color: #51627b;
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 12px;
}
.corporate-service-list li:last-child{
  margin-bottom: 0;
}
@media (max-width: 991.98px){
  .services-projects-btn{
    min-width: 0;
  }
}
@media (max-width: 575.98px){
  .corporate-service-card{
    border-radius: 22px;
    padding: 22px 20px;
  }
  .corporate-service-title{
    font-size: 1.05rem;
  }
  .corporate-service-list li{
    font-size: .97rem;
  }
}


/* Projects page - table directory layout */
.project-table-page{background:linear-gradient(180deg,#f8fafc 0%,#ffffff 220px)}
.project-table-hero{padding-top:8px}
.project-summary-card{
  background:#fff;
  border:1px solid rgba(148,163,184,.32);
  border-radius:20px;
  padding:20px 22px;
  max-width:280px;
  box-shadow:0 14px 38px rgba(15,23,42,.06);
}
.project-summary-count{
  font-size:1.5rem;
  font-weight:800;
  color:#0f172a;
  line-height:1.1;
}
.project-filters-card,
.project-table-card{
  background:#fff;
  border:1px solid rgba(148,163,184,.28);
  border-radius:24px;
  box-shadow:0 18px 48px rgba(15,23,42,.06);
}
.project-filters-card{padding:24px}
.project-table-card{overflow:hidden}
.project-directory-table thead th{
  background:#f8fafc;
  color:#475569;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(148,163,184,.22);
  padding:18px 20px;
  white-space:nowrap;
}
.project-directory-table tbody td{
  padding:18px 20px;
  border-color:rgba(226,232,240,.95);
  color:#334155;
  vertical-align:top;
}
.project-directory-table tbody tr:hover{background:#fcfdff}
.project-title-wrap{
  display:flex;
  gap:14px;
  align-items:flex-start;
  min-width:320px;
}
.project-title-thumb{
  width:78px;
  height:78px;
  flex:0 0 78px;
  border-radius:16px;
  overflow:hidden;
  background:#e2e8f0;
  box-shadow:0 8px 20px rgba(15,23,42,.08);
}
.project-title-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.project-table-title{
  font-weight:700;
  color:#0f172a;
  line-height:1.45;
  font-size:.98rem;
  margin-bottom:8px;
}
.project-table-submeta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  align-items:center;
  font-size:.82rem;
  color:#64748b;
}
.project-status-badge{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:5px 10px;
  font-weight:700;
  font-size:.74rem;
  letter-spacing:.02em;
}
.project-status-badge.completed{background:#ecfdf5;color:#047857}
.project-status-badge.ongoing{background:#eff6ff;color:#1d4ed8}
.project-view-btn{
  border-radius:999px;
  font-weight:600;
  white-space:nowrap;
}
.project-empty-state{
  text-align:center;
  padding:52px 20px;
  color:#64748b;
}
.project-empty-state i{
  font-size:2rem;
  color:#94a3b8;
  display:inline-block;
  margin-bottom:12px;
}
.project-empty-state h3{
  font-size:1.15rem;
  color:#0f172a;
  margin-bottom:8px;
}
@media (max-width: 991px){
  .project-summary-card{max-width:none}
}
@media (max-width: 767px){
  .project-filters-card{padding:18px}
  .project-directory-table thead th,
  .project-directory-table tbody td{padding:14px 14px}
  .project-title-wrap{min-width:260px}
  .project-title-thumb{width:64px;height:64px;flex-basis:64px;border-radius:14px}
  .project-table-title{font-size:.92rem}
}


/* More clients button + clients page */
.clients-more-action{
  display:flex;
  justify-content:flex-end;
  margin-top:18px;
}
.clients-more-btn{
  border-radius:999px;
  font-weight:700;
  padding:.72rem 1.15rem;
  box-shadow:0 10px 25px rgba(15,23,42,.06);
}
.clients-page-hero{
  background:radial-gradient(900px 400px at 20% 0%, rgba(29,78,216,.12), transparent 60%), radial-gradient(900px 400px at 80% 10%, rgba(14,165,233,.12), transparent 55%);
}
.clients-page-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.clients-page-grid .client-logo-card{
  min-height:220px;
  padding:24px 18px;
}
.clients-page-grid .client-logo-card img{
  height:96px;
}
.clients-page-note{
  max-width:64ch;
}
@media (max-width:991.98px){
  .clients-page-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:575.98px){
  .clients-more-action{justify-content:center;}
  .clients-page-grid{grid-template-columns:1fr;}
  .clients-page-grid .client-logo-card{min-height:190px;}
}
@media (max-width:767.98px){
  .clients-heading-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .clients-more-action-top{
    width:100%;
    justify-content:flex-start;
  }
}


/* Premium responsive table system */
.table-toolbar-premium{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  border-bottom:1px solid rgba(226,232,240,.95);
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
}
.table-toolbar-left{font-size:.96rem;color:#64748b}
.table-toolbar-right{display:flex;align-items:center;gap:10px;color:#64748b;font-size:.95rem}
.table-toolbar-right select{
  width:auto;
  min-width:86px;
  border-radius:12px;
  border:1px solid rgba(148,163,184,.35);
  padding:.45rem 2rem .45rem .8rem;
  font-weight:600;
  color:#0f172a;
  background-color:#fff;
}
.table-pagination-premium{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:22px 26px;
  margin-top:8px;
  border-top:1px solid rgba(203,213,225,.85);
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}
.table-pagination-info{
  font-size:.95rem;
  color:#475569;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.table-pagination-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
  padding:6px;
  border:1px solid #d8e0ea;
  border-radius:12px;
  background:#fff;
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}
.table-page-btn{
  min-width:44px;
  height:40px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  border:1px solid transparent;
  background:#fff;
  color:#334155;
  font-weight:700;
  font-size:.95rem;
  box-shadow:none;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease,transform .2s ease;
}
.table-page-btn:hover:not(:disabled){
  border-color:#cbd5e1;
  background:#f8fafc;
  color:#0f172a;
  transform:translateY(-1px);
}
.table-page-btn.active{
  background:#0f2747;
  border-color:#0f2747;
  color:#fff;
  box-shadow:0 8px 18px rgba(15,39,71,.18);
}
.table-page-btn-wide{padding:0 16px;min-width:104px}
.table-page-btn:disabled{
  opacity:.46;
  cursor:not-allowed;
  transform:none;
}
.table-page-ellipsis{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  color:#94a3b8;
  font-weight:700;
}
.careers-table th:last-child,.careers-table td:last-child{white-space:nowrap}
@media (max-width: 767.98px){
  .table-toolbar-premium,
  .table-pagination-premium{flex-direction:column;align-items:stretch}
  .table-toolbar-right,
  .table-pagination-actions{justify-content:flex-start}
  .project-table-card .table-responsive,
  .career-table-card .table-responsive{overflow-x:visible}
  .project-directory-table,
  .careers-table,
  .project-directory-table thead,
  .careers-table thead,
  .project-directory-table tbody,
  .careers-table tbody,
  .project-directory-table tr,
  .careers-table tr,
  .project-directory-table td,
  .careers-table td{display:block;width:100%}
  .project-directory-table thead,
  .careers-table thead{display:none}
  .project-directory-table tbody tr,
  .careers-table tbody tr{
    background:#fff;
    border:1px solid rgba(148,163,184,.24);
    border-radius:22px;
    padding:14px;
    margin:0 12px 14px;
    box-shadow:0 12px 32px rgba(15,23,42,.06);
  }
  .project-directory-table tbody td,
  .careers-table tbody td{
    border:none;
    padding:8px 0;
    white-space:normal;
  }
  .project-directory-table tbody td::before,
  .careers-table tbody td::before{
    content:attr(data-label);
    display:block;
    font-size:.72rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
    color:#64748b;
    margin-bottom:4px;
  }
  .project-directory-table tbody td.project-title-cell::before,
  .careers-table tbody td:first-child::before{margin-bottom:8px}
  .project-title-wrap{min-width:0}
  .project-view-btn{width:100%;justify-content:center}
  .careers-table td.text-end,
  .project-directory-table td.text-nowrap{text-align:left !important}
  .careers-table td.text-end a{display:inline-flex;padding-top:4px}
}


/* Project title should look like normal table text by default */
.project-table-title.project-title-link{
  color: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
  display: inline;
}

/* Only change style on hover */
.project-table-title.project-title-link:hover{
  color:#2e3690 !important;
  text-decoration: underline !important;
  cursor:pointer;
}


/* 2026 uniform project album thumbnails + improved lightbox */
.album-thumb{
  position:relative;
  aspect-ratio:4 / 3;
  display:block;
}
.album-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.album-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15,23,42,0) 55%, rgba(15,23,42,.08) 100%);
  opacity:0;
  transition:opacity .2s ease;
  pointer-events:none;
}
.album-thumb:hover::after{opacity:1;}
.album-thumb:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(15,23,42,.10);
}

.modal#lightboxModal .modal-dialog{
  max-width:min(1200px, 96vw);
}
.modal#lightboxModal .modal-content{
  background:#020617;
  border-radius:20px;
  overflow:hidden;
}
.modal#lightboxModal .carousel-item{
  background:#020617;
  min-height:min(78vh, 820px);
}
.modal#lightboxModal .carousel-item img{
  width:100%;
  height:min(78vh, 820px);
  object-fit:contain;
  object-position:center;
  background:#020617;
}
@media (max-width:767px){
  .album-thumb{border-radius:14px;}
  .modal#lightboxModal .carousel-item,
  .modal#lightboxModal .carousel-item img{
    height:70vh;
    min-height:70vh;
  }
}

/* ===== PROJECT TABLE THUMBNAIL HOVER UPGRADE ===== */

.project-directory-table tbody td {
    transition: background-color 0.25s ease;
}

.project-directory-table tbody tr.project-row:hover td {
    background-color:#fcfdff;
}

.project-directory-table .project-title-thumb {
    overflow: hidden;
    border-radius: 16px;
}

.project-directory-table .project-title-thumb img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.project-directory-table tbody tr.project-row:hover .project-title-thumb img {
    transform: scale(1.16);
    filter: brightness(1.08);
}

/* Home Ongoing Projects */
.ongoing-projects-home {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.ongoing-project-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ongoing-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}
.ongoing-project-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e5e7eb;
}
.ongoing-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.ongoing-project-card:hover .ongoing-project-image img {
  transform: scale(1.06);
}
.ongoing-project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 54, 144, 0.92);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.ongoing-project-body {
  padding: 24px;
}
.ongoing-project-meta {
  color: #64748b;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.ongoing-project-title {
  font-size: 1.16rem;
  line-height: 1.45;
  margin-bottom: 12px;
}
.ongoing-project-title a {
  color: #0f172a;
  text-decoration: none;
}
.ongoing-project-title a:hover {
  color: #2e3690;
}
.ongoing-project-text {
  color: #475569;
  margin-bottom: 16px;
}
.ongoing-project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2e3690;
  font-weight: 700;
  text-decoration: none;
}
.ongoing-project-link:hover {
  color: #1f2a74;
}
@media (max-width: 767.98px) {
  .ongoing-projects-home-header .btn {
    display: none;
  }
  .ongoing-project-body {
    padding: 20px;
  }
}


/* About page refresh - aligned with site theme */
.about-hero-theme{
  background:
    radial-gradient(900px 340px at 15% 0%, rgba(29,78,216,.12), transparent 60%),
    radial-gradient(900px 340px at 85% 15%, rgba(14,165,233,.10), transparent 58%);
}
.about-hero-badge{
  display:inline-flex;
  align-items:center;
  padding:.5rem .85rem;
  border-radius:999px;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.04em;
}
.about-hero-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(148,163,184,.28);
  border-radius:24px;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  padding:1.25rem;
  display:grid;
  gap:12px;
}
.about-hero-stat{
  padding:1rem 1.05rem;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(219,234,254,.95);
}
.about-hero-stat strong{
  display:block;
  color:#0f172a;
  font-size:1.05rem;
  margin-bottom:.35rem;
}
.about-hero-stat span{
  display:block;
  color:#475569;
  font-size:.94rem;
  line-height:1.55;
}
.about-section-label{
  display:inline-block;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#2563eb;
  margin-bottom:.75rem;
}
.about-side-stack{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
}
.about-band-section{
  background:linear-gradient(180deg, rgba(248,250,252,.85) 0%, rgba(241,245,249,.9) 100%);
}
.about-timeline-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.about-timeline-item{
  background:#fff;
  border:1px solid rgba(148,163,184,.32);
  border-radius:22px;
  box-shadow:0 10px 25px rgba(15,23,42,.06);
  padding:1.25rem 1.15rem;
  height:100%;
}
.about-timeline-year{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:74px;
  padding:.4rem .8rem;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-weight:800;
  margin-bottom:.95rem;
}
.about-timeline-item h3{
  font-size:1.02rem;
  font-weight:800;
  margin-bottom:.45rem;
  color:#0f172a;
}
.about-timeline-item p{
  margin:0;
  color:#475569;
  line-height:1.65;
  font-size:.95rem;
}
.about-highlight-card{
  border-radius:22px;
  border:1px solid rgba(148,163,184,.32);
  box-shadow:0 10px 25px rgba(15,23,42,.06);
  transition:transform .18s ease, box-shadow .18s ease;
}
.about-highlight-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 34px rgba(15,23,42,.10);
}
.about-highlight-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:1.35rem;
  margin-bottom:1rem;
}
.about-highlight-card h3{
  font-size:1.05rem;
  font-weight:800;
  color:#0f172a;
  margin-bottom:.55rem;
}
.about-highlight-card p{
  margin:0;
  color:#475569;
  line-height:1.65;
}
@media (max-width: 991.98px){
  .about-timeline-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 575.98px){
  .about-timeline-grid{grid-template-columns:1fr;}
  .about-hero-card{padding:1rem;}
}


/* Homepage hero video + height refinement */
.hero{
  min-height:72vh;
  overflow:hidden;
}
.hero .section{
  min-height:72vh;
  display:flex;
  align-items:center;
  padding:78px 0 72px;
  position:relative;
  z-index:2;
}
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item{
  min-height:72vh;
}
.hero .carousel-item{
  position:relative;
  display:flex;
  align-items:center;
}
.hero .carousel-item > .row{
  width:100%;
  position:relative;
  z-index:2;
}
.hero::before,
.hero::after{
  filter: blur(.7px) brightness(.82);
  transform: scale(1.018);
}
.hero::before{
  background-image: linear-gradient(rgba(11,18,32,.54), rgba(11,18,32,.34)), var(--hero-bg, url("../img/hero/hero1.jpg"));
}
.hero-video-slide{
  position:relative;
  overflow:hidden;
}
.hero-video-slide .hero-content{
  position:relative;
  z-index:3;
}
.hero-video-layer{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:100vw;
  margin-left:-50vw;
  z-index:1;
  pointer-events:none;
  opacity:0;
  transition:opacity .45s ease;
  overflow:hidden;
}
.hero-video-layer::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(11,18,32,.60) 0%, rgba(11,18,32,.42) 38%, rgba(11,18,32,.28) 100%);
}
.hero-video-slide.active .hero-video-layer{opacity:1;}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:brightness(.74) blur(.15px);
  transform:scale(1.01);
}
.hero-content-video{
  max-width:720px;
  padding-bottom:0;
}
.hero-scroll-down{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  z-index:8;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  color:#fff;
  text-decoration:none;
  opacity:.96;
}
.hero-scroll-down:hover{color:#fff;opacity:1;transform:translateX(-50%) translateY(2px);}
.hero-scroll-text{font-size:13px;font-weight:700;letter-spacing:.04em;text-transform:none;text-shadow:0 4px 18px rgba(0,0,0,.45);}
.hero-scroll-mouse{width:24px;height:40px;border:2px solid rgba(255,255,255,.95);border-radius:999px;display:flex;justify-content:center;padding-top:6px;background:rgba(255,255,255,.03);}
.hero-scroll-wheel{width:4px;height:10px;border-radius:999px;background:#fff;animation:heroScrollWheel 1.5s ease-in-out infinite;}
@keyframes heroScrollWheel{0%{transform:translateY(0);opacity:1;}60%{transform:translateY(10px);opacity:.25;}100%{transform:translateY(0);opacity:1;}}
@media (min-width: 1200px){
  .hero,
  .hero .section,
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item{
    min-height:70vh;
  }
  .hero .section{
    padding-top:72px;
    padding-bottom:68px;
  }
}
@media (max-width: 991.98px){
  .hero,
  .hero .section,
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item{
    min-height:66vh;
  }
  .hero .section{
    padding:84px 0 72px;
  }
  .hero-video-layer::after{background:linear-gradient(180deg, rgba(11,18,32,.52) 0%, rgba(11,18,32,.42) 100%);}
  .hero-scroll-down{bottom:14px;}
}
@media (max-width: 576px){
  .hero,
  .hero .section,
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item{
    min-height:60vh;
  }
  .hero .section{
    padding:72px 0 66px;
  }
  .hero-video{filter:brightness(.66);}
  .hero-scroll-text{font-size:12px;}
  .hero-scroll-mouse{width:22px;height:36px;}
}

/* Final clean hero fix */
.hero{
  min-height: clamp(560px, 68vh, 700px);
}
.hero > .container.section{
  width: 100%;
  max-width: none;
  min-height: inherit;
  padding: 64px 0 82px;
}
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item{
  min-height: inherit;
}
.hero .carousel-item{
  width: 100%;
}
.hero .carousel-item > .row{
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
}
.hero-video-slide{
  overflow: visible;
}
.hero-video-layer{
  left: 0;
  width: 100%;
  margin-left: 0;
}
.hero-video-layer::after{
  background: linear-gradient(90deg, rgba(11,18,32,.56) 0%, rgba(11,18,32,.38) 42%, rgba(11,18,32,.24) 100%);
}
.hero-video{
  filter: brightness(.72) blur(.1px);
  transform: scale(1.005);
}
.hero::before,
.hero::after{
  filter: blur(.35px) brightness(.8);
  transform: scale(1.01);
}
.hero-content-video{
  max-width: 760px;
}
.hero-content h1{
  font-size: clamp(2.6rem, 3.8vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 1rem !important;
}
.hero-content p.lead{
  max-width: 760px;
  font-size: clamp(1rem, 1.2vw, 1.32rem);
}
.hero-scroll-down{
  bottom: 20px;
}
.hero-scroll-text{
  font-size: 12px;
}
.hero-scroll-mouse{
  width: 22px;
  height: 36px;
}
@media (min-width: 1400px){
  .hero .carousel-item > .row{
    max-width: 1400px;
    padding-left: 44px;
    padding-right: 44px;
  }
}
@media (max-width: 1199.98px){
  .hero{
    min-height: clamp(520px, 64vh, 640px);
  }
  .hero > .container.section{
    padding: 60px 0 78px;
  }
  .hero-content h1{
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  }
}
@media (max-width: 991.98px){
  .hero{
    min-height: 560px;
  }
  .hero > .container.section{
    padding: 72px 0 86px;
  }
  .hero .carousel-item > .row{
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-video-layer::after{
    background: linear-gradient(180deg, rgba(11,18,32,.54) 0%, rgba(11,18,32,.36) 100%);
  }
  .hero-scroll-down{
    bottom: 18px;
  }
}
@media (max-width: 575.98px){
  .hero{
    min-height: 500px;
  }
  .hero > .container.section{
    padding: 62px 0 84px;
  }
  .hero .carousel-item > .row{
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-content h1{
    font-size: clamp(2rem, 9.3vw, 2.9rem);
    line-height: 1.04;
  }
  .hero-content p.lead{
    font-size: 1rem;
  }
  .hero-scroll-text{
    font-size: 11px;
  }
}

/* Fix hero gap below navbar */
.hero > .container.section{
  padding-top: 0;
  padding-bottom: 0;
}
.hero .carousel-item{
  min-height: calc(100vh - 96px);
  display:flex;
  align-items:center;
}
@media (max-width: 991.98px){
  .hero .carousel-item{
    min-height: calc(100vh - 82px);
  }
}


/* Ultra hero upgrade */
#heroCarousel.carousel-fade .carousel-item{
  transition: opacity 1.2s ease-in-out;
}
.hero-video-slide .hero-video{
  transform: scale(1.02);
  transition: transform 15s ease;
}
.hero-video-slide.active .hero-video{
  transform: scale(1.08);
}
.hero-progress-wrap{
  position:absolute;
  left:0;
  right:0;
  bottom:28px;
  z-index:4;
  pointer-events:none;
  display:flex;
  justify-content:center;
  padding:0 24px;
}
.hero-progress-track{
  width:min(1120px, calc(100% - 32px));
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  overflow:hidden;
  box-shadow:0 10px 24px rgba(15,23,42,.18);
  backdrop-filter:blur(2px);
}
.hero-progress-bar{
  display:block;
  width:100%;
  height:100%;
  transform:scaleX(0);
  transform-origin:left center;
  background:linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.56));
}
@media (max-width: 991.98px){
  .hero-progress-wrap{bottom:18px;}
}


.accordion-button::after {
  display: none !important;
}

.accordion-button b {
  font-weight: 700;
  margin-right: 4px;
}

.scope-short {
  font-size: 13px;
  line-height: 1.5;
}

.scope-full {
  font-size: 13px;
  color: #555;
}

.hero-video-layer {
  pointer-events: none;
}

.hero-content,
.hero-content-video {
  position: relative;
  z-index: 5;
}
/* Hero brightness fix - make slide images clearer */
.hero::before{
  background-image:
    radial-gradient(1100px 520px at 14% 30%, rgba(29,78,216,.14), transparent 58%),
    linear-gradient(rgba(11,18,32,.22), rgba(11,18,32,.12)),
    var(--hero-bg, url("../img/hero/hero1.jpg"));
  filter: blur(.18px) brightness(.98) saturate(1.03) !important;
  transform: scale(1.006);
}
.hero::after{
  background-image:
    radial-gradient(1100px 520px at 14% 30%, rgba(29,78,216,.12), transparent 58%),
    linear-gradient(rgba(11,18,32,.20), rgba(11,18,32,.12)),
    var(--hero-bg-next, var(--hero-bg, url("../img/hero/hero1.jpg")));
  filter: blur(.18px) brightness(.98) saturate(1.03) !important;
  transform: scale(1.006);
}
.hero-video-layer::after{
  background: linear-gradient(90deg, rgba(11,18,32,.24) 0%, rgba(11,18,32,.14) 42%, rgba(11,18,32,.08) 100%) !important;
}
.hero-video{
  filter: brightness(.96) contrast(1.02) saturate(1.03) !important;
  transform: scale(1.004);
}
.hero-content h1,
.hero-content-video h1,
.hero-content p,
.hero-content-video p,
.hero .badge,
.hero .pill{
  text-shadow: 0 2px 10px rgba(0,0,0,.28);
}
@media (max-width: 991.98px){
  .hero-video-layer::after{
    background: linear-gradient(180deg, rgba(11,18,32,.26) 0%, rgba(11,18,32,.16) 100%) !important;
  }
}
@media (max-width: 575.98px){
  .hero::before,
  .hero::after{
    filter: blur(.1px) brightness(.99) saturate(1.02) !important;
  }
  .hero-video{
    filter: brightness(.98) contrast(1.02) saturate(1.02) !important;
  }
}

/* 2026-03-28 navbar size cleanup */
#mainNavbar{
  padding-top: .4rem;
  padding-bottom: .4rem;
}
#mainNavbar .navbar-brand{
  gap: .65rem !important;
  margin-right: 1.25rem;
}
#mainNavbar .nav-logo,
#mainNavbar .navbar-brand img{
  height: 85px !important;
  width: auto;
  display: block;
}
#mainNavbar .navbar-nav{
  gap: .2rem;
}
#mainNavbar .nav-link{
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .75rem .7rem;
}
#mainNavbar .dropdown-toggle::after{
  margin-left: .35rem;
}
@media (max-width: 991.98px){
  #mainNavbar{
    padding-top: .35rem;
    padding-bottom: .35rem;
  }
  #mainNavbar .nav-logo,
  #mainNavbar .navbar-brand img{
    height: 48px !important;
  }
}
@media (max-width: 575.98px){
  #mainNavbar .nav-logo,
  #mainNavbar .navbar-brand img{
    height: 40px !important;
  }
  #mainNavbar .nav-link{
    font-size: .86rem;
    letter-spacing: .03em;
  }
}


/* ===== PROJECT LIST TABLE STYLE (TITLE + YEAR) ===== */
.project-directory-table-list thead th:nth-child(2),
.project-directory-table-list thead th:nth-child(3),
.project-directory-table-list thead th:nth-child(5),
.project-directory-table-list thead th:nth-child(6),
.project-directory-table-list tbody td:nth-child(2),
.project-directory-table-list tbody td:nth-child(3),
.project-directory-table-list tbody td:nth-child(5),
.project-directory-table-list tbody td:nth-child(6){
  display:none;
}

.project-directory-table-list thead th{
  background:#f4f4f4;
  color:#3f3f46;
  font-size:.84rem;
  letter-spacing:0;
  text-transform:none;
  border-bottom:2px solid #d4d4d8;
  padding:12px 18px;
}

.project-directory-table-list thead th:first-child{
  width:auto;
}

.project-directory-table-list thead th:nth-child(4){
  width:180px;
  text-align:right;
}

.project-directory-table-list tbody td{
  padding:10px 18px;
  border-bottom:1px solid #e4e4e7;
  vertical-align:middle;
  background:#fff;
}

.project-directory-table-list tbody td:nth-child(4){
  text-align:right;
  white-space:nowrap;
  color:#52525b;
  font-weight:500;
}

.project-directory-table-list .project-title-wrap{
  gap:12px;
  align-items:center;
  min-width:0;
}

.project-directory-table-list .project-title-thumb{
  width:56px;
  height:56px;
  flex:0 0 56px;
  border-radius:8px;
  box-shadow:none;
  border:1px solid #e4e4e7;
}

.project-directory-table-list .project-title-thumb img{
  height:56px;
}

.project-directory-table-list .project-table-title,
.project-directory-table-list .project-table-title.project-title-link{
  color:#2f6b3d;
  font-size:1rem;
  font-weight:500;
  line-height:1.4;
  margin-bottom:0;
}

.project-directory-table-list .project-table-title.project-title-link:hover{
  color:#245730 !important;
  text-decoration:none;
}

.project-directory-table-list .project-table-submeta{
  display:none;
}

.project-directory-table-list tbody tr:hover,
.project-directory-table-list tbody tr.project-row:hover td{
  background:#fafaf9;
}

@media (max-width: 767.98px){
  .project-directory-table-list thead th:nth-child(4),
  .project-directory-table-list tbody td:nth-child(4){
    text-align:left;
    width:auto;
  }

  .project-directory-table-list tbody td{
    padding:12px 14px;
  }

  .project-directory-table-list .project-title-thumb{
    width:48px;
    height:48px;
    flex-basis:48px;
  }

  .project-directory-table-list .project-title-thumb img{
    height:48px;
  }
}


.scope-content {
  font-size: 14px;
  line-height: 1.6;
}
.scope-content strong {
  display:block;
  margin-top:8px;
  color:#1e293b;
}
.scope-content ul {
  margin:4px 0 8px 18px;
  padding:0;
}
.scope-content li {
  margin-bottom:2px;
}

/* ===== 2026 project media thumbnail premium UI ===== */
.album-thumb,
.media-thumb{
  position:relative;
  border-radius:18px !important;
  overflow:hidden;
  border:1px solid rgba(148,163,184,.28) !important;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%) !important;
  box-shadow:0 10px 24px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.75);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.album-thumb img,
.media-thumb img{
  border-radius:14px;
}

.album-thumb::before,
.media-thumb::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.68);
  pointer-events:none;
  z-index:2;
}

.album-thumb::after,
.media-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,0) 45%, rgba(15,23,42,.14) 100%);
  opacity:0;
  transition:opacity .22s ease;
  pointer-events:none;
  z-index:1;
}

.album-thumb:hover,
.media-thumb:hover{
  transform:translateY(-4px);
  border-color:rgba(37,99,235,.28) !important;
  box-shadow:0 18px 34px rgba(15,23,42,.12), 0 0 0 3px rgba(37,99,235,.06);
}

.album-thumb:hover::after,
.media-thumb:hover::after{
  opacity:1;
}

.media-thumb.active{
  outline:none !important;
  border-color:#2563eb !important;
  box-shadow:0 18px 34px rgba(37,99,235,.18), 0 0 0 3px rgba(37,99,235,.16);
}

.media-thumb .mini-pill{
  left:10px !important;
  bottom:10px !important;
  background:rgba(15,23,42,.88) !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.14);
  padding:4px 9px !important;
  font-size:.68rem !important;
  letter-spacing:.02em;
  box-shadow:0 8px 16px rgba(15,23,42,.18);
}

.media-nav-btn{
  background:#fff !important;
  border:1px solid rgba(148,163,184,.26) !important;
  box-shadow:0 10px 24px rgba(15,23,42,.10) !important;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.media-nav-btn:hover:not(:disabled){
  transform:translateY(-50%) scale(1.04) !important;
  border-color:rgba(37,99,235,.24) !important;
  box-shadow:0 14px 28px rgba(15,23,42,.14) !important;
}

@media (max-width:767px){
  .album-thumb,
  .media-thumb{border-radius:15px !important;}
  .album-thumb img,
  .media-thumb img{border-radius:12px;}
}


.scope-list li {
  font-size: 1.6rem;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.7;
  font-family: inherit;
}

/* 2026-04-01 navbar font update */
#mainNavbar .nav-link{
  font-family:'Montserrat', 'Inter', sans-serif;
  font-size:13px;
  font-weight:500;
  letter-spacing:1.1px;
  text-transform:uppercase;
  color:#3c332d;
}
#mainNavbar .nav-link::after{
  background:#7b5b3e;
  height:1.5px;
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active,
#mainNavbar .show > .nav-link{
  color:#7b5b3e;
}
@media (max-width: 575.98px){
  #mainNavbar .nav-link{font-size:12px;letter-spacing:.9px;}
}


/* 2026-04-01 hero manual arrow controls */
.hero .carousel{position:relative;}
.hero-carousel-control{display:flex !important;align-items:center;justify-content:center;position:absolute;top:50%;transform:translateY(-50%);width:72px;height:92px;border:none;opacity:1;z-index:8;background:rgba(98,110,122,.38);backdrop-filter:blur(2px);transition:background .25s ease, transform .25s ease;}
.hero-carousel-control:hover{background:rgba(98,110,122,.56);transform:translateY(-50%) scale(1.02);}
.hero-carousel-control:focus{opacity:1;}
.hero-carousel-control.carousel-control-prev{left:18px;}
.hero-carousel-control.carousel-control-next{right:18px;}
.hero-carousel-icon{display:grid;place-items:center;width:100%;height:100%;font-size:54px;line-height:1;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.18);}
.hero-carousel-control .carousel-control-prev-icon,.hero-carousel-control .carousel-control-next-icon{display:none !important;}
@media (max-width: 991px){.hero-carousel-control{width:56px;height:74px;}.hero-carousel-icon{font-size:42px;}.hero-carousel-control.carousel-control-prev{left:10px;}.hero-carousel-control.carousel-control-next{right:10px;}}
@media (max-width: 575px){.hero-carousel-control{width:48px;height:64px;}.hero-carousel-icon{font-size:34px;}}



/* =========================
   FINAL NAVBAR FONT FIX
   Keep home navbar same as inner pages
   ========================= */

#mainNavbar .navbar-nav{
  display: flex;
  align-items: center;
  gap: .2rem !important;
}

#mainNavbar .nav-link,
#mainNavbar .dropdown-toggle,
#mainNavbar .navbar-nav .nav-link,
#mainNavbar .navbar-nav .dropdown-toggle{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: .88rem !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  word-spacing: normal !important;
  font-stretch: normal !important;
  white-space: nowrap !important;
  transform: none !important;
  text-rendering: geometricPrecision;
}

#mainNavbar .nav-item{
  flex: 0 0 auto;
}

#mainNavbar .navbar-collapse{
  flex-grow: 0;
}

#mainNavbar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#mainNavbar .navbar-nav.ms-auto{
  margin-left: auto !important;
}

/* prevent page-specific CSS from stretching nav on home */
body.home-page #mainNavbar .nav-link,
body.home-page #mainNavbar .dropdown-toggle,
body.home-page #mainNavbar .navbar-nav .nav-link{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  letter-spacing: .04em !important;
  word-spacing: normal !important;
  transform: none !important;
}

/* desktop spacing cleanup */
@media (min-width: 992px){
  #mainNavbar .nav-link{
    padding: .75rem .7rem !important;
  }
}

/* mobile stays clean */
@media (max-width: 991.98px){
  #mainNavbar .navbar-collapse{
    flex-grow: 1;
  }

  #mainNavbar .navbar-nav{
    gap: 0 !important;
    align-items: flex-start;
  }

  #mainNavbar .nav-link,
  #mainNavbar .dropdown-toggle{
    font-size: .9rem !important;
    letter-spacing: .03em !important;
    white-space: normal !important;
  }
}

/* 2026-04-02 hero arrow centering + text animation */
.hero .carousel{
  position:relative;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:12;
  width:58px;
  height:58px;
  border:none;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  background:rgba(11,18,32,.34);
  color:#fff;
  backdrop-filter:blur(6px);
  box-shadow:0 10px 30px rgba(2,6,23,.22);
  transition:opacity .25s ease, background .25s ease, transform .25s ease;
}
.hero-arrow:hover{
  background:rgba(11,18,32,.56);
  transform:translateY(-50%) scale(1.04);
}
.hero-arrow:focus-visible{
  outline:2px solid rgba(255,255,255,.9);
  outline-offset:3px;
}
.hero-arrow span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  line-height:1;
  font-size:38px;
  transform:translateY(-1px);
}
.hero-arrow-prev{left:24px;}
.hero-arrow-next{right:24px;}

@media (max-width: 991.98px){
  .hero-arrow{
    width:48px;
    height:48px;
  }
  .hero-arrow span{font-size:30px;}
  .hero-arrow-prev{left:12px;}
  .hero-arrow-next{right:12px;}
}

@media (max-width: 575.98px){
  .hero-arrow{
    width:42px;
    height:42px;
  }
  .hero-arrow span{font-size:26px;}
}

.hero-content > *,
.hero-content-video > *{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
  will-change:opacity, transform;
}

.hero-content.is-visible > *,
.hero-content-video.is-visible > *{
  opacity:1;
  transform:translateY(0);
}

.hero-content.is-visible > *:nth-child(1),
.hero-content-video.is-visible > *:nth-child(1){transition-delay:.05s;}
.hero-content.is-visible > *:nth-child(2),
.hero-content-video.is-visible > *:nth-child(2){transition-delay:.16s;}
.hero-content.is-visible > *:nth-child(3),
.hero-content-video.is-visible > *:nth-child(3){transition-delay:.28s;}
.hero-content.is-visible > *:nth-child(4),
.hero-content-video.is-visible > *:nth-child(4){transition-delay:.4s;}

@media (prefers-reduced-motion: reduce){
  .hero-arrow,
  .hero-content > *,
  .hero-content-video > *{
    transition:none !important;
    animation:none !important;
  }
  .hero-content > *,
  .hero-content-video > *{
    opacity:1 !important;
    transform:none !important;
  }
}



/* 2026-04-02 mobile navbar fix */
@media (max-width: 991.98px){
  #mainNavbar{
    padding-top:.35rem !important;
    padding-bottom:.35rem !important;
  }

  #mainNavbar .nav-logo,
  #mainNavbar .navbar-brand img{
    height:40px !important;
    width:auto !important;
  }

  #mainNavbar .navbar-collapse,
  #mainNavbar .navbar-collapse.collapsing,
  #mainNavbar .navbar-collapse.show{
    width:min(82vw,360px) !important;
    max-width:360px !important;
    padding:5.25rem 1.5rem 2rem !important;
    background:#0c3ea8 !important;
    border-radius:20px 0 0 20px !important;
    box-shadow:-16px 0 40px rgba(15,23,42,.28) !important;
  }

  #mainNavbar .navbar-nav,
  #mainNavbar .navbar-nav.ms-auto{
    width:100%;
    margin-left:0 !important;
    align-items:flex-start !important;
  }

  #mainNavbar .nav-link,
  #mainNavbar .dropdown-toggle,
  #mainNavbar .navbar-nav .nav-link,
  #mainNavbar .navbar-nav .dropdown-toggle,
  body.home-page #mainNavbar .nav-link,
  body.home-page #mainNavbar .dropdown-toggle,
  body.home-page #mainNavbar .navbar-nav .nav-link{
    display:block;
    width:100%;
    color:#ffffff !important;
    font-size:1rem !important;
    font-weight:700 !important;
    letter-spacing:.08em !important;
    text-transform:uppercase !important;
    white-space:normal !important;
    padding:1rem 0 !important;
    line-height:1.35 !important;
  }

  #mainNavbar .nav-link:hover,
  #mainNavbar .nav-link:focus,
  #mainNavbar .nav-link.active,
  #mainNavbar .show > .nav-link{
    color:#ffffff !important;
    opacity:1 !important;
  }

  #mainNavbar .nav-link::after{
    background:#8eb6ff !important;
    width:34px !important;
    left:0 !important;
    right:auto !important;
    bottom:.35rem !important;
  }

  #mainNavbar .dropdown-toggle::after,
  #mainNavbar .nav-home-dropdown .dropdown-menu{
    display:none !important;
  }
}


/* FINAL HERO FIX */

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
  linear-gradient(90deg,
    rgba(11,18,32,.85) 0%,
    rgba(11,18,32,.65) 35%,
    rgba(11,18,32,.35) 65%,
    transparent 100%
  ),
  var(--hero-bg, url("../img/hero/hero1.jpg"));
  background-size:cover;
  background-position:center;
  z-index:0;
  filter: brightness(.85);
}

/* TEXT FIX */
.hero-content,
.hero-content-video{
  position: relative;
  z-index: 10;
}

.hero .badge{
  background: rgba(15,23,42,.75) !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.25);
}

.hero-content h1,
.hero-content p.fs-4{
  color:#ffffff !important;
  font-weight:800;
  text-shadow: 0 8px 30px rgba(0,0,0,.65);
}

.hero-content .lead{
  color: rgba(255,255,255,.95) !important;
  text-shadow: 0 4px 20px rgba(0,0,0,.55);
}

/* ARROW CENTER FIX */
#heroCarousel .hero-arrow{
  top:50% !important;
  transform:translateY(-50%);
}

