:root{
  --pfs-red:#e82912;
  --pfs-orange:#ff5a1f;
  --pfs-blue:#06295d;
  --pfs-dark:#050b14;
}

body{
  margin:0;
   font-family: 'Poppins', sans-serif !important;
  color:#111;
  background:#fff;
}
.pfs-benefit-stack{
  width: 164px; 
  padding: 4px;
}

.pfs-benefit-card{
  min-height: 72px;
  padding: 14px 15px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
 
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px;
  box-shadow: inset 0 0 18px rgba(255,86,20,.08);
}

.pfs-benefit-card:last-child{
  margin-bottom: 0;
}

.pfs-benefit-card i{
  color: #d72710;
  font-size: 31px;
  line-height: 1;
  min-width: 34px;
}

.pfs-benefit-card h5{
  color: #fff;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.pfs-topbar{
  font-size:13px;
  padding:8px 0;
  border-bottom:1px solid #eee;
}

.pfs-topbar i{
  color:var(--pfs-orange);
  margin-right:6px;
}

.pfs-header{
  padding:18px 0;
  background:#fff;
}

.pfs-logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--pfs-blue);
  font-weight:500;
  font-size:25px;
  line-height:1.05;
}

.pfs-logo-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff4b16,#ff8a00);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
}

.pfs-clients-area{
  padding:80px 0;
  background:#ffffff;
}

.pfs-clients-heading{
  text-align:center;
  margin-bottom:40px;
}

.pfs-clients-heading span{
  color:#ff4d00;
  font-weight: 600;
  text-transform:uppercase;
  letter-spacing:1px;
}

.pfs-clients-heading h2{
  font-size:30px;
  
  color:#111;
  margin-top:10px;
}

.pfs-clients-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:0;
  border-top:1px solid #e5e5e5;
  border-left:1px solid #e5e5e5;
}

.pfs-client-logo-box{
  height:130px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  border-right:1px solid #e5e5e5;
  border-bottom:1px solid #e5e5e5;
  transition:.35s ease;
}

.pfs-client-logo-box img{
  max-width:120px;
  max-height:70px;
  object-fit:contain;

  opacity:.75;
  transition:.35s ease;
}

.pfs-client-logo-box:hover{
  background:#fff7f3;
  box-shadow:0 10px 25px rgba(255,77,0,.12);
  z-index:2;
}

.pfs-client-logo-box:hover img{
  filter:grayscale(0);
  opacity:1;
  transform:scale(1.05);
}

@media(max-width:991px){
  .pfs-clients-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media(max-width:576px){
  .pfs-clients-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .pfs-client-logo-box{
    height:110px;
  }

  .pfs-clients-heading h2{
    font-size:28px;
  }
}

.pfs-top-info-bar{
    background:#fff;
   
    border-bottom:1px solid #ececec;
}

.pfs-logo-main-box{
    display:flex;
    align-items:center;
}

.pfs-logo{
    max-height:75px;
    width:auto;
    object-fit:contain;
}

.pfs-info-wrapper{
    display:flex;
    justify-content:flex-end;
    gap:60px;
}

.pfs-info-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.pfs-icon{
    width:35px;
    height:35px;
    border:2px solid #ff6b35;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.pfs-icon i{
    color:#ff6b35;
    font-size:18px;
}

.pfs-info-item h5{
    margin:0;
    font-size:18px;
    font-weight: 600;
}

.pfs-info-item p{
    margin:0;
    font-size:13px;
    color:#666;
}

@media(max-width:991px){

    .pfs-logo-main-box{
        justify-content:center;
        margin-bottom:20px;
    }

    .pfs-info-wrapper{
        justify-content:center;
        flex-wrap:wrap;
        gap:25px;
    }
}

.pfs-header-info{
  display:flex;
  justify-content:end;
  gap:40px;
  align-items:center;
  font-weight:500;
}

.pfs-header-info i{
  color:var(--pfs-orange);
  font-size:28px;
  margin-right:8px;
}

.pfs-navbar{
  background:var(--pfs-blue);
  border-radius:7px 7px 0 0;
  overflow:hidden;
}

.pfs-navbar .nav-link{
  color:#fff;
  font-size:14px;
  font-weight:500;
  padding:19px 18px;
}

.pfs-navbar .nav-link:hover,
.pfs-navbar .nav-link.active{
  color:var(--pfs-orange);
}

.pfs-quote{
  background:var(--pfs-red);
  color:white;
  text-decoration:none;
  padding:20px 28px;
  font-weight:500;
}

.pfs-hero{
  background:
  linear-gradient(90deg,rgba(0,0,0,.97),rgba(0,0,0,.75),rgba(0,0,0,.25)),
  url("assets/images/fire-hero-bg.jpg");
  background-size:cover;
  background-position:center;
  min-height:488px;
  color:white;
  position:relative;
}

.pfs-hero-content{
  padding:21px 0 55px;
}

.pfs-hero h6{
  color:var(--pfs-orange);
  font-weight:500;
}

.pfs-hero h1{
  font-size:40px;
  font-weight:600;
  line-height:1.08;
}

.pfs-hero h1 span{
  color:var(--pfs-orange);
}

.pfs-hero-sub{
  font-size:22px;
  font-weight: 600;
}

.pfs-hero-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px 10px;
  margin:25px 0;
 
}

.pfs-hero-list i{
  color:var(--pfs-orange);
  margin-right:8px;
}

.pfs-btn-red{
  background:var(--pfs-red);
  color:white;
  border:0;
  padding:15px 28px;
  font-weight:500;
  border-radius:4px;
}

.pfs-btn-outline{
  border:1px solid white;
  color:white;
  background:transparent;
  padding:15px 28px;
  font-weight:300;
  border-radius:4px;
}

.pfs-hero-img img{
  width:100%;
  max-height:470px;
  object-fit:contain;
  filter:drop-shadow(0 20px 25px rgba(0,0,0,.6));
}

.pfs-side-card{
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.45);
  padding:16px;
  border-radius:5px;
  margin-bottom:10px;
  font-size:13px;
  font-weight:500;
}

.pfs-side-card i{
  color:var(--pfs-orange);
  font-size:27px;
  margin-right:8px;
}

.pfs-trust-index{
  margin-top:-35px;
  position:relative;
  z-index:3;
}

.pfs-trust-box{
  background:white;
  border-radius:12px;
  box-shadow:0 12px 35px rgba(0,0,0,.15);
  padding:22px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:15px;
}

.pfs-trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:500;
  border-right:1px solid #eee;
}

.pfs-trust-item:last-child{
  border-right:0;
}

.pfs-trust-item i{
  color:var(--pfs-orange);
  
  font-size:32px;
}

.pfs-title{
  font-weight:500 !important;
  margin-bottom:25px;
  position:relative;
}

.pfs-title:after{
  content:"";
  width:55px;
  height:4px;
  background:var(--pfs-red);
  position:absolute;
  left:0;
  bottom:-8px;
}

.pfs-product-card{
  border:1px solid #ddd;
  border-radius:6px;
  background:white;
  padding:15px;
  height:100%;
  transition:.3s;
}

.pfs-product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.pfs-product-card h6{
  font-size:13px;
  font-weight:500;
}

.pfs-product-card img{
  width:100%;
  height:150px;
  object-fit:contain;
  margin:12px 0;
}

.pfs-client-section{
    padding:90px 0;
    background:#f8f9fb;
}

.pfs-client-subtitle{
    color:#ff4d00;
    font-weight: 600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.pfs-client-title{
    font-size:48px;
   
    color:#111;
    margin-top:10px;
}

.pfs-client-desc{
    color:#666;
    max-width:700px;
    margin:auto;
}

.col-lg-2-4{
    width:20%;
}

.pfs-client-card{
    background:#fff;
    border-radius:16px;
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    border:1px solid #ececec;

    transition:.4s ease;
    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.pfs-client-card img{
    max-width:100%;
    max-height:70px;
    object-fit:contain;

    filter:grayscale(100%);
    opacity:.75;

    transition:.4s;
}

.pfs-client-card:hover{
    transform:translateY(-8px);

    border-color:#ff4d00;

    box-shadow:
    0 15px 35px rgba(255,77,0,.15);
}

.pfs-client-card:hover img{
    filter:none;
    opacity:1;
}

@media(max-width:991px){

    .col-lg-2-4{
        width:33.333%;
    }

    .pfs-client-title{
        font-size:34px;
    }
}

@media(max-width:576px){

    .col-lg-2-4{
        width:50%;
    }

    .pfs-client-card{
        height:100px;
    }

    .pfs-client-card img{
        max-height:50px;
    }
}

.pfs-product-card ul{
  padding:0;
  list-style:none;
  margin:0;
  font-size:13px;
}

.pfs-product-card li{
  margin-bottom:6px;
}

.pfs-product-card li:before{
  content:"✓";
  color:var(--pfs-orange);
  font-weight:500;
  margin-right:6px;
}

.pfs-round-icon{
  width:31px;
  height:31px;
  background:var(--pfs-red);
  color:white;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:7px;
}

.pfs-mini-card{
  border:1px solid #ddd;
  background:white;
  border-radius:6px;
  text-align:center;
  padding:20px 8px;
  height:100%;
  font-weight:500;
  font-size:13px;
}

.pfs-mini-card i{
  display:block;
  color:var(--pfs-orange);
  font-size:34px;
  margin-bottom:8px;
}

.pfs-view-btn{
  background:var(--pfs-blue);
  color:white;
  border:0;
  padding:10px 24px;
  border-radius:4px;
  font-size:13px;
  font-weight:500;
}
.bg-purple{
  background:#7b1fa2 !important;
}

.pfs-stats{
  background:linear-gradient(90deg,#06295d,#06295d,#d72710);
  padding:32px 0;
  color:white;
}

.pfs-stat-box{
  display:flex;
  align-items:center;
  gap:18px;
  border-right:1px solid rgba(255,255,255,.2);
}

.pfs-stat-box i{
  font-size:46px;
  color:var(--pfs-orange);
}

.pfs-stat-box h3{
  font-size:35px;
  font-weight:500;
  margin:0;
}

.pfs-stat-box p{
  margin:0;
  font-size:14px;
  font-weight: 600;
}

.pfs-soft-bg{
  background:#fafafa;
}

.pfs-center-title{
  text-align:center;
  font-weight:500;
  color:var(--pfs-blue);
  margin-bottom:25px;
}

.pfs-client-card{
  background:white;
  border:1px solid #ddd;
  border-radius:8px;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:500;
  color:var(--pfs-blue);
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.pfs-testimonial-card{
  background:white;
  border:1px solid #ddd;
  border-radius:8px;
  padding:25px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.pfs-testimonial-card h6{
  color:#4285f4;
  font-weight:500;
}

.pfs-testimonial-card p{
  font-size:14px;
}

.pfs-cert-card{
  background:white;
  border:1px solid #ddd;
  border-radius:6px;
  padding:8px;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
}

.pfs-cert-card img{
  width:100%;
  height:165px;
  object-fit:cover;
}

.pfs-blog-card{
  background:#06111f;
  border-radius:6px;
  overflow:hidden;
  color:white;
  position:relative;
  display:flex;
  min-height:120px;
}

.pfs-blog-card img{
  width:45%;
  object-fit:cover;
 
}

.pfs-blog-content{
  padding:14px;
}

.pfs-blog-content small{
  color:#ccc;
  font-size:11px;
}

.pfs-blog-content h6{
  font-size:14px;
  font-weight:500;
  line-height:1.4;
}

.pfs-blog-content a{
  color:#ff9b2f;
  text-decoration:none;
  font-size:12px;
  font-weight:500;
}

.pfs-cta{
  background:linear-gradient(90deg,#de220d,#f03612);
  color:white;
  padding:35px 0;
  overflow:hidden;
}

.pfs-cta img{
  width:100%;
  max-height:130px;
  object-fit:contain;
}

.pfs-cta h6{
  color:#ffe600;
  font-weight:500;
}

.pfs-cta h2{
  font-size:34px;
  font-weight:500;
}

.pfs-cta p{
  margin:0;
}

.pfs-cta-outline{
  border:1px solid white;
  background:transparent;
  color:white;
  font-weight:500;
  padding:15px 30px;
  border-radius:4px;
  margin-right:12px;
}

.pfs-cta-white{
  border:0;
  background:white;
  color:var(--pfs-red);
  font-weight:500;
  padding:15px 30px;
  border-radius:4px;
}

.pfs-footer{
  background:#061f48;
  color:white;
  padding:45px 0 18px;
}

.pfs-footer-logo{
  font-size:22px;
  font-weight:500 ;
  margin-bottom:18px;
  
  border-radius: 10px;
}

.pfs-footer-logo i{
  color:var(--pfs-orange);
  font-size:34px;
}

.pfs-footer p{
  color:#d9e5f7;
  font-size:14px;
}

.pfs-footer h6{
  font-weight:500;
  margin-bottom:16px;
}

.pfs-footer ul{
  padding:0;
  margin:0;
  list-style:none;
}

.pfs-footer li{
  color:#d9e5f7;
  font-size:14px;
  margin-bottom:9px;
}

.pfs-footer li i{
  color:var(--pfs-orange);
  margin-right:7px;
}

.pfs-social i{
  width:34px;
  height:34px;
  background:#0b3b78;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:6px;
}

.pfs-footer hr{
  border-color:rgba(255,255,255,.15);
}

.pfs-copy{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  font-size:13px;
}

.pfs-top-btn{
  position:fixed;
  right:22px;
  bottom:20px;
  width:38px;
  height:38px;
  border-radius:50%;
  border:0;
  background:white;
  color:var(--pfs-red);
  box-shadow:0 5px 18px rgba(0,0,0,.25);
}

@media(max-width:991px){
  .pfs-header-info{
    justify-content:start;
    flex-wrap:wrap;
    margin-top:18px;
  }

  .pfs-hero h1{
    font-size:40px;
  }

  .pfs-trust-box{
    grid-template-columns:repeat(2,1fr);
  }

  .pfs-side-card{
    display:inline-block;
    width:48%;
  }

  .pfs-quote{
    display:block;
  }
}

@media(max-width:576px){
  .pfs-topbar{
    font-size:12px;
  }

  .pfs-logo{
    font-size:19px;
  }

  .pfs-logo-icon{
    width:55px;
    height:55px;
    font-size:30px;
  }

  .pfs-header-info{
    gap:15px;
    font-size:13px;
  }

  .pfs-hero{
    min-height:auto;
  }

  .pfs-hero-content{
    padding:45px 0;
  }

  .pfs-hero h1{
    font-size:32px;
  }

  .pfs-hero-sub{
    font-size:16px;
  }

  .pfs-hero-list{
    grid-template-columns:1fr;
  }

  .pfs-btn-red,
  .pfs-btn-outline{
    width:100%;
    margin-bottom:12px;
  }

  .pfs-side-card{
    width:100%;
  }

  .pfs-trust-box{
    grid-template-columns:1fr;
  }

  .pfs-trust-item{
    border-right:0;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
  }

  .pfs-blog-card{
    display:block;
  }

  .pfs-blog-card img{
    width:100%;
    height:160px;
  }

  .pfs-cta-outline,
  .pfs-cta-white{
    width:100%;
    margin:8px 0;
  }

  .pfs-copy{
    display:block;
  }
}


.pfs-dealer-section{
    background:#fafafa;
}

.pfs-subtitle{
    color:#dc2626;
    font-weight: 600;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
}

.pfs-title{
    font-size:29px;
    
    color:#111;
    margin-top:10px;
}

.pfs-desc{
    max-width:650px;
    margin:auto;
    color:#666;
}

.pfs-logo-box{
    background:#fff;
    height:120px;
    border-radius:15px;
    border:1px solid #eee;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.pfs-logo-box:hover{
    transform:translateY(-6px);
    border-color:#dc2626;
    box-shadow:0 15px 35px rgba(220,38,38,.15);
}

.pfs-logo-box img{
    max-width:100%;
    max-height:70px;
    object-fit:contain;
 
    transition:.3s;
}

.pfs-logo-box:hover img{
    filter:none;
}

@media(max-width:768px){
    .pfs-title{
        font-size:28px;
    }

    .pfs-logo-box{
        height:100px;
    }
}


.pfs-testimonial-section{
    background: linear-gradient(135deg, #fff0f0 0%, #ffffff 55%, #ffecec 100%);
}

.pfs-small-title{
    color:#e11d1d;
    font-weight: 600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.pfs-main-title{
    font-size:42px;
   
    color:#0a285f;
    margin-top:10px;
}

.pfs-testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    position:relative;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    border-top:4px solid #e11d1d;
}

.pfs-testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.pfs-quote-icon{
    width:60px;
    height:60px;
    background:#e11d1d;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.pfs-testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}



.pfs-client-info h5{
    margin:0;
    font-size:18px;
    font-weight: 600;
    color:#0a285f;
}

.pfs-client-info span{
    font-size:14px;
    color:#777;
}

.pfs-rating{
    color:#ffc107;
    margin-top:4px;
    letter-spacing:2px;
}

@media(max-width:991px){

    .pfs-main-title{
        font-size:32px;
    }

}


.pfsx-fire-cta-wrap{
    padding:40px 0;
}

.pfsx-fire-cta-box{
    background:linear-gradient(90deg,#e51c00,#ff2200);
    min-height:150px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    overflow:hidden;
    position:relative;
}

/* Left Fireman */

.pfsx-fireman-area{
    width:220px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    height:150px;
}

.pfsx-fireman-area img{
    max-height:161px;
    object-fit:contain;
}

/* Content */

.pfsx-fire-cta-content{
    flex:1;
    padding:16px 10px;
}

.pfsx-fire-mini-title{
    color:#ffd84d;
    font-size:14px;
    font-weight: 600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.pfsx-fire-cta-content h2{
    color:#fff;
    font-size:30px;
    font-weight:600;
    margin:5px 0;
    line-height:1.1;
}

.pfsx-fire-cta-content p{
    color:#fff;
    font-size:17px;
    max-width:600px;
    margin:0;
}

/* Buttons */

.pfsx-fire-cta-buttons{
    display:flex;
    gap:15px;
    padding-right:40px;
}

.pfsx-btn-outline{
    min-width:220px;
    height:60px;
    border:2px solid rgba(255,255,255,.7);
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 600;
    border-radius:4px;
    transition:.3s;
}

.pfsx-btn-outline:hover{
    background:#fff;
    color:#e51c00;
}

.pfsx-btn-solid{
    min-width:220px;
    height:60px;
    background:#fff;
    color:#e51c00;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 600;
    border-radius:4px;
    transition:.3s;
}

.pfsx-btn-solid:hover{
    background:#111;
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .pfsx-fire-cta-box{
        flex-direction:column;
        text-align:center;
        padding:30px 20px;
    }

    .pfsx-fireman-area{
        width:100%;
        height:auto;
        margin-bottom:15px;
    }

    .pfsx-fire-cta-content h2{
        font-size:34px;
    }

    .pfsx-fire-cta-buttons{
        padding-right:0;
        margin-top:20px;
        flex-direction:column;
        width:100%;
    }

    .pfsx-btn-outline,
    .pfsx-btn-solid{
        width:100%;
    }
}


.pfsp-product-slider-section{background:#fff;overflow:hidden}
.pfsp-small-title{color:#ed1c0d;font-size:14px;font-weight: 600;text-transform:uppercase;letter-spacing:1px}
.pfsp-main-title{font-size:32px;font-weight:600;color:#061f4a}

.pfsp-view-btn{
  border:1px solid #ed1c0d;color:#ed1c0d;padding:11px 22px;
  border-radius:5px;text-decoration:none;font-weight: 600;transition:.3s
}
.pfsp-view-btn:hover{background:#ed1c0d;color:#fff}

.pfsp-product-card{
  background:#fff;border:1px solid #ddd;border-radius:10px;padding:22px;
  height:100%;transition:.35s;box-shadow:0 8px 25px rgba(0,0,0,.05)
}
.pfsp-product-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(0,0,0,.12);border-color:#ed1c0d}
.pfsp-product-card img{width:100%;height:160px;object-fit:contain;margin-bottom:18px}
.pfsp-product-card h5{font-size:18px;color:#061f4a;margin-bottom:8px; font-weight: 550;}
.pfsp-product-card p{font-size:14px;color:#666;line-height:1.5;min-height:45px}

.pfsp-buy-btn{
  display:inline-block;background:#061f4a;color:#fff!important;text-decoration:none;
  padding:10px 22px;border-radius:5px;font-size:14px;
  margin-top:8px;opacity:1!important;visibility:visible!important;transition:.3s
}
.pfsp-buy-btn:hover{background:#ed1c0d;color:#fff!important}

#pfspProductSlider{position:relative;padding:0 55px}

.pfsp-slider-btn{
  width:45px!important;height:45px!important;top:50%!important;
  transform:translateY(-50%);background:#061f4a!important;opacity:1!important;
  border-radius:50%;display:flex!important;align-items:center;justify-content:center
}
.pfsp-slider-btn:hover{background:#ed1c0d!important}
.pfsp-prev-btn{left:0!important}
.pfsp-next-btn{right:0!important}
.pfsp-slider-btn i{color:#fff;font-size:24px;line-height:1}

@media(max-width:991px){
  .pfsp-product-head{flex-direction:column;align-items:flex-start!important;gap:18px}
  .pfsp-main-title{font-size:28px}
  #pfspProductSlider{padding:0 10px}
}




.pfnews-pro-section{
  padding:100px 0;
  background:
    radial-gradient(circle at top left, rgba(255,74,28,.08), transparent 32%),
    linear-gradient(180deg,#f8fafc 0%,#ffffff 100%);
}

.pfnews-pro-header{
  max-width:760px;
  margin:0 auto 52px;
  text-align:center;
}

.pfnews-pro-header span{
  display:inline-block;
  color:#e93612;
  font-size:13px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.pfnews-pro-header h2{
  color:#071426;
  font-size:46px;
  font-weight:600;
  letter-spacing:-1.2px;
  margin:0;
  text-transform:uppercase;
}

.pfnews-pro-header p{
  color:#667085;
  font-size:17px;
  line-height:1.7;
  margin:14px auto 0;
}

.pfnews-pro-card{
  height:100%;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(7,20,38,.08);
  box-shadow:0 18px 50px rgba(7,20,38,.08);
  transition:.4s ease;
}

.pfnews-pro-card:hover{
  transform:translateY(-10px);
  box-shadow:0 32px 80px rgba(7,20,38,.16);
}

.pfnews-pro-image{
  height:218px;
  display:block;
  overflow:hidden;
  position:relative;
  background:#071426;
}

.pfnews-pro-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 45%,rgba(3,12,25,.75));
}

.pfnews-pro-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.65s ease;
}

.pfnews-pro-card:hover .pfnews-pro-image img{
  transform:scale(1.08);
}

.pfnews-pro-badge{
  position:absolute;
  left:22px;
  bottom:20px;
  z-index:2;
  background:#e93612;
  color:#fff;
  padding:7px 15px;
  border-radius:40px;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.7px;
}

.pfnews-pro-content{
  padding:17px;
}

.pfnews-pro-meta{
  color:#e93612;
  font-size:14px;
  font-weight:600;
  margin-bottom:14px;
}

.pfnews-pro-meta i{
  margin-right:6px;
}

.pfnews-pro-content h3{
  color:#071426;
  font-size:19px;
  font-weight:600;
  line-height:1.28;
  margin:0 0 14px;
}

.pfnews-pro-content p{
  color:#667085;
  font-size:15.5px;
  line-height:1.7;
  margin-bottom:24px;
}

.pfnews-pro-link{
  color:#071426;
  text-decoration:none;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:.3s;
  border: 1px #e93612 solid;
  padding: 10px;
  border-radius: 10px;
}

.pfnews-pro-link i{
  color:#e93612;
  transition:.3s;
}

.pfnews-pro-link:hover{
  color:#e93612;
}

.pfnews-pro-link:hover i{
  transform:translate(4px,-4px);
}

.pfnews-pro-btn-wrap{
  text-align:center;
  margin-top:50px;
}

.pfnews-pro-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#071426;
  color:#fff;
  text-decoration:none;
  padding:16px 38px;
  border-radius:50px;
  font-weight:600;
  text-transform:uppercase;
  transition:.35s;
}

.pfnews-pro-btn:hover{
  background:#e93612;
  color:#fff;
  transform:translateY(-3px);
}

@media(max-width:991px){
  .pfnews-pro-header h2{
    font-size:34px;
  }

  .pfnews-pro-image{
    height:240px;
  }
}

@media(max-width:576px){
  .pfnews-pro-section{
    padding:70px 0;
  }

  .pfnews-pro-header h2{
    font-size:28px;
  }

  .pfnews-pro-content{
    padding:24px;
  }
}


/* ===== Navbar + Above Navbar Accurate Responsive Update ===== */
/* html{scroll-behavior:smooth;overflow-x:hidden} */

img{max-width:100%;height:auto}

/* Top contact bar */
.pfs-topbar{
  background:#fff;
  color:#222;
  font-size:13px;
  padding:8px 0;
  border-bottom:1px solid #eee;
}
.pfs-topbar .pfs-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}
.pfs-topbar-contact{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px 24px;
}
.pfs-topbar-contact span{display:inline-flex;align-items:center;white-space:nowrap}
.pfs-topbar-social{display:flex;align-items:center;gap:10px;white-space:nowrap}
.pfs-topbar-social i{margin:0;color:var(--pfs-orange)}

/* Logo and info strip */
.pfs-top-info-bar{
  background:#fff;
  border-bottom:1px solid #ececec;
  padding:15px 0;
}
.pfs-logo-main-box{display:flex;align-items:center}
.pfs-logo{max-height:100px;width:auto;object-fit:contain;padding: 5px;}
.pfs-info-wrapper{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:42px;
}
.pfs-info-item{display:flex;align-items:center;gap:12px;min-width:max-content}
.pfs-icon{flex:0 0 35px}
.pfs-info-item h5{margin:0;font-size:18px;font-weight: 600;color:#111;line-height:1.15}
.pfs-info-item p{margin:0;font-size:13px;color:#666;line-height:1.25}

/* Desktop navbar */
.pfs-nav-wrap{background:#fff}
.pfs-navbar{
  background:var(--pfs-blue);
  border-radius:7px 7px 0 0;
  overflow:visible;
  min-height:61px;
}
.pfs-desktop-menu{display:flex;align-items:center;width:100%}
.pfs-desktop-menu .navbar-nav{
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  gap:0;
  margin-left:0!important;
}
.pfs-navbar .nav-link{
  color:#fff!important;
  font-size:14px;
  font-weight:500;
  padding:20px 13px;
  letter-spacing:.1px;
  white-space:nowrap;
  transition:.25s ease;
}
.pfs-navbar .nav-link:hover,
.pfs-navbar .nav-link.active{color:var(--pfs-orange)!important}
.pfs-quote{
  background:var(--pfs-red);
  color:white!important;
  text-decoration:none;
  padding:20px 24px;
  font-weight:600;
  white-space:nowrap;
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  transition:.25s ease;
}
.pfs-quote:hover{background:#c91f0d;color:#fff!important}

/* Mobile navbar bar */
.pfs-mobile-nav-inner{
  width:100%;
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.pfs-mobile-brand-text{
  color:#fff;
  font-size:14px;
  font-weight: 600;
  letter-spacing:.7px;
}
.pfs-mobile-actions{display:flex;align-items:center;gap:10px}
.pfs-mobile-call{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#fff;
  text-decoration:none;
  font-size:12px;
  font-weight:600;
  border:1px solid rgba(255,255,255,.35);
  padding:9px 11px;
  border-radius:5px;
}
.pfs-mobile-toggler{
  width:42px;
  height:42px;
  background:#fff;
  border:0;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  box-shadow:0 4px 14px rgba(0,0,0,.18);
}
.pfs-mobile-toggler:focus{box-shadow:0 0 0 .2rem rgba(255,255,255,.25)}
.pfs-mobile-toggler .navbar-toggler-icon{width:22px;height:22px}

/* Left slide mobile menu */
.pfs-mobile-menu{
  width:315px!important;
  max-width:86vw;
  background:#061f48;
  color:#fff;
  border:0;
  transition:transform .42s cubic-bezier(.22,.61,.36,1);
}
.pfs-mobile-menu-header{
  background:#fff;
  border-bottom:4px solid var(--pfs-red);
  padding:17px 18px;
}
.pfs-mobile-logo img{max-width:190px;max-height:70px;object-fit:contain}
.pfs-menu-close{box-shadow:none!important;opacity:1}
.pfs-mobile-menu-body{padding:12px 0 26px}
.pfs-mobile-menu .nav-link{
  color:#fff!important;
  padding:15px 24px;
  font-size:14px;
  font-weight:600;
  letter-spacing:.3px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.pfs-mobile-menu .nav-link:hover{background:rgba(255,255,255,.08);color:var(--pfs-orange)!important}
.pfs-mobile-quote{
  display:block;
  margin:22px 22px 0;
  background:var(--pfs-red);
  color:#fff!important;
  text-decoration:none;
  text-align:center;
  padding:14px 18px;
  border-radius:6px;
  font-weight:600;
}
.offcanvas-backdrop.show{opacity:.55}

@media(max-width:1399px){
  .pfs-navbar .nav-link{font-size:13px;padding:20px 10px}
  .pfs-quote{padding:20px 18px;font-size:13px}
  .pfs-info-wrapper{gap:34px}
}
@media(max-width:1199px){
  .pfs-navbar .nav-link{font-size:12px;padding:20px 7px}
  .pfs-quote{padding:20px 14px;font-size:12px}
  .pfs-info-wrapper{gap:24px}
  .pfs-hero h1{font-size:36px}
}
@media(max-width:991px){
  .pfs-topbar{font-size:12px;padding:8px 0 ; display: none;}
  .pfs-topbar .pfs-topbar-inner{justify-content:center;text-align:center;flex-direction:column;gap:5px; display: none;}
  .pfs-topbar-contact{justify-content:center;gap:3px 14px}
  .pfs-topbar-contact span{white-space:normal;justify-content:center}
  .pfs-topbar-social{justify-content:center;font-size:12px}

  .pfs-top-info-bar{padding:12px 0}
  .pfs-logo-main-box{justify-content:center;margin-bottom:13px}
  .pfs-logo{max-height:68px}
  .pfs-info-wrapper{justify-content:center;gap:12px;flex-wrap:wrap}
  .pfs-info-item{
    background:#fff;
    border:1px solid #eee;
    border-radius:10px;
    padding:10px 12px;
    min-width:150px;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
  }
  .pfs-info-item h5{font-size:16px}
  .pfs-info-item p{font-size:12px}

  .pfs-navbar{border-radius:0;min-height:58px}
  .pfs-nav-wrap .container-fluid{padding-left:16px!important;padding-right:16px!important}
  .pfs-hero{background-position:center;min-height:auto}
  .pfs-hero-content{padding:55px 0 65px}
  .pfs-hero-img{margin-top:30px;text-align:center}
  .pfs-hero-img img{max-height:360px}
  .pfs-benefit-stack{width:100%;display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:20px}
  .pfs-benefit-card{margin-bottom:0;min-height:84px;background:rgba(0,0,0,.28)}
  .pfs-trust-index{margin-top:-18px}
  section.p-5{padding:3rem 1rem!important}
  .pfs-stats{text-align:left}
  .pfs-stat-box{border-right:0;border-bottom:1px solid rgba(255,255,255,.18);padding-bottom:18px}
  .pfs-client-title,.pfs-main-title{font-size:32px}
  .pfs-footer-logo img{width:210px!important}
}
@media(max-width:767px){
  .pfs-topbar-contact{display:grid;grid-template-columns:1fr;gap:4px;width:100%}
  .pfs-topbar-social{gap:8px}
  .pfs-info-wrapper{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;width:100%}
  .pfs-info-item{min-width:0;justify-content:center;text-align:center;gap:8px;flex-direction:column;padding:10px 6px}
  .pfs-icon{width:32px;height:32px;flex-basis:32px}
  .pfs-mobile-brand-text{font-size:13px}
  .pfs-mobile-call{font-size:0;width:42px;height:42px;padding:0;justify-content:center;border-radius:6px}
  .pfs-mobile-call i{font-size:18px}
  .pfs-hero{text-align:center}
  .pfs-hero h1{font-size:31px;line-height:1.16}
  .pfs-hero h6{font-size:13px}
  .pfs-hero-list{text-align:left;max-width:360px;margin:24px auto}
  .pfs-btn-red,.pfs-btn-outline{display:block;width:100%;margin:0 0 12px!important}
  .pfs-benefit-stack{grid-template-columns:1fr}
  .pfs-trust-box{padding:18px}
  .pfsp-product-head{align-items:center!important;text-align:center}
  .pfsp-view-btn{width:100%;text-align:center}
  #pfspProductSlider{padding:0 2px}
  .pfsp-slider-btn{display:none!important}
  .pfs-clients-area{padding:60px 0}
  .pfs-logo-box{height:105px;padding:15px}
  .pfsx-fire-cta-content h2{font-size:28px}
  .pfsx-fire-cta-content p{font-size:15px}
}
@media(max-width:575px){
  .container,.container-fluid{padding-left:16px!important;padding-right:16px!important}
  .pfs-topbar{font-size:11.5px;line-height:1.55; display: none;}
  .pfs-logo{max-height:60px}
  .pfs-info-wrapper{grid-template-columns:1fr 1fr 1fr;gap:8px}
  .pfs-info-item h5{font-size:14px}
  .pfs-info-item p{font-size:10.5px;line-height:1.25}
  .pfs-mobile-brand-text{max-width:170px;line-height:1.25}
  .pfs-hero-content{padding:42px 0 52px}
  .pfs-hero h1{font-size:27px}
  .pfs-hero-sub{font-size:14px}
  .pfs-hero-img img{max-height:260px}
  .pfs-title,.pfsp-main-title{font-size:24px!important}
  .pfs-product-card img{height:125px}
  .pfsp-product-card{padding:18px}
  .pfsp-product-card img{height:140px}
  .pfs-mini-card{font-size:12px;padding:16px 7px}
  .pfs-mini-card i{font-size:28px}
  .pfs-client-logo-box{height:95px;padding:16px}
  .pfs-clients-heading h2{font-size:24px}
  .pfs-testimonial-card{padding:25px 20px}
  .pfnews-pro-image{height:200px}
  .pfnews-pro-content{padding:20px}
  .pfsx-fire-cta-box{padding:25px 16px}
  .pfsx-btn-outline,.pfsx-btn-solid{min-width:0;height:54px}
  /* .pfs-footer{text-align:center} */
  .pfs-footer-logo{display:inline-block;padding:14px}
  .pfs-copy{text-align:center}
  .pfs-top-btn{right:14px;bottom:14px}
}
@media(max-width:410px){
  .pfs-info-wrapper{grid-template-columns:1fr}
  .pfs-info-item{flex-direction:row;text-align:left;justify-content:flex-start;padding:10px 14px}
  .pfs-mobile-brand-text{font-size:12px;max-width:145px}
  .pfs-mobile-menu{width:285px!important}
  .pfs-hero h1{font-size:24px}
  .pfs-client-logo-box{height:88px}
}


/* ===== FINAL NAVBAR + TOP RESPONSIVE FIX ===== */
.pfs-nav-wrap{
  width:100%;
  background:var(--pfs-blue);
}
.pfs-navbar{
  width:100%;
  border-radius:0 !important;
  overflow:visible !important;
}
.pfs-navbar > .container-fluid{
  max-width:100%;
}
.pfs-desktop-menu{
  min-height:62px;
}
.pfs-desktop-menu .navbar-nav{
  flex-direction:row !important;
  align-items:center !important;
  flex-wrap:nowrap !important;
  min-height:62px;
}
.pfs-desktop-menu .nav-item{
  display:flex;
  align-items:center;
}
.pfs-desktop-menu .nav-link{
  display:flex;
  align-items:center;
  height:62px;
  padding:0 14px !important;
  font-size:13.5px !important;
}
.pfs-desktop-menu .pfs-quote{
  height:62px;
  min-width:190px;
  padding:0 24px !important;
}
.pfs-top-info-bar{
  padding:0px 0;
}
.pfs-logo-main-box{
  margin-bottom:0 !important;
}
.pfs-info-wrapper{
  align-items:center;
}

@media (min-width:1200px){
  .pfs-desktop-menu .nav-link{padding:0 18px !important;font-size:14px !important;}
  .pfs-desktop-menu .pfs-quote{min-width:210px;}
}

@media (max-width:1199px) and (min-width:992px){
  .pfs-desktop-menu .nav-link{padding:0 9px !important;font-size:12px !important;}
  .pfs-desktop-menu .pfs-quote{min-width:170px;font-size:12px !important;padding:0 15px !important;}
}

@media (max-width:991px){
  
  .pfs-logo-main-box{justify-content:center !important;margin-bottom:0 !important;}
  .pfs-logo{max-height:64px !important;}
  .pfs-info-wrapper{display:none !important;}
  .pfs-navbar{min-height:58px;}
  .pfs-mobile-nav-inner{min-height:58px;}
}

@media (max-width:575px){
  .pfs-logo{max-height:68px !important;}
  .pfs-mobile-brand-text{font-size:13px;letter-spacing:.4px;}
}


.footer-img-main{
    width: 250px;
    background-color: rgb(255, 255, 255);
    padding: 8px;
    border-radius: 10px;
}















*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Poppins',sans-serif;background:#f0f2f5;color:#101828}
a{text-decoration:none}



/* HERO */
.hero-product{
  display: none;
}

/* SHELL */
.shell{max-width:1320px;margin:32px auto 60px;padding:0 24px;display:grid;grid-template-columns:268px 1fr;gap:22px;align-items:start}

/* SIDEBAR */
.sidebar{background:#fff;border-radius:20px;border:1px solid #eaecf0;overflow:hidden;position:sticky !important;top:82px !important}
.side-head{padding:20px 20px 14px;border-bottom:1px solid #eaecf0}
.side-head small{display:block;color:#d71920;font-size:11px;font-weight: 600;letter-spacing:.09em;text-transform:uppercase;margin-bottom:4px}
.side-head h3{font-size:16px;font-weight: 600;color:#101828;margin:0}
.cat-list{padding:10px;list-style:none}
.cat-list li{margin-bottom:2px}
.cat-btn{width:100%;background:transparent;border:none;display:flex;align-items:center;justify-content:space-between;gap:8px;padding:11px 12px;border-radius:12px;font-size:13px;font-weight:600;color:#344054;cursor:pointer;transition:.18s;text-align:left}
.cat-btn:hover{background:#fff5f5;color:#d71920}
.cat-btn.active{background:#d71920;color:#fff;box-shadow:0 8px 20px rgba(215,25,32,.25)}
.cat-btn-left{display:flex;align-items:center;gap:9px}
.cat-ico{width:32px;height:32px;border-radius:10px;background:#f2f4f7;display:inline-flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;transition:.18s}
.cat-btn.active .cat-ico{background:rgba(255,255,255,.2)}
.cat-count{background:#f2f4f7;color:#667085;border-radius:999px;padding:3px 9px;font-size:11.5px;font-weight: 600;transition:.18s}
.cat-btn.active .cat-count{background:rgba(255,255,255,.2);color:#fff}
.help-card{margin:12px;border-radius:16px;background:#101828;padding:18px;color:#fff}
.help-card strong{font-size:14px}
.help-card p{font-size:12px;color:#9aa6b8;line-height:1.6;margin:7px 0 13px}
.help-card a{display:block;text-align:center;background:#d71920;color:#fff;border-radius:10px;padding:10px;font-size:13px;font-weight: 600;transition:.18s}
.help-card a:hover{background:#b5141b}

/* TOOLBAR */
.toolbar{background:#fff;border:1px solid #eaecf0;border-radius:18px;padding:16px 20px;margin-bottom:20px;display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;box-shadow:0 2px 8px rgba(0,0,0,.04)}
.toolbar-left h2{font-size:20px;font-weight: 600;color:#101828;margin:0}
.toolbar-left p{font-size:12.5px;color:#667085;margin:3px 0 0}
.search-box{display: none;
  position:relative;width:min(320px,100%)}
.search-box input{width:100%;height:44px;border:1px solid #d0d5dd;border-radius:12px;padding:0 42px 0 14px;font-size:13.5px;font-family:'Poppins',sans-serif;outline:none;color:#101828;background:#fff;transition:.2s}
.search-box input::placeholder{color:#98a2b3}
.search-box input:focus{border-color:#d71920;box-shadow:0 0 0 3px rgba(215,25,32,.1)}
.search-box i{position:absolute;right:13px;top:50%;transform:translateY(-50%);color:#98a2b3;font-size:16px;pointer-events:none}

/* PRODUCT GRID */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}

/* PRODUCT CARD */
.pcard{background:#fff;border:1px solid #eaecf0;border-radius:18px;overflow:hidden;transition:.22s;position:relative;display:flex;flex-direction:column}
.pcard:hover{transform:translateY(-5px);box-shadow:0 20px 44px rgba(0,0,0,.09);border-color:#ffd0d2}
.pcard-img{height:210px;background:#f8fafc;display:flex;align-items:center;justify-content:center;border-bottom:1px solid #eaecf0;position:relative;overflow:hidden;cursor:pointer}
.pcard-img img{max-width:80%;max-height:80%;object-fit:contain;transition:.28s}
.pcard:hover .pcard-img img{transform:scale(1.06)}
.pcard-img-overlay{position:absolute;inset:0;background:rgba(215,25,32,0);display:flex;align-items:center;justify-content:center;transition:.22s;opacity:0}
/* .pcard:hover .pcard-img-overlay{background:rgba(215,25,32,.08);opacity:1} */
.pcard-img-overlay i{font-size:28px;color:#d71920;background:#fff;border-radius:50%;width:48px;height:48px;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(0,0,0,.12)}
.pcard-body{padding:14px 16px 15px;flex:1;display:flex;flex-direction:column;gap:10px}
.pcard-body h4{font-size:13.5px;font-weight:600;color:#101828;margin:0;line-height:1.4;flex:1}
.pcard-action{display:flex;align-items:center;gap:8px}
.btn-view{flex:1;background:#fff;border:1.5px solid #d71920;color:#d71920;border-radius:10px;padding:8px 10px;font-size:12.5px;font-weight: 600;cursor:pointer;transition:.18s;font-family:'Poppins',sans-serif}
.btn-view:hover{background:#d71920;color:#fff}
.btn-enq{width:36px;height:36px;border-radius:10px;background:#fff5f5;border:1.5px solid #ffd0d2;color:#d71920;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.18s;flex-shrink:0}
.btn-enq:hover{background:#d71920;color:#fff;border-color:#d71920}
.btn-enq i{font-size:15px}

/* EMPTY */
.empty{grid-column:1/-1;background:#fff;border:1.5px dashed #d0d5dd;border-radius:20px;text-align:center;padding:54px;color:#667085}

/* TRUST STRIP */
.trust{margin-top:24px;display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.trust-item{background:#fff;border:1px solid #eaecf0;border-radius:16px;padding:16px;display:flex;gap:10px;align-items:center}
.trust-ico{width:40px;height:40px;border-radius:12px;background:#fff5f5;color:#d71920;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:18px}
.trust-item b{font-size:13px;display:block;font-weight:700}
.trust-item span{font-size:11.5px;color:#667085}

/* ===== LIGHTBOX ===== */
.lightbox-backdrop{
  position:fixed;inset:0;z-index:9999;
  background:rgba(10,12,18,.88);
  backdrop-filter:blur(6px);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .25s ease
}
.lightbox-backdrop.open{opacity:1;pointer-events:all}

.lightbox{
  position:relative;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  width:min(860px,94vw);
  max-height:92vh;
  display:flex;
  flex-direction:column;
  box-shadow:0 32px 80px rgba(0,0,0,.45);
  transform:scale(.93) translateY(12px);
  transition:transform .28s cubic-bezier(.22,1,.36,1);
}
.lightbox-backdrop.open .lightbox{transform:scale(1) translateY(0)}

.lightbox-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 20px;border-bottom:1px solid #eaecf0;
  flex-shrink:0;background:#fff;
}
.lightbox-header-left{display:flex;align-items:center;gap:10px}
.lightbox-cat-badge{background:#fff5f5;color:#d71920;border-radius:999px;padding:4px 12px;font-size:11px;font-weight: 600;letter-spacing:.06em;text-transform:uppercase;border:1px solid #ffd0d2}
.lightbox-counter{font-size:12.5px;color:#667085;font-weight:500}
.lightbox-close{
  width:36px;height:36px;border-radius:10px;border:1px solid #eaecf0;
  background:#f9fafb;cursor:pointer;display:flex;align-items:center;justify-content:center;
  font-size:18px;color:#667085;transition:.15s;flex-shrink:0
}
.lightbox-close:hover{background:#d71920;color:#fff;border-color:#d71920}

.lightbox-stage{
  flex:1;overflow:hidden;position:relative;
  background:#f8fafc;display:flex;align-items:center;justify-content:center;
  min-height:360px;max-height:55vh
}
.lightbox-stage img{
  max-width:37%;max-height:92%;object-fit:contain;
  transition:opacity .18s,transform .22s;
}
.lightbox-stage img.fading{opacity:0;transform:scale(.96)}

/* NAV ARROWS */
.lb-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.92);border:1px solid #eaecf0;
  box-shadow:0 4px 16px rgba(0,0,0,.12);
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  font-size:20px;color:#344054;transition:.18s;z-index:10
}
.lb-arrow:hover{background:#d71920;color:#fff;border-color:#d71920;box-shadow:0 6px 20px rgba(215,25,32,.3)}
.lb-arrow.prev{left:14px}
.lb-arrow.next{right:14px}
.lb-arrow:disabled{opacity:.35;pointer-events:none;background:#f2f4f7}

.lightbox-footer{
  padding:18px 24px 20px;border-top:1px solid #eaecf0;background:#fff;
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-shrink:0
}
.lb-name{font-size:17px;font-weight: 600;color:#101828;line-height:1.3;flex:1}
.lb-name small{display:block;margin-top:4px;font-size:12px;color:#667085;font-weight:400}

.lb-actions{display:flex;gap:10px;flex-shrink:0}
.lb-btn-enq{background:#d71920;color:#fff;border:none;border-radius:12px;padding:10px 20px;font-size:13px;font-weight: 600;cursor:pointer;font-family:'Poppins',sans-serif;transition:.18s;display:flex;align-items:center;gap:7px}
.lb-btn-enq:hover{background:#b5141b}
.lb-btn-share{background:#f9fafb;color:#344054;border:1px solid #eaecf0;border-radius:12px;padding:10px 14px;font-size:13px;font-weight:600;cursor:pointer;font-family:'Poppins',sans-serif;transition:.18s;display:flex;align-items:center;gap:6px}
.lb-btn-share:hover{background:#f0f2f5}

/* DOT STRIP */
.lb-dots{display:flex;gap:5px;align-items:center;justify-content:center;padding:10px 20px 4px;flex-shrink:0;background:#fff;flex-wrap:wrap;max-height:38px;overflow:hidden}
.lb-dot{width:7px;height:7px;border-radius:50%;background:#e4e7ec;border:none;cursor:pointer;padding:0;transition:.18s;flex-shrink:0}
.lb-dot.active{background:#d71920;width:20px;border-radius:999px}

/* FOOTER */


/* RESPONSIVE */
@media(max-width:1100px){.grid{grid-template-columns:repeat(2,1fr)}.trust{grid-template-columns:1fr 1fr}}
@media(max-width:900px){.shell{grid-template-columns:1fr}.sidebar{position: static !important;}.cat-list{display:grid;grid-template-columns:1fr 1fr;gap:6px}.help-card{display:none}}
@media(max-width:700px){.lightbox-footer{flex-direction:column}.lb-actions{width:100%}.lb-btn-enq,.lb-btn-share{flex:1;justify-content:center}}
@media(max-width:600px){.grid{grid-template-columns:1fr}.nav-links{display:none}.trust{grid-template-columns:1fr}.hero h1{font-size:26px}.lb-arrow{width:36px;height:36px;font-size:16px}}








.blog-card {
    cursor: pointer;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 2px solid #dc3545;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #b02a37;
}

.blog-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.blog-card h5 {
    margin-top: 15px;
    font-weight: 600;
    color: #111;
    min-height: 50px;
}

.blog-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    min-height: 90px; 
}

.blog-card .btn {
    margin-top: auto; 
    border-radius: 8px;
    padding: 8px 18px;
    background-color: #dc3545;
    border: none;
    color: #fff;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.blog-card .btn:hover {
    background-color: #b02a37;
    color: #fff;
}



   body {
      margin: 0;
      font-family: Poppins, Arial, sans-serif;
      background: #fff5f5;
      color: #151515;
    }

    .pfsr26-news-section {
      padding: 80px 0;
      overflow: hidden;
    }

    .pfsr26-main-title {
      text-align: center;
      margin-bottom: 45px;
    }

    .pfsr26-main-title span {
      color: #d71920;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .7px;
    }

    .pfsr26-main-title h2 {
      font-size: 31px;
      font-weight: 500;
      margin-top: 10px;
    }

    .pfsr26-main-title p {
      max-width: 720px;
      margin: 12px auto 0;
      color: #666;
      line-height: 1.8;
    }

    .pfsr26-feature-card {
      min-height: 620px;
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      background: url("../images/blog-cover-image.png") center/cover no-repeat;
      box-shadow: 0 25px 65px rgba(0,0,0,.18);
    }

    .pfsr26-feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.85));
    }

    .pfsr26-feature-content {
      position: absolute;
      left: 36px;
      right: 36px;
      bottom: 36px;
      color: #fff;
      z-index: 2;
    }

    .pfsr26-feature-label {
      display: inline-block;
      background: #d71920;
      color: #fff;
      padding: 9px 18px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .pfsr26-feature-content h3 {
      font-size: 28px;
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .pfsr26-review-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }

    .pfsr26-review-icons {
      display: flex;
    }

    .pfsr26-review-icons i {
      width: 34px;
      height: 34px;
      background: #fff;
      color: #d71920;
      display: grid;
      place-items: center;
      border-radius: 50%;
      margin-left: -8px;
      border: 2px solid #d71920;
    }

    .pfsr26-review-icons i:first-child {
      margin-left: 0;
    }

    .pfsr26-review-row strong {
      font-size: 15px;
      line-height: 1.2;
    }

    .pfsr26-feature-line {
      height: 1px;
      background: rgba(255,255,255,.45);
      margin-bottom: 22px;
    }

    .pfsr26-feature-content p {
      font-size: 16px;
      color: #f1f1f1;
      line-height: 1.8;
      max-width: 520px;
    }

    .pfsr26-feature-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: #d71920;
      padding: 13px 24px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 10px;
      transition: .3s;
    }

    .pfsr26-feature-btn:hover {
      background: #d71920;
      color: #fff;
      transform: translateY(-4px);
    }

    .pfsr26-run-wrapper {
      height: 620px;
      overflow: hidden;
      position: relative;
      border-radius: 28px;
    }

    .pfsr26-run-wrapper::before,
    .pfsr26-run-wrapper::after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 70px;
      z-index: 5;
      pointer-events: none;
    }

  

    .pfsr26-run-wrapper::after {
      bottom: 0;
      
    }

    .pfsr26-run-track {
      animation: pfsr26MoveUp 24s linear infinite;
    }

    .pfsr26-run-wrapper:hover .pfsr26-run-track {
      animation-play-state: paused;
    }

    @keyframes pfsr26MoveUp {
      0% {
        transform: translateY(0);
      }
      100% {
        transform: translateY(-50%);
      }
    }

    .pfsr26-small-blog {
      display: grid;
      grid-template-columns: 190px 1fr;
      gap: 22px;
      background: #fff;
      border-radius: 22px;
      padding: 14px;
      margin-bottom: 18px;
      box-shadow: 0 16px 42px rgba(0,0,0,.08);
      border: 1px solid rgba(215,25,32,.12);
      transition: .35s;
    }

    .pfsr26-small-blog:hover {
      transform: translateX(-8px);
      box-shadow: 0 24px 60px rgba(215,25,32,.18);
    }

    .pfsr26-small-img {
      height: 145px;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
    }

    .pfsr26-small-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pfsr26-small-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #111;
      color: #fff;
      border-radius: 25px;
      padding: 7px 13px;
      font-size: 12px;
      font-weight: 600;
    }

    .pfsr26-small-tag i {
      color: #d71920;
      margin-right: 5px;
    }

    .pfsr26-small-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .pfsr26-small-author {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #555;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .pfsr26-small-author i {
      width: 32px;
      height: 32px;
      background: #ffe9e9;
      color: #d71920;
      border-radius: 50%;
      display: grid;
      place-items: center;
    }

    .pfsr26-small-content h4 {
      font-size: 20px;
      font-weight: 500;
      line-height: 1.35;
      margin: 0 0 10px;
      color: #171717;
    }

    .pfsr26-date {
      color: #d71920;
      font-size: 13px;
      font-weight: 600;
    }

    @media (max-width: 991px) {
      .pfsr26-feature-card,
      .pfsr26-run-wrapper {
        height: auto;
        min-height: 520px;
      }

      .pfsr26-run-wrapper {
        margin-top: 30px;
      }
    }

    @media (max-width: 768px) {
      .pfsr26-news-section {
        padding: 55px 0;
      }

      .pfsr26-main-title h2 {
        font-size: 31px;
      }

      .pfsr26-feature-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
      }

      .pfsr26-feature-content h3 {
        font-size: 32px;
      }

      .pfsr26-small-blog {
        grid-template-columns: 1fr;
      }

      .pfsr26-small-img {
        height: 220px;
      }
    }



    

    .pfsbd47-details-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #fff7f7, #ffffff);
    font-family: Poppins, Arial, sans-serif;
  }

  .pfsbd47-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
  }

  .pfsbd47-heading span {
    color: #d71920;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .8px;
  }

  .pfsbd47-heading h2 {
    font-size: 26px;
    font-weight: 500;
    color: #151515;
    margin: 12px 0;
  }

  .pfsbd47-heading p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
  }

  .pfsbd47-detail-card {
    background: #fff;
    padding: 28px;
    border-radius: 30px;
    margin-bottom: 34px;
    border: 1px solid rgba(215, 25, 32, .12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
    transition: .35s ease;
  }

  .pfsbd47-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(215, 25, 32, .16);
  }

  .pfsbd47-detail-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 24px;
  }

  .pfsbd47-tag {
    display: inline-block;
    background: #fff0f0;
    color: #d71920;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 14px;
  }

  .pfsbd47-detail-card h3 {
    font-size: 23px;
    font-weight: 500;
    color: #161616;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .pfsbd47-detail-card p {
    color: #5f5f5f;
    line-height: 1.85;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .pfsbd47-detail-card ul {
    padding-left: 0;
    margin: 18px 0 0;
    list-style: none;
  }

  .pfsbd47-detail-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 500;
  }

  .pfsbd47-detail-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: #d71920;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .pfsbd47-details-section {
      padding: 60px 0;
    }

    .pfsbd47-heading h2 {
      font-size: 30px;
    }

    .pfsbd47-detail-card {
      padding: 18px;
      border-radius: 24px;
    }

    .pfsbd47-detail-card img {
      height: 230px;
    }

    .pfsbd47-detail-card h3 {
      font-size: 24px;
    }
  }




 .pfsfa91-area-section {
    padding: 36px 0;
    background: linear-gradient(135deg, #fff0f0 0%, #ffffff 55%, #ffecec 100%);
    font-family: Poppins, Arial, sans-serif;
  }

  .pfsfa91-state-box {
    background: #fff;
    padding: 42px;
    border-radius: 12px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .08);
    border: 1px solid rgba(215, 25, 32, .12);
  }

  .pfsfa91-subtitle {
    display: inline-block;
    color: #d71920;
    background: #fff0f0;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .pfsfa91-state-box h2 {
    font-size: 32px;
    font-weight: 500;
    color: #151515;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .pfsfa91-state-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .pfsfa91-state-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .pfsfa91-state-card {
    background: linear-gradient(135deg, #ffffff, #fff2f2);
    padding: 24px 18px;
    border-radius: 12px;
    border: 1px solid rgba(215, 25, 32, .14);
    transition: .35s ease;
  }

  .pfsfa91-state-card:hover {
    background: #d71920;
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(215, 25, 32, .25);
  }

  .pfsfa91-state-card i {
    width: 48px;
    height: 48px;
    background: #d71920;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 20px;
    margin-bottom: 15px;
    transition: .35s;
  }

  .pfsfa91-state-card h5 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #181818;
    transition: .35s;
  }

  .pfsfa91-state-card:hover i {
    background: #fff;
    color: #d71920;
  }

  .pfsfa91-state-card:hover h5 {
    color: #fff;
  }

  .pfsfa91-specialist-card {
    position: relative;
    min-height: 500px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .16);
  }

  .pfsfa91-specialist-card img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
  }

  .pfsfa91-specialist-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82));
    z-index: 1;
  }

  .pfsfa91-specialist-content {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
    z-index: 2;
    color: #fff;
  }

  .pfsfa91-specialist-content span {
    display: inline-block;
    background: #d71920;
    color: #fff;
    padding: 8px 17px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 14px;
  }

  .pfsfa91-specialist-content h3 {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .pfsfa91-specialist-content p {
    color: #f1f1f1;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .pfsfa91-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: #d71920;
    padding: 13px 24px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: .35s;
  }

  .pfsfa91-btn:hover {
    background: #d71920;
    color: #fff;
    transform: translateY(-4px);
  }

  @media (max-width: 768px) {
    .pfsfa91-area-section {
      padding: 60px 0;
    }

    .pfsfa91-state-box {
      padding: 26px;
    }

    .pfsfa91-state-box h2 {
      font-size: 29px;
    }

    .pfsfa91-state-grid {
      grid-template-columns: 1fr;
    }

    .pfsfa91-specialist-content {
      left: 24px;
      right: 24px;
      bottom: 24px;
    }

    .pfsfa91-specialist-content h3 {
      font-size: 27px;
    }
  }



.pfs-contact-info-box p a{
    text-decoration: none;
    color: #dc3545;
    font-weight: 500;
}

.pfs-contact-info-box p a:hover{
    color: inherit;
}



.pfs-social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    margin-right:10px;
    border-radius:50%;
    text-decoration:none;
    color:#fff;
    background:#d50000;
    transition:0.3s;
}

.pfs-social-icons a:hover{
    background:#000;
    transform:translateY(-3px);
}



.pfs-fixed-header{
    position: sticky;
    top: 0;
    z-index: 99999;
    background: #fff;
}









.pfsbd47-blog-grid-section{
    background:#f8f9fa;
}

.pfsbd47-small-title{
    color:#dc3545;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:1px;
}

.pfsbd47-main-title{
    font-size:31px;
    font-weight:500;
    margin-top:10px;
}

.pfsbd47-blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.pfsbd47-blog-card:hover{
    transform:translateY(-8px);
}

.pfsbd47-blog-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.pfsbd47-blog-content{
    padding:25px;
}

.pfsbd47-blog-tag{
    background:#ffe7ea;
    color:#dc3545;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:500;
    display:inline-block;
    margin-bottom:15px;
}

.pfsbd47-blog-content h4{
    font-size:22px;
    font-weight:500;
    line-height:1.5;
    min-height:100px;
}

.pfsbd47-read-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#dc3545;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:50px;
    font-weight:500;
    transition:.3s;
}

.pfsbd47-read-btn:hover{
    background:#b71c1c;
    color:#fff;
}

@media(max-width:991px){
    .pfsbd47-main-title{
        font-size:32px;
    }

    .pfsbd47-blog-content h4{
        min-height:auto;
    }
}




.pfs-topbar-social a{
    color:#fff;
    text-decoration:none;
   
   
    transition:0.3s;
}

.pfs-topbar-social a:hover{
    color:#ff3b3b;
    transform:translateY(-2px);
}





.flameconnect47-float {
  position: fixed;
  bottom: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 25px;
  color: #ff5a1f;
  background: #ffffff;
  border: 3px solid #ff5a1f;
  box-shadow: 0 10px 28px rgba(255, 90, 31, 0.35);
  transition: all 0.35s ease;
}

.flameconnect47-call {
  left: 25px;
}

.flameconnect47-whatsapp {
  right: 25px;
}

.flameconnect47-float::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 2px solid rgba(255, 90, 31, 0.45);
  
}

/* .flameconnect47-float::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: -3px;
  right: 5px;
  background: linear-gradient(135deg, #ff7a18, #ff2f00);
  border-radius: 80% 0 80% 80%;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(255, 72, 0, 0.35);
} */

.flameconnect47-float i {
  position: relative;
  z-index: 2;
}

.flameconnect47-float:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff7a18, #ff3b00);
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 35px rgba(255, 90, 31, 0.45);
}

@keyframes flameconnect47-pulse {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 576px) {
  .flameconnect47-float {
    width: 54px;
    height: 54px;
    font-size: 22px;
    bottom: 18px;
  }

  .flameconnect47-call {
    left: 15px;
  }

  .flameconnect47-whatsapp {
    right: 15px;
  }
}



.pfs-awd92-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff7ef 0%, #ffffff 55%, #fff1e3 100%);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.pfs-awd92-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  grid-template-rows: 170px 110px 110px;
  gap: 12px;
}

.pfs-awd92-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(230, 92, 0, 0.18);
  border: 4px solid #fff;
  transition: 0.35s ease;
}


@media (max-width: 991px) {
    .pfs-awd92-img {
        height: 380px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .pfs-awd92-img {
        height: auto;
        aspect-ratio: 4 / 3;
        border-width: 3px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(230, 92, 0, 0.15);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .pfs-awd92-img {
        aspect-ratio: 1 / 1;
        border-width: 2px;
        border-radius: 8px;
    }
}






.pfs-awd92-img:hover {
  transform: scale(1.03);
  filter: brightness(0.9);
}

.pfs-awd92-img1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.pfs-awd92-img2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.pfs-awd92-img3 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.pfs-awd92-img4 {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
}

.pfs-awd92-img5 {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

.pfs-awd92-content span {
  display: inline-block;
  color: #e51b23;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.pfs-awd92-content h2 {
  font-size: 35px;
  font-weight: 500;
  color: #1f1f1f;
  margin-bottom: 18px;
}

.pfs-awd92-content p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 25px;
}

.pfs-awd92-points div {
  background: #fff;
  padding: 16px 18px;
  margin-bottom: 14px;
  border-left: 5px solid#e51b23;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: #333;
}

.pfs-awd92-points i {
  color: #e51b23;
  margin-right: 10px;
}

/* Lightbox */
.pfs-awd92-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.pfs-awd92-lightbox.active {
  display: flex;
}

.pfs-awd92-lightbox img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: 12px;
  border: 5px solid #fff;
  object-fit: contain;
}

.pfs-awd92-close,
.pfs-awd92-prev,
.pfs-awd92-next {
  position: absolute;
  border: none;
  background:#e51b23;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.pfs-awd92-close:hover,
.pfs-awd92-prev:hover,
.pfs-awd92-next:hover {
  background: #fff;
  color: #e51b23;
}

.pfs-awd92-close {
  top: 25px;
  right: 30px;
}

.pfs-awd92-prev {
  left: 30px;
}

.pfs-awd92-next {
  right: 30px;
}

@media (max-width: 991px) {
  .pfs-awd92-content h2 {
    font-size: 34px;
  }

  .pfs-awd92-grid {
    grid-template-rows: 150px 100px 100px;
  }
}

@media (max-width: 576px) {
  .pfs-awd92-section {
    padding: 60px 0;
  }

  .pfs-awd92-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 145px 145px 145px;
  }

  .pfs-awd92-img1,
  .pfs-awd92-img2,
  .pfs-awd92-img3,
  .pfs-awd92-img4,
  .pfs-awd92-img5 {
    grid-column: auto;
    grid-row: auto;
  }

  .pfs-awd92-content h2 {
    font-size: 30px;
  }

  .pfs-awd92-lightbox img {
    max-width: 95%;
  }

  .pfs-awd92-prev {
    left: 12px;
  }

  .pfs-awd92-next {
    right: 12px;
  }
}














:root {
    --pfs-white:     #ffffff;
    --pfs-off-white: #fdf6f6;
    --pfs-charcoal:  #1c1c1c;
    --pfs-gray:      #6f6a6a;
    --pfs-red:       #c81d25;
    --pfs-red-dark:  #931217;
    --pfs-red-soft:  #fbe4e5;
    --pfs-border:    #f1dfe0;
}

.pfs-blog-section {
    padding: 90px 0;
    background: var(--pfs-off-white);
    font-family: 'Poppins', sans-serif;
}

/* ---------- Heading ---------- */

.pfs-blog-heading {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.pfs-blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pfs-red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pfs-blog-eyebrow::before,
.pfs-blog-eyebrow::after {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--pfs-red);
    display: inline-block;
}

.pfs-blog-heading h2 {
    color: var(--pfs-charcoal);
    font-weight: 700;
    font-size: 38px;
    margin: 18px 0 14px;
}

.pfs-blog-heading p {
    color: var(--pfs-gray);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Card ---------- */

.pfs-blog-card {
    background: var(--pfs-white);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(28, 28, 28, 0.06);
    border: 1px solid var(--pfs-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pfs-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(200, 29, 37, 0.16);
}

.pfs-blog-img {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.pfs-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.pfs-blog-card:hover .pfs-blog-img img {
    transform: scale(1.07);
}

/* Torn-corner date tag, top right of image */
.pfs-blog-date {
    position: absolute;
    top: 0;
    right: 18px;
    background: var(--pfs-red);
    color: var(--pfs-white);
    padding: 10px 14px 12px;
    border-radius: 0 0 10px 10px;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.pfs-blog-date-day {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.pfs-blog-date-month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Floating category sticker, sits across the image/content seam */
.pfs-blog-tag-wrap {
    display: flex;
    justify-content: flex-start;
    padding: 0 28px;
    margin-top: -18px;
    position: relative;
    z-index: 2;
}

.pfs-blog-tag {
    background: var(--pfs-white);
    color: var(--pfs-red);
    border: 1px solid var(--pfs-red-soft);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 14px rgba(28, 28, 28, 0.08);
}

/* ---------- Content ---------- */

.pfs-blog-content {
    padding: 22px 28px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pfs-blog-content h3 {
    color: var(--pfs-charcoal);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 12px;
}

.pfs-blog-content p {
    color: var(--pfs-gray);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pfs-blog-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--pfs-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.pfs-blog-arrow {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--pfs-red-soft);
    color: var(--pfs-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Signature touch: a soft alarm-pulse ring on hover */
.pfs-blog-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--pfs-red);
    opacity: 0;
}

.pfs-blog-btn:hover .pfs-blog-arrow {
    background: var(--pfs-red);
    color: var(--pfs-white);
    transform: translateX(3px);
}

.pfs-blog-btn:hover .pfs-blog-arrow::before {
    animation: pfs-pulse 1.1s ease-out infinite;
}

@keyframes pfs-pulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Empty state ---------- */

.pfs-blog-empty {
    text-align: center;
    padding: 70px 20px;
    color: var(--pfs-gray);
}

.pfs-blog-empty i {
    font-size: 40px;
    color: var(--pfs-red);
    margin-bottom: 18px;
    display: inline-block;
}

.pfs-blog-empty h3 {
    color: var(--pfs-charcoal);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
}

.pfs-blog-empty p {
    margin: 0;
    font-size: 14.5px;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
    .pfs-blog-img { height: 220px; }
    .pfs-blog-heading h2 { font-size: 32px; }
    .pfs-blog-content h3 { font-size: 20px; }
}

@media (max-width: 576px) {
    .pfs-blog-section { padding: 60px 0; }
    .pfs-blog-img { height: 210px; }
    .pfs-blog-content { padding: 20px 22px 24px; }
    .pfs-blog-tag-wrap { padding: 0 22px; }
    .pfs-blog-heading h2 { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
    .pfs-blog-card,
    .pfs-blog-img img,
    .pfs-blog-arrow,
    .pfs-blog-arrow::before {
        transition: none;
        animation: none;
    }
}












 :root {
            --pfs-white:     #ffffff;
            --pfs-off-white: #fdf6f6;
            --pfs-charcoal:  #1c1c1c;
            --pfs-gray:      #6f6a6a;
            --pfs-red:       #c81d25;
            --pfs-red-dark:  #931217;
            --pfs-red-soft:  #fbe4e5;
            --pfs-border:    #f1dfe0;
        }

        * {
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: var(--pfs-off-white);
            color: var(--pfs-charcoal);
            margin: 0;
        }

        .pfs-blog-detail-section {
            padding: 70px 0 90px;
        }

        /* ---------- Breadcrumb ---------- */

        .pfs-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--pfs-gray);
            margin-bottom: 26px;
        }

        .pfs-breadcrumb a {
            color: var(--pfs-gray);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .pfs-breadcrumb a:hover {
            color: var(--pfs-red);
        }

        .pfs-breadcrumb .current {
            color: var(--pfs-red);
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 320px;
        }

        /* ---------- Article box ---------- */

        .pfs-blog-detail-box {
            background: var(--pfs-white);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--pfs-border);
            box-shadow: 0 20px 55px rgba(28, 28, 28, 0.08);
        }

        .pfs-blog-detail-img-wrap {
            position: relative;
        }

        .pfs-blog-detail-img {
            width: 100%;
            height: 440px;
            object-fit: cover;
            display: block;
        }

        /* Floating category sticker, echoes the listing card */
        .pfs-blog-tag-wrap {
            position: relative;
            z-index: 2;
            margin-top: -22px;
            padding: 0 45px;
        }

        .pfs-blog-tag {
            display: inline-block;
            background: var(--pfs-white);
            color: var(--pfs-red);
            border: 1px solid var(--pfs-red-soft);
            padding: 9px 20px;
            border-radius: 50px;
            font-size: 12.5px;
            font-weight: 700;
            letter-spacing: 0.03em;
            box-shadow: 0 8px 18px rgba(28, 28, 28, 0.1);
        }

        .pfs-blog-detail-content {
            padding: 28px 45px 45px;
        }

        /* ---------- Meta row ---------- */

        .pfs-blog-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-bottom: 22px;
        }

        .pfs-blog-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--pfs-red-soft);
            color: var(--pfs-red-dark);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 13.5px;
            font-weight: 600;
        }

        .pfs-blog-detail-content h1 {
            font-size: 40px;
            font-weight: 700;
            color: var(--pfs-charcoal);
            line-height: 1.3;
            margin-bottom: 22px;
        }

        .pfs-blog-line {
            width: 80px;
            height: 4px;
            background: var(--pfs-red);
            border-radius: 10px;
            margin-bottom: 30px;
        }

        /* ---------- Body copy ---------- */

        .pfs-blog-description {
            color: #4a4a4a;
            font-size: 16.5px;
            line-height: 1.9;
            max-width: 700px;
        }

        .pfs-blog-description p {
            margin-bottom: 20px;
        }

        .pfs-blog-description p:first-of-type::first-letter {
            font-size: 56px;
            font-weight: 700;
            color: var(--pfs-red);
            float: left;
            line-height: 1;
            padding-right: 12px;
            padding-top: 4px;
        }

        /* ---------- Back link ---------- */

        .pfs-blog-back {
            margin-top: 40px;
            border-top: 1px solid var(--pfs-border);
            padding-top: 32px;
        }

        .pfs-blog-back a {
            background: var(--pfs-red);
            color: var(--pfs-white);
            text-decoration: none;
            padding: 13px 26px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .pfs-blog-back a:hover {
            background: var(--pfs-red-dark);
            transform: translateY(-2px);
        }

        /* ---------- Not found state ---------- */

        .pfs-blog-notfound {
            background: var(--pfs-white);
            border-radius: 24px;
            border: 1px solid var(--pfs-border);
            box-shadow: 0 20px 55px rgba(28, 28, 28, 0.08);
            text-align: center;
            padding: 80px 30px;
            max-width: 560px;
            margin: 0 auto;
        }

        .pfs-blog-notfound i {
            font-size: 44px;
            color: var(--pfs-red);
            margin-bottom: 20px;
            display: inline-block;
        }

        .pfs-blog-notfound h1 {
            font-size: 26px;
            font-weight: 700;
            color: var(--pfs-charcoal);
            margin-bottom: 10px;
        }

        .pfs-blog-notfound p {
            color: var(--pfs-gray);
            font-size: 15px;
            margin-bottom: 28px;
        }

        @media (max-width: 768px) {
            .pfs-blog-detail-section { padding: 45px 0 60px; }
            .pfs-blog-detail-img { height: 240px; }
            .pfs-blog-detail-content { padding: 22px 24px 30px; }
            .pfs-blog-tag-wrap { padding: 0 24px; }
            .pfs-blog-detail-content h1 { font-size: 27px; }
            .pfs-blog-description { font-size: 15.5px; line-height: 1.8; }
            .pfs-blog-description p:first-of-type::first-letter { font-size: 42px; }
        }


a{
  text-decoration: none !important;
}





.pfs-home-industry {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.pfs-gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.6s ease, filter 0.4s ease;
    display: block;
}

/* Dark Overlay */

/* Shine Effect */
.pfs-home-industry::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 60%;
    height: 250%;
    background: rgba(255,255,255,0.25);
    transform: rotate(25deg);
    transition: all 0.7s ease;
    z-index: 2;
}

.pfs-home-industry:hover::after {
    left: 150%;
}

/* Image Zoom */
.pfs-home-industry:hover .pfs-gallery-img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

/* Card Lift */
.pfs-home-industry:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* Text Styling */
.pfs-home-industry span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.pfs-home-industry:hover span {
    transform: translateY(-5px);
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
    .pfs-gallery-img {
        height: 180px;
    }

    .pfs-home-industry span {
        font-size: 15px;
        bottom: 15px;
        left: 15px;
    }
}