/***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);
  --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: 101px;
}
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: 90px 0 100px;
}
.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: 13px;
  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);
}
.section-body{
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin: 20px auto 30px;
  max-width: 800px;
}
/**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;*/
  max-width: 110px;
}
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;*/
  flex-wrap: wrap;
}
footer .footer-branding img{
  max-width: 110px;
}
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 1px left 0;
  background-size: 15px;
}
.footer-contact-block .footer-contact-list li.email{
  background: url(../../images/icons/contact/email.svg) no-repeat top 1px left 0;
  background-size: 20px;
}
.footer-contact-block .footer-contact-list li.whatsapp{
  background: url(../../images/icons/cta/whatsapp.svg) no-repeat top 1px 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-phone{
  bottom: 22px;
  background: var(--primary-red);
  box-shadow: 0 6px 20px rgba(211,31,42,0.4);
}
.float-phone::after{
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../../images/icons/cta/phone.svg) no-repeat center;
  background-size: 18px;
}
/* =============================================
   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 20px rgba(211,31,42,0.4);
  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*******/

/********** Responsive **********/
@media (max-width: 1199.98px) {
  .block-padding{
    padding: 75px 0;
  }
  /**Header Section**/
  body header .navbar-nav li a{
    padding: 10px 10px !important;
  }
  /**Header Section Ends**/
  /**Homepage Block**/
  body .section-header{
    font-size: 34px;
    line-height: 44px;
  }
  /**Homepage Block Ends**/
  }
  @media (min-width: 992px) {
    /**footer Section**/
  body footer .region-footer{
    flex-wrap: wrap;
  }
  body footer .region-footer > *{
    padding: 0 10px;
  }
  body footer .region-footer > *:first-child{
    padding-left: 0;
  }
  body footer .region-footer > *:last-child{
    padding-right: 0;
  }
  /**footer Section Ends**/
}

@media (max-width: 991.98px) {
  /**Homepage Block**/
  body footer .region-footer{
    flex-wrap: wrap;
    gap: 0;
  }
  body .section-header{
    font-size: 29px;
    line-height: 39px;
  }
  body .section-body{
    font-size: 15px;
    line-height: 23px;
  }
  /**Homepage Block Ends**/
  /**header**/
  header .navbar-toggler {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: 0;
    outline: 0;
    box-shadow: var(--shadow-md) !important;
    display: flex;
    width: 50px;
    height: 40px;
    padding: 4px 12px;
    position: relative;
    outline: 0 !important;
    border: 0 !important;
  }
  header .navbar-toggler span{
    background: var(--primary-red);
    height: 1.5px;
    display: inline-flex;
    transition: var(--transition);
    position: absolute;
    left: 12px;
    right: 12px;
  }
  header .navbar-toggler.collapsed span:nth-child(1){
    top: 10px;
  }
  header .navbar-toggler.collapsed span:nth-child(2){
    top: 50%;
    transform: translateY(-50%);
  }
  header .navbar-toggler.collapsed span:nth-child(3){
    bottom: 9px;
  } 
  header .navbar-toggler:not(.collapsed) span:nth-child(1){
    transform: rotate(45deg);
    top: 50%;
  }
  header .navbar-toggler:not(.collapsed) span:nth-child(2){
    opacity: 0;
    display: none;
  }
  header .navbar-toggler:not(.collapsed) span:nth-child(3){
    transform: rotate(-45deg);
    bottom: auto;
    top: 50%;
  }
  header .navbar-nav li a:hover::after,
  header .navbar-nav li a.active::after{
    width: calc(100% - 20px);
  }
  header .navbar-nav li a::after{
    left: 10px;
  }
  /**header Ends**/
}

@media (min-width: 768px) {
  /**footer Section**/
  footer ul li:last-child a{
    margin-bottom: 0;
  }
  /**footer Section Ends**/
}

@media (max-width: 767.98px) {
  .block-padding{
    padding: 60px 0;
  }
  body .section-header{
    font-size: 25px;
    line-height: 33px;
  }
  /**footer**/
  body footer .region-footer{
    flex-direction: column;
    gap: 10px;
  }
  footer ul{
    margin-bottom: 0;
  }
  .footer-contact-block ul li:last-child a{
    margin-bottom: 0;
  }
  /**footer ends**/
}
/********** Responsive Ends**********/
