/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
/*!
Theme Name: _ppg
Theme URI: https://underscoretw.com/
Description: A custom theme based on _tw
Version: 0.1.0
Author: Mohsin Ali
Author URI: https://underscoretw.com/
Text Domain: _ppg
Requires at least: 6.8
Requires PHP: 7.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

_ppg is based on _tw https://underscoretw.com/, (C) 2021-2025 Greg Sullivan
_tw is distributed under the terms of the GNU GPL v2 or later.

_tw is based on Underscores https://underscores.me/ and Varia https://github.com/Automattic/themes/tree/master/varia, (C) 2012-2025 Automattic, Inc.
Underscores and Varia are distributed under the terms of the GNU GPL v2 or later.
*/

/* =========================================================
   PPG Header restore + mobile menu overlay fix
   Note: No border-radius anywhere
========================================================= */
html{
  font-size: 16px;
    scroll-behavior: smooth;

} 
body{
  font-family: "Muli",BlinkMacSystemFont,-apple-system,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Arial",sans-serif;
  color: #363636;
      font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
#content h1, #content h2, #content h3, #content h4{
  color: #344ca2;
}
#content h3 {
    font-size: 1.5em;
    margin-bottom: 0.6666em;
    font-weight: 600;
    line-height: 1.125;
}
#content h1{
  font-size: 2em;
  margin-bottom: 0.5em;
  font-weight: 600;
    line-height: 1.125;
}
p{
  display: block;
}
#content ol {
    list-style-position: outside;
    margin-left: 2em;
}
#content ol:not([type]) {
    list-style-type: decimal;
    margin-bottom: 2rem;
}

#content ul{
    list-style: disc outside;
    margin-left: 2em;
    margin-bottom: 1em;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pt-4 {
  padding-bottom: 1rem;
}
p:not(:last-child){
  margin-bottom:1rem;
}
.ppg-hero.ppg-hero--half h1{
  float: left;
}

.ppg-section-heading {
  @apply text-3xl font-bold tracking-wide text-[#344ca2] sm:text-4xl;
}

/* Body content anchor underline animation */
#content a,
.page-content a,
.post-content a{
  position: relative;
  text-decoration: none;
  color: #27aae2;
    cursor: pointer;
}

#content a::after,
.page-content a::after,
.post-content a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
#content a:hover{
  color: #363636;
}
#content a:hover::after,
.page-content a:hover::after,
.post-content a:hover::after{
  transform: scaleX(1);
  color: #363636;
}
#content h2{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5714em;
    line-height: 1.125;
}
#content h4{
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
}

.ppg-header{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
  position:relative;
  z-index:100;
}

.ppg-header__inner{
  /* remove max-width and horizontal padding, Tailwind handles it */
  margin:0 auto;
  padding-top:14px;
  padding-bottom:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}



.ppg-brand{
  flex:0 0 auto;
  min-width:0;
}

.ppg-brand__logo{
  display:flex;
  align-items:center;
}

.ppg-brand__logo img{
  display:block;
  width:auto;
  max-height:46px;
}

.ppg-nav{
  flex:1 1 auto;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  position:relative;
  min-width:0;
}

/* Toggle button */
.ppg-nav__toggle{
  display:none;
  background:transparent;
  border:0;
  padding:10px;
  cursor:pointer;
  line-height:0;
}

.ppg-nav__toggle-lines{
  display:block;
  width:26px;
  height:2px;
  background:#142644;
  position:relative;
}

.ppg-nav__toggle-lines::before,
.ppg-nav__toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:26px;
  height:2px;
  background:#142644;
}

.ppg-nav__toggle-lines::before{ top:-7px; }
.ppg-nav__toggle-lines::after{ top:7px; }

/* Desktop menu defaults */
.ppg-menu{
  display:flex;
  align-items:center;
  gap:28px;
}

.ppg-menu li{
  position:relative;
}

.ppg-menu a{
  color:#142644;
  font-weight:700;
  font-size:0.95rem;
  text-decoration:none;
  line-height:1.2;
  display:inline-flex;
  align-items:center;
  padding:8px 0;
}

.ppg-menu a:hover{
  color:#344ca2;
}

/* Desktop dropdown */
.ppg-menu .sub-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  min-width:240px;
  background:#fff;
  border:1px solid rgba(15,23,42,0.08);
  box-shadow:0 18px 35px rgba(15,23,42,0.12);
  padding:10px 0;
  z-index:200;
}

.ppg-menu li:hover > .sub-menu,
.ppg-menu li:focus-within > .sub-menu{
  display:block;
}

.ppg-menu .sub-menu a{
  display:block;
  padding:10px 14px;
  font-weight:700;
  font-size:0.95rem;
  white-space:nowrap;
}
.ppg-header{
  position:sticky; /* optional, keeps header on top */
  top:0;           /* optional */
  /* padding: 1rem; */
}

/* Hero / Banner heading font */
.hero h1,
.hero__title {
  font-family: "Libre Franklin", sans-serif;
  line-height: 1.15;
}
:root { --ppg-header-h: 106px; --gf-form-gap-y: 20px !important;} /* adjust once if needed */
.gform-theme--framework{
  --gf-form-gap-y: 25px !important;
}
.ppg-hero--full{
  max-height: calc(100dvh - var(--ppg-header-h));
  min-height: calc(100dvh - var(--ppg-header-h, 0px));

}
.ppg-hero--half{
  max-height: 50dvh;
  min-height: 50dvh;

}


/* =========================================================
   Hero layout (full and half) with breadcrumbs + subheading box
========================================================= */

.ppg-hero{
  position:relative;
  background-color:#0f172a;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  isolation:isolate;
}

.ppg-hero__overlay{
  position:absolute;
  inset:0;
  background:rgba(20,38,68,0.55);
  z-index:0;
}

.ppg-hero__inner{
  position:relative;
  z-index:1;
  width:100%;
  
}

/* If you already use header height subtraction, keep your var and reuse it */
.ppg-hero--full{
  min-height: calc(100dvh - var(--ppg-header-h, 0px));
}

.ppg-hero--half{
  min-height: 60vh;
      max-height: fit-content;
}

.ppg-hero--full .ppg-hero__inner{
  max-width:48rem;
}
.ppg-hero__inner{
  position:relative;
  z-index:1;
  width:100%;
  /* vertical centering happens here */
  display:flex;
  flex-direction:column;
  justify-content:center;

  /* safety padding so content never touches edges */
  padding-top:2rem;
  padding-bottom:2rem;
}

/* Breadcrumbs */
.ppg-hero__crumbs{
  font-size:0.95rem;
  color:rgba(255,255,255,0.9);
  margin-bottom:0.75rem;
}

.ppg-crumbs a{
  color:rgba(255,255,255,0.92);
  text-decoration:none;
}

.ppg-crumbs a:hover{
  text-decoration:underline;
}

.ppg-crumbs__sep{
  display:inline-block;
  margin:0 0.45rem;
  color:rgba(255,255,255,0.75);
}

/* Title */
.ppg-hero__title{
  margin:0;
  color:#fff;
  font-weight:800;
  letter-spacing:-0.02em;
  text-transform:uppercase;
  font-size:2rem;
  line-height:1.1;
  font-family:"Libre Franklin", sans-serif;
}

@media (min-width:1024px){
  .ppg-hero__title{
    font-size:2.5rem;
  }
}
.page-template-page-team .ppg-hero--half .ppg-hero__subbox
{
  width: max-content;
}
.ppg-hero--half .ppg-hero__subbox{
  margin-top:1rem;
  max-width:42rem;
  background:rgba(21,38,68,0.6);
  color:rgba(255,255,255,0.92);
  padding:1rem 1.1rem;
  font-size:1.05rem;
  line-height:1.6;
}
/* Subheading box */
.ppg-hero__subbox{
  margin-top:1rem;
  max-width:42rem;
  color:rgba(255,255,255,0.92);
  font-size:1.05rem;
  line-height:1.6;
}

.ppg-hero__subbox p{
  margin:0;
}

/* Buttons */
.ppg-hero__actions{
  margin-top:1.5rem;
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
}

.ppg-hero__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.7rem 1.1rem;
  font-size:0.95rem;
  font-weight:600;
  text-decoration:none;
  border:1px solid transparent;
  transition:background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.ppg-hero__btn--primary{
  background:#27aae2;
  color:#fff;
}

.ppg-hero__btn--primary:hover{
  background:#1c8bbd;
}

.ppg-hero__btn--secondary{
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.40);
  color:#fff;
}

.ppg-hero__btn--secondary:hover{
  background:rgba(255,255,255,0.20);
}

/* =========================================================
   Mobile under 1024px
   Menu becomes overlay so it does not stretch the logo area
========================================================= */

@media (max-width: 1023px){
  .page-template-page-team .ppg-hero--half .ppg-hero__subbox{
    width: auto;
  }
  .ppg-nav__toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .ppg-menu{
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;

    position:absolute;
    top:calc(100% + 12px);
    right:0;
    left:0;

    background:#fff;
    border:1px solid rgba(15,23,42,0.10);
    box-shadow:0 18px 35px rgba(15,23,42,0.14);

    padding:10px;

    max-height:70vh;
    overflow:auto;
  }

  /* Use your JS to add .is-open on menu, but also keep aria fallback */
  .ppg-menu.is-open{
    display:flex;
  }

  .ppg-nav__toggle[aria-expanded="true"] ~ .ppg-menu{
    display:flex;
  }

  .ppg-menu > li > a{
    padding:12px 12px;
  }

  .ppg-menu > li > a:hover{
    background:rgba(20,38,68,0.06);
  }

  /* Mobile submenu should be in-flow inside menu only */
  .ppg-menu .sub-menu{
    position:static;
    display:none;
    min-width:0;
    border:0;
    box-shadow:none;
    padding:0 0 8px 0;
    margin:0;
  }

  .ppg-menu li.is-open > .sub-menu{
    display:block;
  }

  .ppg-menu .menu-item-has-children:focus-within > .sub-menu{
    display:block;
  }

  .ppg-menu .sub-menu a{
    padding:10px 14px;
    margin-left:10px;
    white-space:normal;
  }
   .ppg-nav{
    position:static;
  }

  .ppg-menu{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    width:100vw;
    margin:0;
    border-left:0;
    border-right:0;
  }

  /* Arrow icon space */
  .ppg-menu > li > a{
    width:100%;
    justify-content:space-between;
    gap:12px;
  }

  /* Add arrow to items with children */
  .ppg-menu .menu-item-has-children > a::after{
    content:"";
    width:10px;
    height:10px;
    flex:0 0 auto;
    border-right:2px solid #142644;
    border-bottom:2px solid #142644;
    transform:rotate(45deg);
    margin-left:12px;
  }

  /* Rotate arrow when submenu is open */
  .ppg-menu li.is-open > a::after{
    transform:rotate(-135deg);
  }
}

/* =========================================================
   Desktop 1024px and up
========================================================= */

@media (min-width: 1024px){
  #footer_form .ppg-eaf__form{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .ppg-nav__toggle{
    display:none;
  }

  .ppg-menu{
    display:flex;
    position:static;
    padding:0;
    border:0;
    box-shadow:none;
    max-height:none;
    overflow:visible;
  }
   .ppg-menu > .menu-item-has-children > a {
    position: relative;
    padding-right: 18px;
  }

  .ppg-menu > .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  /* Subtle animation on hover */
  .ppg-menu > .menu-item-has-children:hover > a::after {
    transform: translateY(-40%) rotate(225deg);
  }
}

/* =========================================================
   Footer restore
========================================================= */

#colophon,
.site-footer,
.ppg-footer{
  background:#142644;
  color:#ffffff;
}

#colophon{
  padding:56px 20px 68px;
}

.site-footer a,
#colophon a,
.ppg-footer a{
  color:#dfe7f4;
  text-decoration:none;
}

.site-footer a:hover,
#colophon a:hover,
.ppg-footer a:hover{
  color:#ffffff;
  text-decoration:none;
}

.site-footer__inner,
.ppg-footer__inner,
#colophon .wrap{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:44px;
}

.site-info{
  margin-top:18px;
  font-size:0.95rem;
  color:rgba(255,255,255,0.85);
}

.footer-search{
  display:flex;
  align-items:center;
  gap:20px;
  color:#eef3fb;
}

.footer-search__title{
  font-weight:700;
  font-size:1.15rem;
  min-width:140px;
}

.footer-search__form{
  display:flex;
  align-items:center;
  gap:16px;
  flex:1;
  border-bottom:1px solid rgba(255,255,255,0.45);
  padding-bottom:10px;
}

.footer-search__input-wrap{
  flex:1;
}

.footer-search input{
  width:100%;
  background:transparent;
  border:none;
  color:#f6f8fb;
  font-size:1rem;
  padding:8px 0;
}

.footer-search input::placeholder{
  color:#d1d9e8;
}

.footer-search input:focus{
  outline:none;
}

.footer-search__button{
  background:#28a6d9;
  color:#ffffff;
  border:none;
  padding:10px 18px;
  border-radius:2px;
  font-weight:600;
  cursor:pointer;
  transition:background 0.2s ease;
}

.footer-search__button:hover{
  background:#1d8abc;
}

.site-footer__columns{
  display:grid;
  grid-template-columns:repeat(3,minmax(220px,1fr));
  gap:32px 48px;
  align-items:start;
}

.footer-column h2{
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:16px;
  color:#f4f6fb;
}

.footer-social{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-social a{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:500;
}

.footer-social__icon{
  display:inline-flex;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#ffffff;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.footer-social__icon svg{
  width:18px;
  height:18px;
  fill:#142644;
}

.footer-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(140px,1fr));
  gap:10px 30px;
}

.footer-menu li{
  margin:0;
}

.footer-menu a{
  font-weight:500;
}

.footer-iso__circle{
  width:96px;
  height:96px;
  border-radius:50%;
  background:#ffffff;
  color:#0f2b4f;
  border:5px solid #0f2b4f;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-transform:uppercase;
  font-weight:700;
  line-height:1.1;
  box-shadow:0 12px 28px rgba(0,0,0,0.18);
  letter-spacing:0.3px;
}

.footer-iso__certified{
  font-size:10px;
}

.footer-iso__iso{
  font-size:20px;
  letter-spacing:0.6px;
}

.footer-iso__number{
  font-size:12px;
  color:#1f91ca;
}

.footer-iso__company{
  font-size:10px;
}

.footer-iso-row{
  display:flex;
  justify-content:flex-end;
}

.footer-iso{
  display:flex;
  justify-content:flex-end;
}

@media (max-width: 768px){
  #colophon{
    padding:44px 16px 52px;
  }

  .footer-search{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .footer-search__form{
    width:100%;
  }

  .site-footer__columns{
    grid-template-columns:1fr;
  }

  .footer-iso-row,
  .footer-iso{
    justify-content:flex-start;
  }
}



#cards_grid .link-box{
  min-width: 11rem;
}
#feature_cards_grid a.feature-block-btn{color: #fff;}
/* =========================================================
   Testimonials Split (Embla)
   Clean final CSS
========================================================= */
/* =========================================================
   Testimonials Split (Embla)
   Complete CSS (clean, no old track rules)
========================================================= */

.ppg-testimonials{
  width: 100%;
  height: calc(100dvh - var(--ppg-header-h, 88px));
}

/* Layout: 1 column on mobile, 1/3 + 2/3 from 1024px */
.ppg-testimonials__grid{
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px){
  .ppg-testimonials__grid{
    grid-template-columns: 1fr 2fr;
  }
}

/* Left column: two stacked images */
.ppg-testimonials__media{
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.ppg-testimonials__img{
  min-height: 0;
  overflow: hidden;
}

.ppg-testimonials__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right column: centered content */
.ppg-testimonials__content{
  height: 100%;
  min-height: 0;
  min-width: 0;
  display: flex;
  align-items: center;
}

.ppg-testimonials__inner{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

/* Your existing spacing intent */
@media (min-width: 640px){
  .ppg-testimonials__inner{
    max-width: none;
    margin: 0 3rem;
  }
}
@media (min-width: 1024px){
  .ppg-testimonials__inner{
    max-width: none;
    margin: 0 3rem;
    position: relative; 
    display: block;
  }
}

/* Title */
.ppg-testimonials__title{
  color: #6b7280;
}

/* Quote styling */
.ppg-testimonials__quote{
  position: relative;
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 0 3rem;
}

.ppg-testimonials__quote::before,
.ppg-testimonials__quote::after{
  position: absolute;
  color: #27aae2;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
}

.ppg-testimonials__quote::before{
  content: "“";
  left: 0;
  top: -6px;
}

.ppg-testimonials__quote::after{
  content: "”";
  right: 0;
  bottom: -30px;
}

/* Meta row */
.ppg-testimonials__meta{
  display: flex;
  gap: 18px;
  align-items: flex-end;
  margin-top: 18px;
  padding: 0 64px;
}

.ppg-testimonials__logo img{
  max-height: 30px;
  width: auto;
  display: block;
}

.ppg-testimonials__name{
  font-weight: 800;
  color: #ef4444;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ppg-testimonials__company{
  margin-top: 6px;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 600;
}
/* Limit slider width on desktop only */
@media (min-width: 1024px){
  .ppg-testimonials__inner{
    max-width: 880px;   /* adjust: 760 / 820 / 900 */
    margin-left: auto;
    margin-right: auto;
  }
}


/* =========================================================
   Embla core (scoped to testimonials)
   Note: no gap on container, spacing is slide padding
========================================================= */

.ppg-testimonials .embla{
  width: 100%;
}

.ppg-testimonials .embla__viewport{
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.ppg-testimonials .embla__container{
  display: flex;
  width: 100%;
  will-change: transform;
}

.ppg-testimonials .embla__slide{
  flex: 0 0 100%;
  min-width: 0;
  padding-right: 24px;
}

.ppg-testimonials .embla__slide:last-child{
  padding-right: 0;
}

/* Prevent any legacy absolute/opacity rules from interfering */
.ppg-testimonials .ppg-testimonials__slide{
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transition: none;
  inset: auto;
}

/* Mobile adjustments */
@media (max-width: 1023px){
  .ppg-testimonials{
    height: auto;
  }

  .ppg-testimonials__media{
    min-height: 420px;
  }

  .ppg-testimonials__content{
    padding: 34px 0;
    height: auto;
  }

  .ppg-testimonials__inner{
    margin: 0;
    max-width: 900px;
  }

  .ppg-testimonials__title{
    margin: 0 48px 1.25rem 48px;
  }

  .ppg-testimonials__quote{
    padding: 10px 48px;
  }

  .ppg-testimonials__meta{
    padding: 0 48px;
  }
}

/* =========================================================
   Expert Advice Form (Scoped)
   Clean final CSS


/* ==============================
   Expert Advice Form (Scoped)
================================ */

.ppg-eaf { width: 100%; }
.ppg-eaf label.gform-field-label.gform-field-label--type-sub{
  display: none;
}
#content .ppg-eaf a{
  color: #fff;
}
#content .ppg-eaf a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.35s ease;
}
#content .ppg-eaf a:hover::after {
    transform: scaleX(0);
    color: #fff;

} 
.ppg-eaf__grid{
  display:grid;
  grid-template-columns: 1fr 3fr;
  min-height: calc(100vh - var(--ppg-header-h, 0px));
}

.ppg-eaf__left{ background:#344ca2; color:#fff; }
.ppg-eaf__right{ background:#475eaa; color:#fff; }

.ppg-eaf__left-inner,
.ppg-eaf__right-inner{
  padding: 60px 48px;
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
}

.ppg-eaf__title{
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size: 1.5rem;
  font-weight: 600;
}

.ppg-eaf__intro{
  margin-top:12px;
  font-size:14px;
  line-height:1.6;
  opacity:.95;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.25;
}

.ppg-eaf__rule{
  margin-top:16px;
  width:140px;
  height:2px;
  background: rgba(255,255,255,.7);
}

/* Slider layout */
.ppg-eaf__slider{ margin-top: 28px; }
.ppg-eaf__viewport{ overflow:hidden; }
.ppg-eaf__track{
  display:flex;
  align-items:stretch;
}
.ppg-eaf__slide{
  flex: 0 0 100%;
}

.ppg-eaf__person{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top: 22px;
}

.ppg-eaf__avatar{
  width:160px;
  height:160px;
  border-radius:999px;
  overflow:hidden;
  background: rgba(255,255,255,.12);
}
.ppg-eaf__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.ppg-eaf__name{
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.ppg-eaf__role{ margin-top:4px; font-size:13px; opacity:.9; }
.ppg-eaf__email{
  display:inline-block;
  margin-top:10px;
  font-size:13px;
  color:#fff;
  text-decoration:none;
  opacity:.95;
}

/* Dots */
.ppg-eaf__dots{
  margin-top: 22px;
  display:flex;
  gap:8px;
  align-items:center;
}
.ppg-eaf__dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: rgba(255,255,255,.28);
  border:0;
  padding:0;
  cursor:pointer;
}
.ppg-eaf__dot.is-active{ background: rgba(255,255,255,.95); }

/* Scoped Gravity Forms styles ONLY inside this block */
.ppg-eaf__form .gform_wrapper,
.ppg-eaf__form form{
  color:#fff;
}
#content .ppg-eaf__form h3, #content .ppg-eaf__form h2{
  color:#fff;
}
.ppg-eaf__form .gform_wrapper legend,.ppg-eaf__form .gform_wrapper label{
  font-weight:600;
  margin-bottom:0;
  color: #fff;
}
.ppg-eaf__form span.gfield_required.gfield_required_asterisk{
  color: #fff;
}
.ppg-eaf__form .gform_wrapper .gfield input[type="text"],
.ppg-eaf__form .gform_wrapper .gfield input[type="email"]{
    outline: none;
    font-size: .9rem;
    height: 2em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(0.375em - 1px);
    padding-left: calc(0.625em - 1px);
    padding-right: calc(0.625em - 1px);
    padding-top: calc(0.375em - 1px);
    position: relative;
    vertical-align: top;
    border: 0;
    border-bottom: 1px solid whitesmoke;
    background: transparent;
    color: whitesmoke;
    border-radius: 0;
    box-shadow: none;
}
.ppg-eaf__form p.gform_required_legend,p.gform_required_legend{
    display: none;
}
.ppg-eaf__form input#gform_submit_button_1{
    background: #28a6d9;
    border-radius: 0;
}
.ppg-eaf__form .gform-theme--foundation .gfield textarea.medium{
  min-block-size: 6rem;
}

.ppg-eaf__form input::placeholder,
.ppg-eaf__form textarea::placeholder{
  color: rgba(255,255,255,.7);
}

.ppg-eaf__form .gform_footer input[type="submit"]{
  background:#27aae2;
  border:0;
  color:#fff;
  padding:10px 18px;
  cursor:pointer;
}
.ppg-eaf__author { margin-bottom: 3rem; color: #fff; }
.ppg-eaf__author-label { font-size: 1.5rem; font-weight: 600; opacity: .9; margin-bottom: 8px; }
.ppg-eaf__author-row { display:flex; align-items:center; gap:14px; }
.ppg-eaf__author-avatar img {width: 150px;
    height: 150px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    object-position: top;}
.ppg-eaf__author-name { color:#fff; font-weight:700; text-transform:uppercase; text-decoration:none; }
.ppg-eaf__author-name:hover { text-decoration:underline; }
.ppg-eaf__author-role { font-size:13px; opacity:.9; margin-top:2px; }


@media (max-width: 1023px){
  .ppg-eaf__grid{ grid-template-columns: 1fr; min-height: auto; }
  .ppg-eaf__left-inner,
  .ppg-eaf__right-inner{ padding: 34px 20px; }
  .ppg-eaf__avatar{ width:120px; height:120px; }
}

/* EAF slider: prevent horizontal overflow on mobile */
.ppg-eaf,
.ppg-eaf * { box-sizing: border-box; }

.ppg-eaf { overflow-x: clip; } /* or hidden if clip not supported */

.ppg-eaf__slider { width: 100%; min-width: 0; }

.ppg-eaf__viewport{
  width: 100%;
  overflow: hidden;
  min-width: 0;
}

.ppg-eaf__track{
  display: flex;
  width: 100%;
  min-width: 0;
  will-change: transform;
}

.ppg-eaf__slide{
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

/* Common culprit: images/long strings */
.ppg-eaf__avatar img{ max-width: 100%; display: block; }
.ppg-eaf__email{ word-break: break-word; overflow-wrap: anywhere; }

/* If your two-column grid causes overflow */
.ppg-eaf__left,
.ppg-eaf__right{ min-width: 0; }






.charleft.ginput_counter.gfield_description {
    color: #fff;
}

.ppg-cta__box{
  max-width:500px;
  margin-left:auto;
  margin-right:auto;
  text-align: center;
  padding: 2.5rem 2.5rem 3rem 2.5rem;
}

.ppg-cta__box h2{
  font-size: 1.5rem !important;
}

.ppg-cta__box a{
  color: #fff !important;
}
#content a.button:not(.has-no-arrow){
  color: #fff;
}
#content a.button:not(.has-no-arrow)::before{
  content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    background-image: url(img/arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    transform: scaleX(0);
    transform-origin: 50%;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
#content a.button:not(.has-no-arrow):hover::before {
    transform: scaleX(1);
}
#content a.button:hover::after{
  color: #fff;
}

/* FAQ accordion, scoped */
.ppg-faq__panel {
  overflow: hidden;
}

.ppg-faq__icon {
  transition: transform 200ms ease;
}

[data-ppg-faq-trigger][aria-expanded="true"] .ppg-faq__icon {
  transform: rotate(180deg);
}
[data-ppg-faq-trigger][aria-expanded="true"]{
  background: #344ca2;
  color: #fff !important;
}


#content .faq-container h2{
  display: block;
    transition: 0.2s;
    font-weight: 700;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.3rem;
    color: #fff;
}
.faq-q-na{
  border: 1px solid #dbdbdb;
    list-style: none;
    margin-bottom: 1rem;
    background: #f5f5f5;
}
/* Smooth accordion */
.ppg-faq__panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 300ms ease, opacity 200ms ease;
}

.ppg-faq__panel.is-open {
  max-height: 500px; /* safe max, adjust if needed */
  opacity: 1;
}

/* Services slider (Embla) */
.ppg-services-slider {
  position: relative;
}

.ppg-services-slider__viewport {
  overflow: hidden;
}

.ppg-services-slider__container {
  display: flex;
  gap: 24px;
}

.ppg-services-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* Breakpoints: show more cards */
@media (min-width: 640px) {
  .ppg-services-slider__slide { flex-basis: 50%; }
}
@media (min-width: 1024px) {
  .ppg-services-slider__slide { flex-basis: 33.3333%; }
}
@media (min-width: 1280px) {
  .ppg-services-slider__slide { flex-basis: 25%; }
}

/* Card image like screenshot */
.ppg-service-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ppg-service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 300ms ease;
}

.ppg-service-card:hover .ppg-service-card__img {
  transform: scale(1.05);
}

/* Side arrows */
.ppg-services-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.ppg-services-slider__prev { left: -18px; }
.ppg-services-slider__next { right: -18px; }

.ppg-services-slider__navbtn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
}

/* Improve clickability on smaller screens */
@media (max-width: 640px) {
  .ppg-services-slider__prev { left: -8px; }
  .ppg-services-slider__next { right: -8px; }
}

.ppg-services-slider__viewport { overflow: hidden; }
.ppg-services-slider__container { display: flex; gap: 24px; }
.ppg-services-slider__slide { flex: 0 0 100%; min-width: 0; }
@media (min-width: 1280px){ .ppg-services-slider__slide{ flex-basis:25%; } }


/* Icon services grid */
.ppg-icon-grid{
  display:grid;
  gap: 44px 56px;
}

@media (min-width: 640px){
  .ppg-icon-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px){
  .ppg-icon-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.ppg-icon-grid__icon{
  width: 78px;
  height: 78px;
  border: 1px solid #9ca3af;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 14px;
}

.ppg-icon-grid__icon img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display:block;
}

.ppg-icon-grid__title{
  color: #1f2937;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.ppg-icon-grid__text{
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
/* Make linked cards clickable */
.ppg-icon-grid__item.is-link{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Hover feedback (subtle, professional) */
.ppg-icon-grid__item.is-link:hover .ppg-icon-grid__icon{
  border-color: #344ca2;
}

.ppg-icon-grid__item.is-link:hover .ppg-icon-grid__title{
  color: #344ca2;
}
#content a.icon_service_grid:hover::after{
  height: 0;  
}
#content .icon_service_grid a:hover::after, .page-content a.icon_service_grid:hover::after, .post-content a.icon_service_grid:hover::after{
  height:0 ;
      transform: scaleX(0);
}

/* =========================================================
   Team page template
========================================================= */

.team-profile{
  padding: 72px 0 48px;
  background: #ffffff;
  color: #1f2f55;
}


.team-cta{
  padding: 24px 0 88px;
  background: #ffffff;
}

.team-cta__box{
  max-width: 560px;
  margin: 0 auto;
  background: #f5f5f5;
  border: 1px solid #344ca2;
  border-radius: 3px;
  padding: 32px 28px;
  text-align: center;
  margin-top: 5rem;
}

.team-cta__box h3{
  margin: 0 0 16px 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.team-cta__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.team-cta__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 18px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.team-cta__button--primary{
  background: #28a6d9;
  color: #ffffff;
  border-color: #28a6d9;
}

.team-cta__button--primary:hover{
  background: #1d8abc;
  border-color: #1d8abc;
}

.team-cta__button--ghost{
  background: transparent;
  color: #1f2f55;
  border-color: #1f2f55;
}

.team-cta__button--ghost:hover{
  background: #1f2f55;
  color: #ffffff;
}

@media (max-width: 1024px){
  .team-hero{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .team-hero__panel--image{
    min-height: 60vh;
  }

  .team-hero__inner{
    padding: 54px 24px;
  }
}

@media (max-width: 640px){
  .team-hero__inner{
    width: 100%;
  }

  .team-hero__title{
    font-size: 2.1rem;
  }

  .team-hero__actions,
  .team-cta__actions{
    flex-direction: column;
    align-items: flex-start;
  }

  .team-cta__box{
    margin: 0 16px;
  }
}

.page-template-page-team .ppg-hero{
  background-position: top center;
  height: 100%;
    width: auto;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Team card image: greyscale by default */
.ppg-team-photo {
  filter: grayscale(100%);
  transition: filter 300ms ease-in-out, transform 300ms ease-in-out;
  will-change: filter, transform;
}

/* On card hover, show colour */
.ppg-team-card:hover .ppg-team-photo {
  filter: grayscale(0%);
  transform: scale(1.01);
}

#content .team-meta a.absolute{
  position: absolute;
}
#content .team-meta a.absolute::after,#content .blog-block a::after {
    height: 0;
}
#content .team-meta a{
  color: #344ca2;
} 
/* p:empty {
  display: none;
}
p {
  min-height: 0;
} */

/* p:has(> br):not(:has(*:not(br))) {
  display: none;
} */
#content .blog-post h1{
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 700;;
}
.date-n-author{
  font-size: 1.15rem;
}
#content  a.cat-tag{
  color: #fff;
}
#content  a.cat-tag:hover::after{
  color: #27aae2;
}
#blog-category-page h2{
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    font-weight: 400;
}
#blog-category-page h2 a{
  color: #344ca2;
}
#blog-category-page h2 a.cat-blog-title:hover{
  text-decoration: none;
}
#blog-category-page  a::after{
  height: 0;
}
.ppg-video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.ppg-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.ppg-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.ppg-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-template-page-contact #content a{
  color: var(--color-gray-600);
}
.page-template-page-contact #content a::after{
  height: 1px;
  color: var(--color-gray-600);
}
.page-template-page-contact #content .ppg-eaf a, .page-template-page-contact #content .ppg-eaf a::after{
  color: #fff;
}

.page-template-page-contact #content .featured-ct a, .page-template-page-contact #content .featured-ct h3{
  color:#fff;
}
#content .blog-block h2{
  color: #fff;
}
.download-guide-block{
  background-color: #344ca2;
}
#content .download-guide-block h2{
  color: #fff;
}
#content .download-guide-block a:hover{
  background-color: #27aae2;
  color: #fff;
  border: #27aae2;
}

/* Hide scrollbar (existing) */
.ppg-blog-slider::-webkit-scrollbar { display:none; }

/* Zoom-out on hover effect */
.ppg-blog-card__media { overflow: hidden; }

.ppg-blog-card__img {
  transform: scale(1.08);              /* slightly zoomed in by default */
  transition: transform 0.6s ease;     /* smooth */
  will-change: transform;
}

/* When hovering the card, zoom OUT to normal */
.ppg-blog-slider article:hover .ppg-blog-card__img {
  transform: scale(1);
}
.ppg-blog-slider article {
  transition: box-shadow 0.4s ease;
}
.ppg-blog-slider article:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.ppg-sidebar { position: fixed; inset: 0; z-index: 9999; pointer-events: none; }
.ppg-sidebar[aria-hidden="true"] { display: none; }

.ppg-sidebar__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,0.45);
  opacity: 0; transition: opacity 250ms ease;
}

.ppg-sidebar__panel{
  position:absolute; top:0; right:0; height:100%;
  width: min(460px, 92vw);
  background: #132a57;
  color: #fff;
  transform: translateX(100%);
  transition: transform 280ms ease;
  box-shadow: -20px 0 40px rgba(0,0,0,0.25);
  display:flex; flex-direction:column;
}

.ppg-sidebar.is-open { pointer-events: auto; }
.ppg-sidebar.is-open .ppg-sidebar__overlay{ opacity:1; }
.ppg-sidebar.is-open .ppg-sidebar__panel{ transform: translateX(0); }

.ppg-sidebar__header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 18px 12px;
}

.ppg-sidebar__title{ margin:0; font-size: 22px; font-weight: 700; }
.ppg-sidebar__close{
  width: 36px; height: 36px;
  border: 0; background: transparent; color:#fff;
  font-size: 28px; line-height: 1; cursor: pointer;
}

.ppg-sidebar__body{
  padding: 0 18px 18px;
  overflow:auto;
}

/* Optional: make form fields look clean on dark bg */
.ppg-sidebar input, .ppg-sidebar select, .ppg-sidebar textarea{
  width: 100%;
  background: #fff;
  color: #111;
  border: 0;
    border-bottom: 2px solid whitesmoke;
    background: transparent;
    color: whitesmoke;
    border-radius: 0;
}
.ppg-sidebar-lock { overflow: hidden; }

.ppg-gf-success{
  background:#e7f7ee;
  border:1px solid #bfe7cf;
  color:#135c2d;
  padding:12px 14px;
  margin:0 0 14px;
  font-weight:600;
}
.ppg-sidebar {
  color:#fff;
}
.ppg-sidebar .ppg-sidebar__title{
  color:#fff;
      font-size: 2rem;
    font-weight: 600;
    line-height: 1.125;
}

.ppg-sidebar .gform-theme--foundation .ginput_complex input, .ppg-sidebar .gform-theme--foundation .ginput_complex select{
border: 0;
    border-bottom: 2px solid whitesmoke;
    background: transparent;
    color: whitesmoke;
    border-radius: 0;
}

.ppg-sidebar .gform-theme--foundation .gfield input{
  border: 0;
    border-bottom: 2px solid whitesmoke;
    background: transparent;
    color: whitesmoke;
    border-radius: 0;
}
.ppg-sidebar .gform-theme--foundation .gfield input:focus{
  border-bottom: 1px solid #27aae2;
    box-shadow: none;
    background: transparent;
    color: whitesmoke;
}

.ppg-sidebar .gform-theme--foundation label.gfield_label.gform-field-label, .ppg-sidebar .gform-theme--foundation .gform-field-label--type-inline{
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.ppg-sidebar .gform-theme--framework .gform_required_legend .gfield_required{
  color: #fff;
}
.ppg-sidebar .gform-theme--foundation .gfield input[type="checkbox"]{
      border: 2px solid #fff;
    position: relative;
    display: initial;
    cursor: pointer;
    vertical-align: middle;
    margin: 0.5em;
    padding: 0.2rem 0.5rem 0.2rem 0;
    border-radius: 4px;
    background: #fff;
}
.ppg-sidebar .gform-theme--foundation .gfield input[type="checkbox"] + label{  
        font-size: .9rem;
    font-weight: 700;
    }
    .ppg-sidebar .gform-theme--foundation .gfield input[type="checkbox"] + label a, .ppg-sidebar .ppg-eaf__note a{
      text-decoration: underline;
      
    }
    .ppg-sidebar .ppg-eaf__note {   
    font-size: .9rem;
    font-weight: 700;
    }

.ppg-sidebar .gform-theme--framework .field_sublabel_above .gform-field-label--type-sub{
  display: none;
}
.ppg-sidebar .gform-theme--foundation .gfield textarea.medium{
  min-block-size: 6rem;
}

.ppg-sidebar .gform-theme.gform-theme--framework.gform_wrapper input[type="submit"]{
    background: #28a6d9 !important;
    border: 0;
    color: #fff;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 0 !important;
}
.ppg-sidebar .gform-theme.gform-theme--framework.gform_wrapper input[type="submit"]:hover{
  background: #1c8bbd !important;
}

.ppg-threeway-tiles {
  padding: 60px 0;
}

.ppg-threeway-tiles__inner {
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.ppg-threeway-tiles__title {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
}

.ppg-threeway-tiles__content {
  color: #4b5563;
}

.ppg-threeway-tiles__right {
  display: grid;
  gap: 18px;
}

.ppg-threeway-tiles__tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eee;
  min-height: 220px;
}

.ppg-threeway-tiles__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.ppg-threeway-tiles__overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 170, 226, 0.35); /* light blue overlay */
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ppg-threeway-tiles__tile:hover .ppg-threeway-tiles__overlay {
  opacity: 1;
}

.ppg-threeway-tiles__tile:hover .ppg-threeway-tiles__img {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 900px) {
  .ppg-threeway-tiles__inner {
    grid-template-columns: 1fr;
  }
  .ppg-threeway-tiles__tile {
    min-height: 200px;
  }
}
#content table{
  width: 100%;
}
#content table td, #content table th{
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}
.ppg-sidebar .gform-theme--framework .gform-field-label:where(:not([class*=gform-field-label--type-])){
  color: #fff;
  font-weight: 700;
    font-size: 0.9rem;
}
div#gfield_description_2_22, span.gfield_required.gfield_required_asterisk {
    color: #fff;
    font-weight: 600;
}
#content h3.ppg-sidebar__title{
  color: #fff;
}
p:has(+ h2) {
  margin-bottom: 2.5rem;
}
p:not(:last-child) + h2 {
  margin-top: 2rem;
}
p:empty,
p:has(br):not(:has(:not(br))) {
  display: none;
}
p:has(strong > br):not(:has(:not(strong, br))) {
  display: none;
}
p:has(br):not(:has(:not(br, strong))) {
  display: none;
}
#content a.social-share-link{
  color:#fff;
  text-decoration: none;
}
#content a.social-share-link:hover::after, #content .search-results a:hover::after, #content .search-results a::after{
  height: 0;
}
#content .blog-right-side ul{
  margin-left: 0;
}
#content .blog-right-side ul li{
  list-style-type: none;
}
#content .blog-right-side ul li a{
  color: #7a7a7a;
}
#content .blog-right-side ul li a:hover{
  color: #344ca2;
}
.search-results article figure img{
  margin-inline: auto;
  display: block; 
  max-width: var(--container-content);
}
.ppg-hero-links{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,.85);
}

.ppg-hero-links__label{
  margin-right: 6px;
  color: rgba(255,255,255,.75);
  font-size: 1.2rem;
  font-weight: 600;
}

.ppg-hero-links__link{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 1rem;
    font-weight: 600;
}

.ppg-hero-links__link:hover{
  text-decoration: none;
}

.ppg-hero-links__sep{
  margin-right: 6px;
}
