:root{
  --navy:#002156;
  --navy-dark:#002156;
  --brand-blue:#0b2f86;
  --brand-red:#df1f2d;
  --brand-mist:#f4f7fc;
  --heading:#111111;
  --para:#444444;
  --subtext:#333333;
  --light:#f7f7f7;
  --border:#d4d4d4;
  --serif:'Playfair Display', Georgia, serif;
  --sans:'Inter', Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  font-size:16px;
  line-height:28px;
  color:var(--para);
  background:#fff;
  font-weight:400;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* Figma typography */
h1,h2,h3{font-family:var(--serif);color:var(--heading);margin:0}
h1{font-weight:600;font-size:48px;line-height:60px;letter-spacing:0}
h2{font-weight:500;font-size:24px;line-height:36px;letter-spacing:.08em}
h3{font-weight:400;font-size:20px;line-height:30px;letter-spacing:.08em}
p{font-weight:400;font-size:16px;line-height:28px;letter-spacing:0;color:var(--para);margin:0}

.page-pad{padding-left:70px;padding-right:70px}
.narrow-pad{padding-left:100px;padding-right:100px}
.section-space{padding:72px 0}

.site-header{position:absolute;z-index:20;width:100%}
.koodo-navbar{padding:18px 0;background:transparent;transition:.25s ease}
.koodo-navbar.scrolled{padding:8px 0}
/* Background + blur live on a ::before layer, not on .koodo-navbar itself — backdrop-filter on
   a real ancestor of the offcanvas panel redefines its containing block and breaks its fixed
   positioning once scrolled (or on about-body pages, where the blur is always on). */
.koodo-navbar::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  transition:.25s ease;
  background:transparent;
}
.koodo-navbar.scrolled::before{background:white;backdrop-filter:blur(12px)}
.brand-logo {
  width: 210px;
  height: auto;
  position: relative;
  z-index: 2;
  transition: width 0.25s ease, transform 0.25s ease;
}
.koodo-navbar.scrolled .brand-logo {
  width: 155px;
}

.navbar-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

a.navbar-brand::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 120px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}

.koodo-navbar.scrolled a.navbar-brand::before {
  width: 220px;
  height: 100px;
  opacity: 0.8;
}

.navbar-dark .navbar-nav .nav-link{
  color:#fff;
  font-family:var(--sans);
  font-size:16px;
  line-height:24px;
  font-weight:400;
  letter-spacing:0;
  padding:0;
  text-shadow:0 1px 3px rgba(0,0,0,.35);
}

 .navbar-dark.scrolled .navbar-nav .nav-link{
  color:var(--heading);
  text-shadow:none;
}


.navbar-dark .navbar-nav .nav-link:hover{color:var(--navy);opacity:.75;}
.navbar-toggler{border:0;box-shadow:none!important;}
.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%28255, 255, 255, 0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}
.koodo-navbar.scrolled .navbar-toggler-icon,
body.home-body .navbar-toggler-icon,
body.about-body .navbar-toggler-icon,
body.legal-body .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%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

/* Desktop nav sits inside a translucent pill; the current page is a filled pill. */
@media (min-width:992px){
  /* Pill is absolutely centred on the container so the logo width doesn't offset it.
     min-height keeps the bar taller than the pill, so it can never spill out of the
     sticky navbar once the logo shrinks on scroll. */
  .koodo-navbar > .container-fluid{position:relative;min-height:56px}
  .koodo-navbar .offcanvas-body{display:flex;justify-content:center}
  .koodo-navbar .navbar-nav{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(1px) saturate(140%);
    -webkit-backdrop-filter:blur(1px) saturate(140%);
    border:1px solid rgba(255,255,255,.35);
    box-shadow:0 8px 28px rgba(0,0,0,.12),inset 0 1px 0 rgba(255,255,255,.45);
    border-radius:999px;
    padding:6px 8px;
    gap:4px!important;
    flex-grow:0!important;
    /* left + transform are both animatable, so the pill can slide from centre to the right. */
    transition:left .4s cubic-bezier(.4,0,.2,1),transform .4s cubic-bezier(.4,0,.2,1);
  }
  /* Sticky: slide right, but held 60px clear of the container edge. */
  .koodo-navbar.scrolled .navbar-nav{
    left:100%;
    transform:translate(calc(-100% - 60px),-50%);
  }
  .koodo-navbar .navbar-nav .nav-link,
  .koodo-navbar.scrolled .navbar-nav .nav-link{
    color:var(--heading);
    text-shadow:none;
    white-space:nowrap;
    padding:10px 24px;
    border-radius:999px;
    transition:background .2s ease,color .2s ease;
  }
  .koodo-navbar .navbar-nav .nav-link:hover{background:rgba(0,33,86,.08);color:var(--navy);opacity:1}
  .koodo-navbar .navbar-nav .nav-link.active,
  .koodo-navbar .navbar-nav .nav-link.active:hover{background:var(--navy);color:#fff}
}


.hero-section{position:relative;min-height:407px;height:52vw;max-height:690px;background:url('../../images/homepage-banner.jpeg') center/cover no-repeat;display:flex;align-items:center}
/* Mobile gets its own portrait crop of the home banner. */
@media (max-width:767px){
  .hero-section{background-image:url('../images/hero-mob-3.jpeg')}
  /* That mobile crop is dark, so the homepage hamburger goes white until it sticks. */
  body.home-body .koodo-navbar:not(.scrolled) .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%28255, 255, 255, 0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
  }
}

@media (max-width: 991.98px) {
    body.home-body .koodo-navbar:not(.scrolled) .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%280, 0, 0, 0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

.hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.34),rgba(0,0,0,.08) 45%,rgba(0,0,0,.12))}
.hero-inner{position:relative;z-index:2;padding-top:2px;}
.hero-inner h1{color:#fff;text-shadow:0 2px 6px rgba(0,0,0,.35);}
.hero-inner p{color:#fff;text-shadow:0 2px 6px rgba(0,0,0,.35);}
.hero-intro{display:none}

.section-head{margin-bottom:42px;text-align:center}
.section-head span,.eyebrow,.section-head h2{text-transform:capitalize}
.section-head span,.eyebrow{
  display:block;
  font-family:var(--sans);
  font-size:16px;
  line-height:28px;
  color:var(--subtext);
  margin-bottom:14px;
  font-weight:400;
  letter-spacing:0;
}
.section-head h2,.partnership-copy h2,.cta-section h2{color:var(--heading)}

.slider-toolbar{display:flex;justify-content:flex-end;gap:9px;margin-top:-45px;margin-bottom:34px}
.circle-btn{width:31px;height:31px;border:1px solid var(--navy);border-radius:50%;background:#fff;color:var(--navy);display:grid;place-items:center;font-size:13px;line-height:1;transition:.2s ease}
.circle-btn:hover{background:var(--navy);color:#fff}

.services-section{background:#f8f8f8;padding-top:58px;padding-bottom:82px;overflow:hidden}

.service-card img{width:100%;height:337px;object-fit:cover;margin-bottom:24px}
.service-card h3,.philosophy-card h3{margin:0 0 14px;color:var(--heading)}
.service-card h3,.philosophy-card h3{text-align:center}
.service-card p,.philosophy-card p,.partnership-copy p,.footer-about p{color:var(--para)}

.primary-btn,.secondary-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:132px;
  justify-content:center;
  height:42px;
  padding:0 24px;
  background:var(--navy);
  color:#fff;
  font-family:var(--sans);
  font-size:18px;
  line-height:1;
  font-weight:400;
  letter-spacing:0;
  border:1px solid var(--navy);
  transition:.22s ease
}
.primary-btn:hover{background:#fff;color:var(--navy)}
.primary-btn span, .secondary-btn span {line-height: 1;}



.btn-with-icon {
  gap: 12px;
}

.btn-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
}

.btn-icon img {
  position: absolute;
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition: opacity 0.22s ease;
}

.btn-icon .icon-default {
  opacity: 1;
}

.btn-icon .icon-hover {
  opacity: 0;
}

.primary-btn:hover .btn-icon .icon-default,
.secondary-btn:hover .btn-icon .icon-default {
  opacity: 0;
}

.primary-btn:hover .btn-icon .icon-hover,
.secondary-btn:hover .btn-icon .icon-hover {
  opacity: 1;
}



.partnership-section{background:#fff;padding-top:84px;padding-bottom:78px}
.partnership-wrap{position:relative;display:grid;grid-template-columns:1fr 1fr;align-items:center}
.partnership-copy{background:#fafafa;padding:42px 150px 38px 34px;min-height:260px;position:relative;z-index:2}
.partnership-copy h2{margin-bottom:25px;text-align:center}
.partnership-copy .eyebrow{text-align:center}
.partnership-copy p{max-width:535px}
.read-link{display:inline-block;margin-top:17px;font-size:16px;line-height:28px;color:var(--navy);font-weight:400}
.partnership-image{margin-left:-74px;position:relative;z-index:3}
.partnership-image img{width:100%;height:auto}

.philosophy-section{background:#fff;padding-top:50px;padding-bottom:72px}
.philosophy-section .section-head{margin-bottom:38px}
.philosophy-section .section-head h2{text-transform:capitalize}
.philosophy-arrows{margin-top:-50px;margin-bottom:36px}

.philosophy-card img{width:100%;height:350px;object-fit:cover;margin-bottom:23px}
.philosophy-card h3{margin-bottom:14px}



.koodo-splide {
  position: relative;
}

.koodo-splide .splide__track {
  overflow: hidden;
}

.koodo-splide .splide__list {
  align-items: stretch;
}

.koodo-splide .splide__slide {
  height: auto;
}

.koodo-splide .service-card,
.koodo-splide .philosophy-card {
  height: 100%;
}



.koodo-splide .splide__pagination {
  display: none;
}

/* Lift the arrow toolbar out of the flow and sit it beside the section heading,
   vertically centred on the h2 line rather than dropping below it. */
.koodo-splide .slider-toolbar {
  position: absolute;
  right: 0;
  bottom: calc(100% + 44px);
  margin: 0;
  z-index: 3;
}

.koodo-splide .splide__arrow {
  position: static;
  transform: none;
  opacity: 1;
}

.koodo-splide .splide__arrow svg {
  display: none;
}

/* Mobile: swipe only — the arrow toolbar is hidden. */
@media (max-width:767px) {

  .koodo-splide .slider-toolbar {
    display: none;
  }
}

.koodo-splide .splide__arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.services-splide .service-card,
.philosophy-splide .philosophy-card {
  min-width: 0;
}

.service-card img {
  width: 100%;
  height: 337px;
  object-fit: cover;
  margin-bottom: 24px;
}

.philosophy-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 23px;
  object-position: right;
}




.cta-section{background:var(--navy-dark);color:#fff;padding:54px 0 55px}
.cta-section h2{color:#fff;margin-bottom:16px}
.cta-section p{color:#fff;margin:0 0 28px}
.secondary-btn{background:#fff;color:var(--navy);border-color:#fff;height:41px}
.secondary-btn:hover{background:transparent;color:#fff}

.site-footer{padding:42px 0 17px;background:#fff;color:var(--subtext)}
.site-footer *{
  font-family:var(--sans);
  font-weight:400;
  font-size:14px;
  line-height:1;
  letter-spacing:0;
  color:var(--subtext)
}
.site-footer i,.circle-btn i,.primary-btn i,.secondary-btn i{font-family:'Font Awesome 7 Free'}
.site-footer .fa-brands{font-family:'Font Awesome 7 Brands'}
.footer-top{display:flex;justify-content:space-between;gap:30px;align-items:flex-start;border-bottom:1px solid #c9c9c9;padding-bottom:24px}
.footer-logo{width:210px;margin-bottom:18px}
.footer-about{max-width:300px}
.footer-about p{font-size:14px;line-height:1.45;color:var(--subtext)}
.footer-arn{margin:0}
.footer-links-wrap{text-align:right;padding-top:15px}
.footer-links{display:flex;list-style:none;padding:0;margin:0 0 45px;gap:24px;justify-content:flex-end}
.footer-links a{color:var(--subtext)}
.social-row{display:flex;align-items:center;justify-content:flex-end;gap:14px;color:var(--subtext)}
.social-row a{width:16px;height:16px;color:var(--navy);display:inline-grid;place-items:center;line-height:1}
.social-row a i{font-size:16px;color:var(--navy)}
.footer-bottom{display:grid;grid-template-columns:1fr 1fr 1fr;align-items:center;padding-top:17px;color:var(--subtext)}
.footer-bottom a{margin-right:14px}
.footer-bottom p{text-align:center;margin:0;color:var(--subtext);grid-column:2}

@media (min-width:1440px){
  .hero-section{height:650px}
  .brand-logo{width:185px}
  .koodo-navbar.scrolled .brand-logo {width: 150px;}
  .service-card img{height:395px}
  .partnership-image img{height:auto}
  .philosophy-card img{height:350px}
  .page-pad{padding-left:80px;padding-right:80px}
  .narrow-pad{padding-left:180px;padding-right:180px}
}
@media (max-width:991px){
  .page-pad,.narrow-pad{padding-left:24px;padding-right:24px}
  .koodo-navbar{padding:10px 0}
  .brand-logo,
  .koodo-navbar.scrolled .brand-logo {width: 199px;}
  a.navbar-brand::before,
  .koodo-navbar.scrolled a.navbar-brand::before {width: 180px;height: 80px;}
  .offcanvas-lg{
    --bs-offcanvas-width: 300px;
    background:#fffffa;
  }
  .offcanvas-header{
    position:absolute;
    top:0;
    right:0;
    z-index:1;
    border-bottom:0;
  }
  .offcanvas-title{font-family:var(--serif);font-size:20px;color:var(--heading)}
  .koodo-navbar .offcanvas-body .nav-link{
    color:var(--heading);
    text-shadow:none;
    padding:10px 0;
  }
  .koodo-navbar .offcanvas-body .nav-link:hover{color:var(--navy);opacity:.75}
  .navbar-nav{gap:6px!important}
  .hero-section{height:620px;min-height:620px;background-position:center}
  .hero-lede{display:none}
  .hero-intro{display:block;background:#fafafa;padding:32px 0}
  .hero-intro p{margin:0;color:var(--subtext)}
  .slider-toolbar{margin-top:-20px;margin-bottom:24px}
  .service-card{flex-basis:330px}
  /* Stacked order: heading, image, then the body copy. display:contents lifts the
     head/body blocks out of .partnership-copy so they can be ordered against the
     image, which is their uncle in the markup. */
  .partnership-wrap{grid-template-columns:1fr;gap:0}
  .partnership-copy{display:contents}
  .partnership-head{order:1}
  .partnership-image{order:2;margin-left:0}
  .partnership-body{order:3}
  .partnership-head,.partnership-body{padding:0 22px}
  .partnership-body{background:#fafafa}
  /* Eyebrow + title sit on the plain page background, not the grey block. */
  .partnership-head{background:none;padding-top:0;padding-bottom:24px}
  .partnership-section,.philosophy-section{padding-top:0}
  .partnership-body{padding-top:24px;padding-bottom:34px}
  .partnership-body p + p{margin-top:16px}
  /* Full-bleed: no white gutter beside the block or the image. */
  .partnership-section > .page-pad{padding-left:0;padding-right:0}
  .partnership-image img{height:auto;width:100%}
  .philosophy-grid{display:flex;overflow-x:auto;gap:22px;scroll-behavior:smooth;scrollbar-width:none}
  .philosophy-grid::-webkit-scrollbar{display:none}
  .philosophy-card{min-width:310px}
  .footer-top{flex-direction:column}
  .footer-links-wrap{text-align:left;width:100%}
  .footer-links{justify-content:flex-start;flex-wrap:wrap;margin-bottom:22px}
  .social-row{justify-content:flex-start}
  .footer-bottom{grid-template-columns:1fr;gap:10px}
  .footer-bottom p{text-align:left;grid-column:auto}
}
@media (max-width:575px){
  body{font-size:16px;line-height:28px}
  h1{font-size:38px;line-height:48px}
  h2{font-size:22px;line-height:32px}
  .section-space{padding:55px 0}
  .hero-section{height:560px;min-height:560px;background-position:54% center}
  /* .hero-inner{padding-top:105px} */
  .services-section{padding-top:50px}
  .service-card{min-width:275px;flex-basis:275px}
  .service-card img{height:315px}
  .partnership-copy{padding:28px 22px}
  .philosophy-card{min-width:275px}
  .philosophy-card img{height:280px}
  .footer-links{gap:14px}
  .page-pad,.narrow-pad{padding-left:18px;padding-right:18px}
}

/* ===== About Us CSS Start ===== */
.about-page{font-family:'Inter',system-ui,sans-serif;color:#111111;overflow:hidden}
.about-page section{box-sizing:border-box}
.about-page img{max-width:100%}

.about-faq{background:#ffffff;padding:clamp(56px,6vw,80px) clamp(24px,5.5vw,80px)}
.about-faq details{background:#fafafa;border:0.6px solid rgba(0,0,0,0.1)}
.about-faq summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:13px 16px}
.about-faq summary::-webkit-details-marker{display:none}
.about-faq summary .q{font-family:'Playfair Display',serif;font-weight:400;font-size:16px;line-height:24px;color:#111111}
.about-faq .ic{position:relative;flex:none;width:24px;height:24px;border-radius:9999px;background:#002156}
.about-faq .ic::before,.about-faq .ic::after{content:"";position:absolute;left:50%;top:50%;background:#fff;transform:translate(-50%,-50%)}
.about-faq .ic::before{width:10px;height:1.6px}
.about-faq .ic::after{width:1.6px;height:10px;transition:opacity .15s ease}
.about-faq details[open] .ic::after{opacity:0}
.about-faq .answer{padding:0 16px 16px}
.about-faq .answer p{font-size:16px;line-height:28px;color:#333333;margin:0;max-width:695px}
.about-faq-eyebrow{text-align:center;font-size:16px;line-height:28px;letter-spacing:0.64px;color:#333333;margin:0 0 12px}
.about-faq-title{text-align:center;font-family:'Playfair Display',serif;font-weight:500;font-size:24px;line-height:36px;letter-spacing:0.96px;color:#111111;margin:0 0 clamp(36px,4vw,48px)}
.about-faq-list{max-width:735px;margin:0 auto;display:flex;flex-direction:column;gap:16px}

/* About page has a light hero, so the navbar must stay solid (it is transparent/white-text by default for the dark home hero). */
body.about-body .koodo-navbar::before{background:rgba(255,255,255,0.92);backdrop-filter:blur(12px)}
body.about-body .koodo-navbar .nav-link{color:var(--heading,#111);text-shadow:none}
body.about-body .koodo-navbar .nav-link:hover{color:#002156;opacity:.75}

.about-hero{background:#fffffa;padding:clamp(104px,9vw,140px) clamp(24px,5.5vw,80px) clamp(48px,6vw,72px)}
.about-hero-eyebrow{display:block;font-size:16px;line-height:24px;color:#333333;margin-bottom:24px}
.about-hero-title{font-family:'Playfair Display',serif;font-weight:600;font-size:clamp(34px,4.6vw,48px);line-height:1.25;color:#111111;max-width:505px;margin:0 0 24px}
.about-hero-text{font-size:16px;line-height:28px;letter-spacing:0.64px;color:#333333;max-width:687px;margin:0}
.about-hero-media{margin-top:clamp(40px,5vw,64px);border-radius:12px;overflow:hidden;box-shadow:0 28px 64px rgba(17,33,64,0.12)}
.about-hero-media img{display:block;width:100%;height:clamp(220px,29vw,428px);object-fit:cover}

.about-company{background:#fafafa;padding:clamp(56px,6vw,80px) clamp(24px,5.5vw,80px)}
.about-company-row{display:flex;flex-wrap:wrap;gap:clamp(40px,4vw,54px);align-items:flex-start}
.about-company-text{flex:1 1 520px;min-width:280px;max-width:738px}
.about-company-eyebrow{font-size:16px;line-height:24px;color:#333333;margin:0 0 16px}
.about-company-title{font-family:'Playfair Display',serif;font-weight:500;font-size:24px;line-height:36px;letter-spacing:0.96px;color:#111111;max-width:415px;margin:0 auto 28px;text-align:center}
.about-company-text p{font-size:16px;line-height:28px;color:#444444;margin:0 0 24px}
.about-company-text p:last-of-type{margin:0}
.about-company-media{flex:0 1 484px;min-width:280px}
.about-company-media img{display:block;width:100%;height:auto;object-fit:cover}

.about-approach{background:#ffffff;padding:0 clamp(24px,5.5vw,80px) clamp(56px,6vw,80px)}
.about-approach-wrap{max-width:1380px;margin:0 auto;padding-top:34px}
.about-approach-wrap img{display:block;width:100%;height:clamp(280px,29vw,416px);object-fit:cover}
.about-approach-card{width:min(596px,100%);margin-left:auto;margin-top:clamp(-180px,-13vw,-122px);position:relative;background:#ad0a1d;color:#ffffff;padding:clamp(28px,3vw,40px)}
.about-approach-eyebrow{font-size:16px;line-height:24px;color:rgba(255,255,255,0.95);margin:0 0 24px}
.about-approach-title{font-family:'Playfair Display',serif;font-weight:500;font-size:24px;line-height:36px;letter-spacing:0.96px;color:#ffffff;margin:0 0 24px}
.about-approach-text{font-size:16px;line-height:28px;color:#ffffff;max-width:540px;margin:0 0 20px}
.about-approach-text:last-child{margin-bottom:0}

.about-vm{background:#ffffff;padding:0 clamp(24px,5.5vw,80px) clamp(56px,6vw,80px)}
.about-vm-wrap{max-width:1380px;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(24px,3vw,34px)}
.about-vm-card{background:#fafafa;border:0.6px solid rgba(0,0,0,0.1);padding:clamp(28px,3vw,40px);text-align:center}
.about-vm-card h3{font-family:'Playfair Display',serif;font-weight:500;font-size:24px;line-height:36px;letter-spacing:0.96px;color:#111111;margin:0 0 20px}
.about-vm-card p{font-size:16px;line-height:28px;color:#444444;margin:0}
@media (max-width:767px){
  .about-vm-wrap{grid-template-columns:1fr}
}

.about-team{background:#fafafa;padding:clamp(56px,6vw,80px) clamp(24px,5.5vw,80px)}
.about-team-eyebrow{text-align:center;font-size:16px;line-height:28px;letter-spacing:0.64px;color:#333333;margin:0 0 18px}
.about-team-title{text-align:center;font-family:'Playfair Display',serif;font-weight:500;font-size:clamp(22px,2.4vw,28px);line-height:1.7;letter-spacing:0.96px;color:#111111;max-width:900px;margin:0 auto}
.about-team-title img{display:inline-block;width:88px;height:50px;object-fit:cover;border-radius:8px;vertical-align:middle;margin:0 10px}
.about-team-title img:first-of-type{transform:rotate(-11deg)}
.about-team-title img:last-of-type{transform:rotate(10deg)}
.about-team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:24px;max-width:1280px;margin:clamp(40px,5vw,52px) auto 0}
.about-team-member{text-align:center}
.about-team-member img{display:block;width:60%;margin:0 auto;aspect-ratio:305/319;object-fit:cover;object-position:top}
.about-team-member h4{font-family:'Playfair Display',serif;font-weight:400;font-size:20px;line-height:30px;letter-spacing:1.6px;color:#111111;margin:16px 0 6px}
.about-team-member p{font-size:16px;line-height:24px;color:#333333;margin:0}

.about-contact{background:#002156;color:#ffffff;text-align:center;padding:clamp(48px,5vw,56px) clamp(24px,5.5vw,80px) clamp(48px,5vw,60px)}
.about-contact h2{font-family:'Playfair Display',serif;font-weight:500;font-size:clamp(24px,2.6vw,28px);line-height:36px;letter-spacing:1.92px;color:#ffffff;margin:0 0 16px}
.about-contact p{font-size:16px;line-height:24px;color:#ffffff;max-width:604px;margin:0 auto 36px}
.about-contact-btn{display:inline-flex;align-items:center;white-space:nowrap;gap:12px;background:#ffffff;color:#002156;font-size:18px;line-height:24px;text-decoration:none;padding:12px 30px}
.about-contact-btn svg{display:block}

@media (max-width:575px){
  .about-team-member img{width:73%;margin:0 auto}
}
/* ===== About Us CSS End ===== */

/* ===== Services CSS Start ===== */
.services-page{overflow:hidden}

.services-hero{position:relative;min-height:204px;height:35vw;background:url('../images/services-banner-1.jpeg') center/cover no-repeat;display:flex;align-items:center}
/*.services-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.4),rgba(0,0,0,.1) 45%,rgba(0,0,0,.15))}*/
.services-hero-inner{position:relative;z-index:2;padding-top:80px;padding-left:70px}
.services-hero-inner h1{color:#fff;text-shadow:0 2px 6px rgba(0,0,0,.35);max-width:460px}
.services-hero-inner .hero-lede{color:#fff;text-shadow:0 2px 6px rgba(0,0,0,.35);max-width:560px;margin-top:16px}
.page-image-hero-about{background-image:url('../../images/about-us-banner.jpeg')}
.page-image-hero-career{background-image:url('../images/career.jpeg')}
.page-image-hero-contact{background-image:url('../../images/contact-us.jpeg')}

/* ===== Light banner pages (home, about, services): black banner text ===== */
body.light-hero-body .hero-inner h1,
body.light-hero-body .hero-inner p,
body.light-hero-body .services-hero-inner h1,
body.light-hero-body .services-hero-inner .hero-lede{color:var(--heading);text-shadow:none}

/* Mobile only: services + about banners get the same blue overlay the career and
   contact banners use, so the hero copy stays readable on the cropped image.
   Drawn as ::before because the overlay div itself is commented out in the markup. */
@media (max-width:767px){
  body.light-hero-body .services-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    /*background:linear-gradient(90deg,rgba(40,40,40,.82),rgba(60,60,60,.36) 58%,rgba(90,90,90,.16));*/
  }
  body.light-hero-body .services-hero-inner h1,
  body.light-hero-body .services-hero-inner .hero-lede{color:black}
}

.services-grid-section{background:#fff}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px 34px}
.services-grid .service-card img{height:270px}

.services-why{background:#fafafa}
.services-why-wrap{display:flex;gap:54px;align-items:flex-start;box-shadow:0 2px 16px rgba(0,0,0,.1);background:#fafafa;padding:60px 80px}
.services-why-media{flex:0 0 484px}
.services-why-media img{width:100%;height:536px;object-fit:cover}
.services-why-copy{flex:1 1 auto;min-width:0}
.services-why-copy h2{margin-bottom:24px}
.services-why-list{display:flex;flex-direction:column}
.services-why-list details{border-top:0.8px solid rgba(0,0,0,.12);padding:24px 0}
.services-why-list details:first-child{border-top:0}
.services-why-list summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:16px}
.services-why-list summary::-webkit-details-marker{display:none}
.services-why-list summary .q{font-family:var(--serif);font-weight:500;font-size:20px;line-height:30px;letter-spacing:-0.4px;color:var(--heading)}
.services-why-list .ic{position:relative;flex:none;width:24px;height:24px}
.services-why-list .ic::before{content:"\f078";font-family:'Font Awesome 7 Free';font-weight:900;position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-size:14px;color:var(--navy);transition:transform .2s ease}
.services-why-list details[open] .ic::before{transform:rotate(180deg)}
.services-why-list .answer{padding-top:16px}
.services-why-list .answer p{font-size:16px;line-height:28px;color:var(--subtext);margin:0;max-width:603px}

@media (min-width:1440px){
  .services-hero{height:374px}
  .services-grid .service-card img{height:280px}
}
@media (max-width:991px){
  .services-hero-inner{padding-left:24px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .services-why-wrap{flex-direction:column;padding:34px}
  .services-why-media{flex-basis:auto;width:100%}
  .services-why-media img{height:auto}
}
@media (max-width:575px){
  .services-hero-inner h1{font-size:24px;line-height:30px;max-width:250px}
  .services-grid{grid-template-columns:1fr;row-gap:44px}
  .services-why-wrap{padding:24px}
  .services-why-list summary .q{font-size:18px;line-height:26px}
}
/* ===== Services CSS End ===== */

/* ===== Shared Form CSS Start ===== */
.site-form{max-width:900px;margin:0 auto;display:flex;flex-direction:column;gap:24px}
.site-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.site-form .form-field{display:flex;flex-direction:column;gap:8px}
.site-form label{font-family:var(--sans);font-size:14px;color:var(--subtext);font-weight:500}
.site-form input,.site-form select,.site-form textarea{
  border:0.6px solid rgba(0,0,0,0.15);
  background:#fafafa;
  padding:12px 16px;
  font-family:var(--sans);
  font-size:16px;
  color:var(--heading);
  outline:none;
  transition:border-color .2s ease;
  width:100%;
}
.site-form input:focus,.site-form select:focus,.site-form textarea:focus{border-color:var(--navy)}
.site-form textarea{resize:vertical;min-height:120px}
.site-form button.primary-btn{align-self:flex-start;border:none;cursor:pointer}
.site-form .req{color:#ad0a1d}
.site-form .invalid-feedback{display:none;font-size:13px;color:#ad0a1d;margin-top:2px}
.site-form.was-validated input:invalid,
.site-form.was-validated select:invalid,
.site-form.was-validated textarea:invalid{
  border-color:#ad0a1d;
  background:#fdf4f4;
}
.site-form.was-validated input:invalid ~ .invalid-feedback,
.site-form.was-validated select:invalid ~ .invalid-feedback,
.site-form.was-validated textarea:invalid ~ .invalid-feedback{display:block}
.site-form.was-validated input:valid,
.site-form.was-validated select:valid,
.site-form.was-validated textarea:valid{border-color:#2f7d4f}

.form-alert{max-width:900px;margin:0 auto 24px;padding:14px 20px;font-family:var(--sans);font-size:15px}
.form-alert-success{background:#eaf6ee;color:#1f6b3a;border:1px solid #bfe3cb}
.form-alert-error{background:#fdf0f0;color:#ad0a1d;border:1px solid #f0c6c6}

@media (max-width:575px){
  .site-form .form-row{grid-template-columns:1fr}
}
/* ===== Shared Form CSS End ===== */

/* ===== Contact Us CSS Start ===== */
.contact-form-section{background:#ffffff;padding:clamp(56px,6vw,80px) clamp(24px,5.5vw,80px)}

.headquarters-section{background:#fafafa;padding:clamp(56px,6vw,80px) clamp(24px,5.5vw,80px)}
.headquarters-wrap{display:flex;gap:40px;max-width:1280px;margin:0 auto;align-items:stretch}
.headquarters-details{flex:0 0 340px}
.headquarters-details ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:24px}
.headquarters-details li{display:flex;align-items:flex-start;gap:14px;font-size:16px;line-height:24px;color:var(--para)}
.headquarters-details li i{color:var(--navy);width:20px;margin-top:4px}
.headquarters-details li a{color:var(--para)}
.headquarters-map{flex:1 1 auto;min-width:0}
.headquarters-map iframe{width:100%;height:100%;min-height:340px;border:0}

.presence-section{background:#ffffff;padding:0 clamp(24px,5.5vw,80px) clamp(56px,6vw,80px)}
.presence-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px;max-width:1280px;margin:0 auto}
.presence-card img{width:100%;height:340px;object-fit:cover}
.presence-card-body{padding:20px 4px 0}
.presence-tag{display:inline-block;font-size:14px;color:var(--navy);margin-bottom:8px;text-transform:uppercase;letter-spacing:.05em}
.presence-card h3{margin-bottom:8px}
.presence-card p{margin:0;color:var(--para)}

@media (max-width:767px){
  .headquarters-wrap{flex-direction:column}
  .headquarters-details{flex-basis:auto}
  .presence-grid{grid-template-columns:1fr}
}
/* ===== Contact Us CSS End ===== */

/* ===== Career CSS Start ===== */
.positions-section{background:#fafafa;padding:clamp(56px,6vw,80px) clamp(24px,5.5vw,80px)}
.positions-list{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:24px;align-items:stretch}
.position-card{background:#fff;border:0.6px solid rgba(0,0,0,0.1);padding:28px 32px;display:flex;flex-direction:column;gap:18px;height:100%}
.position-info h3{margin-bottom:10px}
.position-meta{display:flex;gap:20px;margin-bottom:14px;font-size:14px;color:var(--subtext)}
.position-meta i{color:var(--navy);margin-right:6px}
.position-info p{margin:0}
.position-apply-btn{align-self:flex-start;flex:none;display:inline-flex;align-items:center;justify-content:center;height:42px;padding:0 22px;border:1px solid var(--navy);color:var(--navy);font-family:var(--sans);font-size:16px;white-space:nowrap;transition:.2s ease}
.position-apply-btn:hover{background:var(--navy);color:#fff}

.application-section{background:#ffffff;padding:clamp(56px,6vw,80px) clamp(24px,5.5vw,80px)}

@media (max-width:767px){
  .positions-list{grid-template-columns:1fr}
}
/* ===== Career CSS End ===== */

/* ===== Career & Contact Brand Theme ===== */
.career-body .section-head span,.contact-body .section-head span{color:#111;font-size:16px}
.career-body .section-head h2,.contact-body .section-head h2{color:#111;font-weight:600}
.career-body .positions-section p,.career-body .position-meta,.career-body .application-section label,.contact-body .contact-form-section label,.contact-body .headquarters-section p{color:#111}
/* Blue banner overlay is mobile-only; on desktop the career and contact banners
   show the image clean, like the other pages. */
/*@media (max-width:767px){*/
/*  .career-body .page-image-hero .services-hero-overlay,.contact-body .page-image-hero .services-hero-overlay{background:linear-gradient(90deg,rgba(40,40,40,.82),rgba(60,60,60,.36) 58%,rgba(90,90,90,.16))}*/
/*}*/
@media (min-width:768px){
  .career-body .page-image-hero .services-hero-overlay,.contact-body .page-image-hero .services-hero-overlay{display:none}
  /* No overlay on desktop, so the banner copy goes black like the other pages. */
  .career-body .services-hero-inner h1,
  .career-body .services-hero-inner .hero-lede,
  .contact-body .services-hero-inner h1,
  .contact-body .services-hero-inner .hero-lede{color:var(--heading);text-shadow:none}
}

.career-body .positions-section{background:#fff}
.career-body .position-card{position:relative;border:1px solid #dce4f1;border-top:3px solid var(--brand-blue);border-radius:6px;box-shadow:0 10px 28px rgba(0,33,86,.06);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.career-body .position-card::before{content:"";position:absolute;top:-3px;left:32px;width:44px;height:3px;background:var(--brand-red);transform:scaleX(0);transform-origin:left;transition:transform .22s ease}
.career-body .position-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(0,33,86,.11);border-color:#c9d6ea}
.career-body .position-card:hover::before{transform:scaleX(1)}
.career-body .position-info h3{color:#111;font-weight:600}
.career-body .position-meta i{color:#111}
.career-body .position-apply-btn{border-color:#111;color:#111;border-radius:3px;font-weight:600}
.career-body .position-apply-btn:hover{background:var(--brand-mist);color:#111}
.career-body .application-section{background:var(--brand-mist)}

.career-body .application-form,.contact-body .contact-form{padding:clamp(24px,4vw,44px);border:1px solid #dce4f1;border-radius:8px;background:#fff;box-shadow:0 16px 42px rgba(0,33,86,.07)}
.career-body .site-form input,.career-body .site-form select,.career-body .site-form textarea,.contact-body .site-form input,.contact-body .site-form select,.contact-body .site-form textarea{background:#fff;border:1px solid #d8e0ed;border-radius:4px}
.career-body .site-form input:focus,.career-body .site-form select:focus,.career-body .site-form textarea:focus,.contact-body .site-form input:focus,.contact-body .site-form select:focus,.contact-body .site-form textarea:focus{border-color:var(--brand-blue);box-shadow:0 0 0 3px rgba(11,47,134,.08)}
.career-body .site-form button.primary-btn,.contact-body .site-form button.primary-btn{background:#fff;border:1px solid var(--brand-blue);border-radius:3px;color:#111;font-weight:600}
.career-body .site-form button.primary-btn:hover,.contact-body .site-form button.primary-btn:hover{background:var(--brand-mist);color:#111}

.contact-body .contact-form-section{background:#fff}
.contact-body .headquarters-section{background:var(--brand-mist)}
.contact-body .headquarters-details{padding:34px 30px;border:1px solid #ffffff;border-radius:6px;background:#ffffff;box-shadow:0 14px 34px rgba(0,33,86,.08)}
.contact-body .headquarters-details li,.contact-body .headquarters-details li a{color:#111}
.contact-body .headquarters-details li i{color:#111}
.contact-body .headquarters-map iframe{border-radius:6px;box-shadow:0 14px 34px rgba(0,33,86,.1)}
.contact-body .presence-section{background:var(--brand-mist);padding-top:clamp(56px,6vw,80px)}
.contact-body .presence-card{overflow:hidden;border:1px solid #dce4f1;border-radius:6px;background:#fff;box-shadow:0 10px 28px rgba(0,33,86,.07)}
.contact-body .presence-card img{height:300px}
.contact-body .presence-card-body{padding:24px 26px 28px;border-top:3px solid var(--brand-blue)}
.contact-body .presence-tag{color:var(--brand-red);font-weight:700;letter-spacing:.1em}
.contact-body .presence-card h3{color:var(--brand-blue);font-weight:600}

@media (max-width:575px){
  .career-body .application-form,.contact-body .contact-form{padding:24px 18px}
  .contact-body .headquarters-details{padding:28px 22px}
}
/* ===== Career & Contact Brand Theme End ===== */

/* ===== Legal Pages ===== */
/* Legal pages have no dark hero image, so the navigation needs dark text. */
body.legal-body .koodo-navbar::before{background:rgba(255,255,255,0.92);backdrop-filter:blur(12px)}
body.legal-body .koodo-navbar .nav-link{color:#111;text-shadow:none}
body.legal-body .koodo-navbar .nav-link:hover{color:#002156;opacity:.75}

.legal-hero{padding:150px 0 64px;background:var(--brand-mist);border-bottom:1px solid #dce4f1}
.legal-hero h1{color:#111;margin-bottom:12px}
.legal-hero p{color:#333}
.legal-content{padding:clamp(56px,7vw,88px) 24px;background:#fff}
.legal-content-inner{max-width:900px;margin:0 auto}
.legal-content-inner>p{margin-bottom:16px}
.legal-content h2{margin:42px 0 14px;color:#111;font-size:24px;line-height:34px;letter-spacing:.02em}
.legal-content ul{margin:8px 0 20px;padding-left:24px;color:#333}
.legal-content li{margin-bottom:7px;padding-left:5px}
.legal-content address{margin:10px 0 0;font-style:normal;line-height:30px;color:#333}
.legal-content a{color:var(--navy);text-decoration:underline;text-underline-offset:3px}
@media (max-width:575px){.legal-hero{padding:124px 0 48px}.legal-hero h1{font-size:36px;line-height:46px}}
/* ===== Legal Pages End ===== */


@media (max-width:767px) {
    .splide__slide-1{
    width: 90% !important;
}
.hero-inner h1{
    font-size: 32px;
}
.services-hero-inner h1{
    color: black;
}
.services-hero-inner h1{
    color: black;
}
.page-pad-1{
            padding-bottom: 80px;
}
}
