/***global***/
:root {
  --hedaing-font: 'Poppins', sans-serif;
  --body-font: 'Roboto', sans-serif;
  --primary-red: #d31f2a;
  --primary-red-light: #f04550;
  --dark-background: #161616;
  --light-grey-background: #f6f7f9;
  --text-color: #222222;
  --radius: 15px;
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.1);
  --shadow-red: 0 12px 30px rgba(211, 31, 42, 0.28);




  /*--section-title-color: #1a1a1a;
  --text-body-color: #4b5563;
  --white: #FFFFFF;
  --light-white: #F0FDF4;
  --green: #00674f;
  --dark-green: #004d3b;
  --gold: #c8a45d;
  --gold-light: #e8c97a;
  --gold-soft: #e8d8b0;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);*/
}

body{
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--text-color);
  padding-top: 90px;
}
a{
  text-decoration: none;
}
.hero-banner-region{
  position: relative;
}
.dark-block{
  background-color: var(--dark-background);
}
.light-grey-block{
  background-color: var(--light-grey-background);
}
.block-padding{
  padding: 100px 0;
}
.white-text{
  color: #fff !important;
}

/**CTA Button**/
.cta-button-block .cta-btn{
  text-decoration: none;
  border-radius: 50px;
  padding: 7.5px 18px 7.5px 38px;
  font-family: var(--hedaing-font);
  font-size: 15px;
  line-height: 25px;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  min-height: 40px;
}
.cta-button-block .cta-wrapper{
  gap: 10px;
}
.cta-button-block .cta-btn.cta-wa{
  background: url(../../images/icons/cta/whatsapp.svg) no-repeat center left 17px;
  background-size: 20px;
  background-color: #25d366;
}
.cta-button-block .cta-btn.cta-call{
  background: url(../../images/icons/cta/phone.svg) no-repeat center left 17px;
  background-size: 15px;
  background-color: var(--primary-red);
}
.cta-button-block .cta-btn.cta-inspection{
  background: url(../../images/icons/cta/search.svg) no-repeat center left 17px;
  background-size: 20px;
  background-color: var(--primary-red);
}
.cta-button-block .cta-btn.cta-call:hover,
.cta-button-block .cta-btn.cta-inspection:hover{
  transform: translateY(-2px);
  background-color: #a8131c;
}
.cta-button-block .cta-btn.cta-wa:hover{
  background-color: #1ebe5b;
  transform: translateY(-2px);
}
/**CTA Button Ends**/

/**Homepage Block**/
.eyebrow{
  font-family: var(--hedaing-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--primary-red);
}
.section-header{
  font-family: var(--hedaing-font);
  font-size: 44px;
  line-height: 54px;
  font-weight: 800;
  color: var(--text-color);
}
/**Homepage Block Ends**/

/**card block**/
section .card{
  border-radius: var(--radius);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid #eef0f3;
  padding: 25px;
}
section .card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
section .card-title{
  font-family: var(--hedaing-font);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #222222;  
}
section .card-body{
  font-family: var(--hedaing-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #6b7280;
  padding: 0;
}
/**card block ends**/

/**header**/
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
header>.navbar{
  background: #fff;
  padding: 10px 0;
}
header .navbar-brand{
  margin: 0;
  padding: 0;
}
header .navbar-brand img{
  margin: 0;
  height: auto;
  max-width: 70px;
}
header .navbar-nav li a{
  font-family: var(--hedaing-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #222;
  padding: 10px 18px !important;
  position: relative;
}
header .navbar-nav li a::after{
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}
header .navbar-nav li a:hover,
header .navbar-nav li a.active{
  color: var(--primary-red);
}
header .navbar-nav li a:hover::after,
header .navbar-nav li a.active::after{
  width: calc(100% - 36px);
}
/**header ends**/

/**footer**/
body footer{
  padding: 30px 0 0 !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
footer .region-footer{
  flex-direction: row;
  gap: 30px;
}
footer a,
footer p{
  color: rgba(255, 255, 255, 0.6) !important;
}
footer a:hover{
  color: var(--primary-red-light) !important;
}
footer h2{
  font-family: var(--hedaing-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}
footer ul{
  list-style-type: none;
  padding: 0;
}
footer ul li a{
  padding: 0 !important;
  margin-bottom: 10px;
  display: inline-flex !important;
  font-size: 15px !important;
  line-height: 21px;
}
.footer-contact-block .footer-contact-list li{
  padding-left: 26px;
}
.footer-contact-block .footer-contact-list li.phone{
  background: url(../../images/icons/cta/phone.svg) no-repeat top 3px left 0;
  background-size: 15px;
}
.footer-contact-block .footer-contact-list li.email{
  background: url(../../images/icons/contact/email.svg) no-repeat top 3px left 0;
  background-size: 20px;
}
.footer-contact-block .footer-contact-list li.whatsapp{
  background: url(../../images/icons/cta/whatsapp.svg) no-repeat top 3px left 0;
  background-size: 21px;
}
.footer-bottom{
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 30px;
}
.section-copyright{
  padding: 20px 0;
}
/**footer ends**/

/******floating buttons*******/
.float-btn{
  position: fixed;
  right: 22px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 1030;
  transition: var(--transition);
  text-decoration: none;
}
.float-btn:hover{
  transform: scale(1.12);
  color: #fff;
}
.float-wa{
  bottom: 90px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.float-wa::after{
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../../images/icons/cta/whatsapp.svg) no-repeat center;
  background-size: 30px;
}
/* WhatsApp pulse animation */
.float-wa::before{
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: ripplePulse 2.5s ease-out infinite;
}
@keyframes ripplePulse{
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
/*.float-call{
  bottom: 22px;
  background: #00674f;
  box-shadow: 0 6px 20px rgba(0,103,79,0.4);
}
.float-call::after{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/icons/call-white.svg) no-repeat center;
  background-size: 25px;
}*/
/* =============================================
   SCROLL TO TOP BUTTON
============================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 35px;
  left: 22px;
  width: 50px; height: 50px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,102,204,0.3);
  cursor: pointer;
  z-index: 1030;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.scroll-top-btn::before{
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../../images/icons/cta/up-arrow.svg) no-repeat center;
  background-size: 20px;   
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,102,204,0.45);
}
/******floating buttons ends*******/


/**Listing Pages**/
/**Why choose us Section**/
.path-why-choose-us section{
  padding: 70px 0;
}
.why-choose-us-section .card-icon-wrapper .img-wrapper{
  width: 66px;
  height: 66px;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  background-color: rgba(211, 31, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.35s ease;
  background-size: 35px;
  background-repeat: no-repeat;
  background-position: center;  
}
.why-choose-us-section .card-icon-wrapper._5-years-industry-expertise .img-wrapper{
  background-image: url(../../images/icons/choose-us/expertise.svg);
}
.why-choose-us-section .card:hover .card-icon-wrapper._5-years-industry-expertise .img-wrapper{
  background-image: url(../../images/icons/choose-us/expertise-hover.svg);
}
.why-choose-us-section .card-icon-wrapper.eco-friendly-solutions .img-wrapper{
  background-image: url(../../images/icons/choose-us/eco-friendly.svg);
}
.why-choose-us-section .card:hover .card-icon-wrapper.eco-friendly-solutions .img-wrapper{
  background-image: url(../../images/icons/choose-us/eco-friendly-hover.svg);
}
.why-choose-us-section .card:hover .card-icon-wrapper .img-wrapper{
  background-color: var(--primary-red);
}
.why-choose-us-section .card-icon-wrapper.certified-professionals .img-wrapper{
  background-image: url(../../images/icons/choose-us/certified.svg);
}
.why-choose-us-section .card:hover .card-icon-wrapper.certified-professionals .img-wrapper{
  background-image: url(../../images/icons/choose-us/certified-hover.svg);
}
.why-choose-us-section .card-icon-wrapper.affordable-pricing .img-wrapper{
  background-image: url(../../images/icons/choose-us/price.svg);
}
.why-choose-us-section .card:hover .card-icon-wrapper.affordable-pricing .img-wrapper{
  background-image: url(../../images/icons/choose-us/price-hover.svg);
}
.why-choose-us-section .card-icon-wrapper.safe--effective-treatments .img-wrapper{
  background-image: url(../../images/icons/choose-us/safety.svg);
}
.why-choose-us-section .card:hover .card-icon-wrapper.safe--effective-treatments .img-wrapper{
  background-image: url(../../images/icons/choose-us/safety-hover.svg);
}
.why-choose-us-section .card-icon-wrapper.fast-response-time .img-wrapper{
  background-image: url(../../images/icons/choose-us/fast.svg);
}
.why-choose-us-section .card:hover .card-icon-wrapper.fast-response-time .img-wrapper{
  background-image: url(../../images/icons/choose-us/fast-hover.svg);
}
.why-choose-us-section .card-icon-wrapper.customer-satisfaction-focus .img-wrapper{
  background-image: url(../../images/icons/choose-us/satisfaction.svg);
}
.why-choose-us-section .card:hover .card-icon-wrapper.customer-satisfaction-focus .img-wrapper{
  background-image: url(../../images/icons/choose-us/satisfaction-hover.svg);
}
.why-choose-us-section .card-icon-wrapper.advanced-pest-management .img-wrapper{
  background-image: url(../../images/icons/choose-us/pest-management.svg);
}
.why-choose-us-section .card:hover .card-icon-wrapper.advanced-pest-management .img-wrapper{
  background-image: url(../../images/icons/choose-us/pest-management-hover.svg);
}
/**Why choose us Section Ends**/



/**Listing Pages Ends**/