
/* Correct placement of @import rules */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700&family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Radio+Canada:wght@400;700&family=Rethink+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tomorrow:wght@400;700&family=Nunito+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&family=Work+Sans:wght@400;700&display=swap');
:root {
  --plumbing-primary: 'Poppins', sans-serif;
  --plumbing-secondary: 'Montserrat', sans-serif;

  --renovation-primary: 'Plus Jakarta Sans', sans-serif;
  --renovation-secondary: 'Lato', sans-serif;

  --roofing-primary: 'Barlow', sans-serif;
  --roofing-secondary: 'Roboto', sans-serif;

  --electrical-primary: 'Radio Canada', sans-serif;
  --electrical-secondary: 'Rethink Sans', sans-serif;

  --tech-primary: 'Tomorrow', sans-serif;
  --tech-secondary: 'Nunito Sans', sans-serif;

  --carpenter-primary: 'DM Sans', sans-serif;
  --carpenter-secondary: 'Work Sans', sans-serif;
}

/* Plumbing Service */
.plumbing-primary-font {
  font-family: var(--plumbing-primary);
}

.plumbing-secondary-font {
  font-family: var(--plumbing-secondary);
}

/* Home Renovation */
.renovation-primary-font {
  font-family: var(--renovation-primary);
}

.renovation-secondary-font {
  font-family: var(--renovation-secondary);
}

/* Roofing Service */
.roofing-primary-font {
  font-family: var(--roofing-primary);
}

.roofing-secondary-font {
  font-family: var(--roofing-secondary);
}

/* Electrical Services */
.electrical-primary-font {
  font-family: var(--electrical-primary);
}

.electrical-secondary-font {
  font-family: var(--electrical-secondary);
}

/* Tech Repair Services */
.tech-primary-font {
  font-family: var(--tech-primary);
}

.tech-secondary-font {
  font-family: var(--tech-secondary);
}

/* Carpenter Services */
.carpenter-primary-font {
  font-family: var(--carpenter-primary);
}

.carpenter-secondary-font {
  font-family: var(--carpenter-secondary);
}

.hs-carpenter-h2-heading{
  font-size: 40px;
  font-weight: 700;
}
@media (min-width:768px) and (max-width: 1200px) {
  .hs-carpenter-h2-heading{
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .hs-carpenter-h2-heading{
    font-size: 26px;
  }
}

body {
  margin: 0;
  padding: 0;
}
.elementor-section {
  width: auto !important;
  display: block !important;
  flex-wrap: wrap !important;
}
/* latest-renovation-article style start */
.hs-renovation-grid {
  display: flex;
  flex-wrap: wrap; 
  gap: 20px; 
  justify-content: center; 
}
.hs-renovation-card-row {
  display: flex;
  justify-content: space-between;
  gap: 20px; 
  flex-wrap: wrap; 
}
.hs-renovation-card-image {
  flex: 1 !important;
  overflow: hidden !important;
}
.hs-renovation-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.hs-renovation-card-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hs-renovation-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 10px;
}
.hs-renovation-card-text {
  color: #36454F;
  font-size: 0.9rem;
  flex-grow: 1;
}
.hs-renovation-card-footer {
  border-top: 1px solid #D9D9D9;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hs-renovation-card-footer-text {
  color: #36454F;
  font-size: 0.85rem;
}

.hs-renovation-card-footer-icon img {
  width: 14px;
  height: 14px;
}
.hs-renovation-latest-card {
  display: flex;
  flex-direction: row;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  overflow: hidden;
  width: calc(50% - 10px);
  height: 250px;
  margin-bottom: 20px;
}
.hs-renovation-latest-card.swap-position {
  flex-direction: row-reverse; 
}

.hs-renovation-card-image,
.hs-renovation-card-content {
  flex: 1; 
}
.hs-renovation-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-renovation-browser-btn {
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 5px;
    background-color: #20232C;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}

.hs-renovation-browser-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background-color: red;
}

.hs-renovation-browser-btn:hover::before {
  left: auto;
  right: 0;
}

.hs-renovation-browser-btn:hover {
  border-radius: 5px 0 0 5px !important;
}
@media (max-width: 992px) {
  .hs-renovation-latest-card {
    flex: 1 1 100%; 
    max-width: 100%; 
  }
  .hs-renovation-card-content {
    padding: 10px; 
  }
  .hs-renovation-card-title {
    font-size: 1.1rem; 
  }
  .hs-renovation-card-text {
    font-size: 0.85rem; 
  }
  .hs-renovation-card-footer-text {
    font-size: 0.8rem; 
  }
}
@media (max-width: 400px) {
  .hs-renovation-latest-card {
    flex-direction: column; /* Image and content vertical stack */
    width: 100%;
    height: auto; /* Let height adjust based on content */
  }

  .hs-renovation-card-image {
    height: 180px; /* Adjust as needed for visual balance */
  }

  .hs-renovation-card-image img {
    height: 100%;
  }

  .hs-renovation-card-content {
    padding: 10px;
  }

  .hs-renovation-card-title {
    font-size: 1rem;
  }

  .hs-renovation-card-text {
    font-size: 0.8rem;
  }

  .hs-renovation-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .hs-renovation-card-footer-text {
    font-size: 0.75rem;
  }

  .hs-renovation-browser-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* latest-renovation-article style end here */

/* carpenter-latest-article style start here */

section.hs-carpenter-latest-article{
  margin-bottom: 60px;
}
.carpenter-date-meta, .carpenter-category-meta {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.hs-carpenter-date-meta-text, .hs-carpenter-category-meta-text {
  font-size: 16px;
  font-weight: 400;
}
.hs-carpenter-article-card-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.carpenter-meta-info {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.carpenter-article-featured-img img{
  border-radius: 4px;
  width: 100%;
  background-size: cover; 
}
.carpenter-article-btn {
  display: inline-flex;
  text-decoration: none;
  color: #5C4033 !important;
  font-size: 16px;
  position: relative;
  font-weight: 700;
}
.carpenter-article-btn::after {
  display: inline-block;
  margin-left: 8px;
  width: 20px;
  height: 10px;
  background-size: contain;
}
.carpenter-meta-info.swap-position {
    flex-direction: row-reverse !important;
    display:flex !important;
    align-items: center !important;
}
.carpenter-meta-info {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px; 
    align-items: center; 
}
.carpenter-meta-info.swap-position {
    flex-direction: row-reverse !important; 
    gap: 15px; 
}

.hs-renovation-latest-img.swap-position {
    order: 2 !important; 
}
.hs-renovation-card-content.swap-position {
    order: 1 !important; 
}
@media (max-width: 1024px) {
  .hs-carpenter-article-card-layout {
    margin-bottom: 20px;
  }
}

/* carpenter-latest-article style end here */
/* carpenter-latest-article style end here */
.hs-carpenter-service-card {
  background-color: #3E3128 !important;
  border-radius: 10px;
  padding: 34px 53px;
  flex: 0 1 calc(33.33% - 20px);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center; 
  transition: 0.3s;

}

.hs-carepenter-service-card-body {
  display: flex;
  flex-direction: column;

 
}
.hs-carpenter-service-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.hs-carepenter-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.hs-carpenter-service-text{
  margin-top:7px !important;
}
.hs-carepenter-service-btn{
  margin-top: 20px !important;
}

.hs-carpenter-service-cta {
  padding: 11px;
  border-radius: 5px;
  background-color: #C7844F !important;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}
.hs-carpenter-service-cta:hover {
  background-color: #3E3128 !important;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .hs-carpenter-service-card {
    flex: 0 1 calc(50% - 20px);
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hs-carpenter-service-card {
    flex: 0 1 calc(100% - 40px);
    padding: 30px;
  }
  .hs-carepenter-service-card-body {
    display: flex
;
    flex-direction: column;
    gap: 15px;
    /* align-items: flex-start; */
    width: 100% !important;
}
 
}
@media (max-width: 768px) {
  .hs-carpenter-service-card {
    flex: 0 1 100%;
    padding: 20px !important; 
    margin: 0 auto; 
  }

  .hs-carepenter-service-card-body {
    width: 100% !important;
    text-align: center;
    align-items: center;
  }

  .hs-carpenter-service-text {
    font-size: 14px;
  }

  .hs-carepenter-card-title {
    font-size: 18px;
  }
}


@media (max-width: 500px) {
  .hs-carepenter-card-title {
    font-size: 18px;
  }

  .hs-carpenter-service-text,
  .hs-carepenter-service-btn {
    font-size: 14px;
  }

  .hs-carpenter-service-card {
    padding: 20px !important;
  }
}
/* carpenter service section style end here */

/* electronics service section style start here */
.hs-electrical-service-card-img {
  width: 60px !important;
  height: 60px !important;
}
.hs-electrical-service-card {
  border: 1px solid rgba(108, 108, 108, 0.5);
  border-radius: 5px;
  padding: 31.5px 27px;
  box-shadow: 4px 4px 20px rgba(27, 18, 18, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hs-electrical-service-container {
  width: 100%;
  max-width: 1180px;
}
.hs-electrical-service-card-row {
  margin-top: 40px !important;
}
.hs-electrical-span-heading {
  border: 2px solid #c0c0c0;
  border-radius: 15px;
  width: fit-content;
  padding: 6px 10px;
  font-size: 14px;
  letter-spacing: 0.6px;
  font-weight: 700;
  color: #008080;
  line-height: 25px;
}
.hs-electrical-h2-heading {
  font-size: 36px;
  line-height: 40.8px;
  letter-spacing: 1.5px;
  color: #1b1212;
  padding-top: 10px;
  font-weight: 700;
}
.hs-electrical-service-description {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.6px;
  color: #1b1212;
  padding-top: 20px;
}
.hs-electrical-view-service-section {
  padding-top: 20px;
}
.hs-electrical-view-service-btn {
  text-decoration: none;
  letter-spacing: 0.4px;
  font-size: 15px;
  background-color: #008080;
  border: 2px solid #008080;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 600;
}
.hs-electrical-view-service-btn:hover {
  letter-spacing: 0.4px;
  font-size: 15px;
  border: 2px solid #008080;
  color: #008080;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 600;
  background: unset;
}
.hs-electrical-service-card {
  border: 1px solid rgba(108, 108, 108, 0.5);
  border-radius: 5px;
  padding: 31.5px 27px;
  box-shadow: 4px 4px 20px rgba(27, 18, 18, 0.1);
  transition: transform 3s ease, box-shadow 0.3s ease;
}
.hs-electrical-service-btn {
  font-size: 14px;
  font-weight: 500 !important;
  border-radius: 8px;
  letter-spacing: 0.4px;
  padding: 6px 12px;
  color:rgb(22, 27, 18) !important;
  border: 2px solid #1b1212 !important;
}
.hs-electrical-card-title {
  font-size: 20px;
  letter-spacing: 0.8px;
  padding-top: 16px;
  font-weight: 600;
  color: #1b1212 !important;
}
.hs-electrical-service-text {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.6px;
  color: #1b1212;
  padding-top: 10px;
  padding-bottom: 16px;
}
.hs-electrical-rows-container {
  display: flex;
  flex-direction: column;
}
.hs-electrical-service-card:hover {
  transform: scale(1.02);
  box-shadow: 6px 6px 30px rgba(27, 18, 18, 0.2);
  cursor: pointer;
}
.hs-electrical-service-card:hover .hs-electrical-service-btn {
  background-color: #008080;
  color: #fff !important;
  border: 2px solid #008080 !important;
}
.hs-electrical-service-card:hover .hs-electrical-card-title{
  font-weight: 700;
}
@media screen and (max-width: 1200px){
.hs-electrical-service-container{
  padding-left: 27px !important;
  padding-right: 27px !important;
  margin: 0 auto !important;
}
}
@media (max-width: 1024px) {
  .card, .hs-electrical-service-card {
    padding: 24px !important;
  } 
}
@media (max-width: 992px){
  .hs-electrical-service-card-row{
    margin-top: 5px !important;
  }
}
@media (max-width: 768px){
  .hs-electrical-view-service-section{
    padding-top: 10px;
  }
  .hs-electrical-service-description{
    padding-top: 5px;
  }
  .hs-service-heading-column{
    padding-bottom: 30px;
  }
}
/* electronics service section style end here */
/* renovation service section style start here */
.hs-renovation-services-section {
  text-align: center;
}
.hs-renovation-service-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; 
 
}
.hs-renovation-card-title{
  margin-top: 15px !important;
}
.hs-renovation-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.hs-renovation-service-card .hs-renovation-card-img-top {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border: none;
}
.hs-renovation-service-card .hs-renovation-icon-overlay {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: #20232c;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hs-renovation-service-card .hs-renovation-icon-overlay img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .hs-renovation-service-card .hs-renovation-icon-overlay {
    width: 50px;
    height: 50px;
    padding: 8px;
  }
  .hs-renovation-service-card .hs-renovation-icon-overlay img {
    width: 24px;
    height: 24px;
  }
}
.hs-renovation-service-card .hs-renovation-icon-overlay img {
  width: 32px;
  height: 32px;
}
.hs-renovation-service-card .hs-renovation-card-body {
  padding: 20px;
  text-align: left;
}
.hs-renovation-service-card h5 {
  font-size: 20px;
  margin-bottom: 15px;
}
.hs-renovation-service-card p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 15px;
}
.hs-renovation-service-card .hs-renovation-read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}
.hs-renovation-service-btn {
  position: relative;
  background-color: #20232C; 
  color: #fff; 
  font-size: 16px;
  padding: 10px 20px;
  margin-top: 30px;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0 5px 5px 0;
}
.hs-renovation-service-btn::before {
  content: '';
  position: absolute;
  left: 0; 
  top: 0;
  bottom: 0;
  right: 0; 
  width: 4px; 
  background-color: rgba(255, 255, 255, 0.5); 
  transition: all 0.3s ease;
}
.hs-renovation-service-btn:hover::before {
  left: auto; 
  right: 0;  
}
.hs-renovation-service-btn:hover {
  border-radius: 5px 0 0 5px;
}
.renovtion-btn-icon{
  margin-left:10px;
  margin-top:5px;
}
.renovation-btn-custom-icon{
  width: 20px;
  height: 20px;
}
/*  renovation service section style end here */
/*  roofing service section style start here */
@media (max-width: 1024px) {
  .card, .hs-Roofing-service-card {
    padding: 24px !important;
  }  
}
.hs-Roofing-service{
  margin: 0px 15px;
}
.hs-Roofing-service-text {
  color: #000000;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 24.8px;
  letter-spacing: 0.4px;
  text-align: center;
}
.hs-Roofing-service-card-row{
  row-gap: 20px;
}
.hs-Roofing-service-card {
  background-color:#FFDAB9C2!important;
  border-radius: 10px !important;
  padding: 49px 32px;
  border: none !important;
  gap: 15px;
}
.hs-Roofing-card-title {
  font-size: 24px;
  font-weight:bold;
  color: #000000!important;
}
.hs-Roofing-service-card-body{
  display: flex;
  flex-direction: column;
  gap: 15px;

}
.text-light-custom {
  color: #000000 !important;
}

.hs-Roofing-service-btn{
    padding: 13px 27px;
    border-radius: 6px;
    background-color: #001F3F !important;
    color: #ffffff;
    border: none;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    font-size: 16px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    width: fit-content;
  }
  .hs-Roofing-service-btn:hover {
    background-color: #FFDAB9!important;
    color: #000000;
  }
/*  roofing service section style end here */
/* techrepair service section style start here */
.sc-services-section{
  padding: 50px 0;
  width: 1180px !important;
  max-width: 100% !important;
}
section.sc-services-section {
  width: 1180px !important;
}
.sc-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  position: relative; 
  min-height: 200px;
  width: 0px !important;
  height: 224px !important;
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1) , 
              inset -5px -5px 10px rgba(255, 255, 255, 0.7) !important;
}
.sc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}
  .sc-card-icon {
    margin-bottom: 10px;
   
}
  .sc-card-icon img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .sc-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #001433;
    margin-bottom: 10px;
  }
  .sc-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
    justify-content: left;
  }
  .sc-card-btn {
    background: #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #001433;
    font-weight: bold;
    position: absolute;
    bottom: 15px; 
    right: 15px; 
    padding: 5px; 
    
}
.sc-services-row {
  row-gap: 30px;
  
}
/* techrepair service section style end here */
/* plumbing service section style start here */
.card-plumbing  {
  background-color: #EFF7FF;
  border-radius: 20px;
  max-width: 300px; 
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 55px 32px !important;
  gap: 10px !important;
}
.row {
  justify-content: center !important;
}
/* .hs-card {
  margin-top: 130px !important;
} */
.hs-card-2 {
  margin-top: -70px !important;
}
.hs-card-5 {
  margin-top: -70px !important;
}
.hs-cards {
  margin-top: -70px !important;
}  
.services{
font-size: 14px;
color: #04437F;
}
.Service-section{
max-width: 960px;
margin: 0 auto;
height: auto;
}
.icon-image {
max-width: 60%;
max-height: 60%;
}
.plumbing-card-img {
    display: flex !important;
    justify-content: center; 
}
.plumbing-card-img.left {
    justify-content: flex-start; 
}
.plumbing-card-img.right {
    justify-content: flex-end; 
}
.icon-container {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    background-color: #04437F;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.plumbing-card-btn{
  margin-top: 10px !important;
}
.btn.btn-outline {
/* background-color: white !important; */
color: #04437F !important;
font-weight: bold;
margin-top: 0px !important;
}
.plumbing-card-title{
  margin-top: 10px;
}
.plumbing-card-text{
  margin-top: 10px;
  margin-bottom: 10px !important;
  max-height: 80px !important;
}
.btn-get{
background-color: #ffc107;
border-radius: 8px;
height: 40px;
width: 144px;
border: none;
}
.btn-get:hover {
background-color: #04437F;
color: #ffffff;
}
@media (max-width: 776px) {
  .hs-card-2 {
  margin-top: 0px !important;
}
.hs-card-5 {
  margin-top: -0px !important
}
.hs-cards {
  margin-top: 0px !important;
} 
.plumbing-card-text{
  margin-top: 10px;
  margin-bottom: 10px !important;
  max-height: 90px !important;
}
}
@media (max-width: 576px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .col-md-4, .col-sm-6, .col-12 {
    flex: 0 0 100%; 
    max-width: 100%; 
    margin-bottom: 20px; 
  }
  .hs-card {
    margin-top: 0px;
  }
  .hs-card-2 {
    margin-top: 0px;
  }
  .hs-card-5 {
    margin-top: 0px;
  }
  .hs-cards {
    margin-top: 0px;
  }
  .icon-container {
    width: 50px;
    height: 50px;
  }
  .btn-get {
    width: 130px;
    height: 40px;
  }
  .card-plumbing {
    max-width: 100%; 
    padding: 20px; 
  }
}

/* plumbing service section style end here */
/* techrepair-latest-article style start here */
.tech-updates-section p {
  font-size: 14px;
  letter-spacing: 1px;
}
.tech-updates-section h2 {
  font-size: 28px;
}
.hs-tech-update-border {
  position: relative;
  margin-right: 11%;
}
.hs-tech-update-border::before {
  top: 2px; 
  content: "";
  position: absolute;
  width: 30px; 
  height: 3px; 
  background-color: #001433; 
}
.hs-tech-update-border::after {
  top: 8px; 
  content: "";
  position: absolute;
  width: 40px;
  height: 6px;
  background-color: #001433; 
}
.container-fluid-update {
  width: 100%;
  max-width: 1180px;
  margin: auto;
}
.tech-update-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 50px;
}
.hs-tech-text-tech-update {
  color: #aebbce;
}
.tech-updates-card-text {
  font-size: 14px;
  color: #555;
}
.techrepair-article-img-card{
  border: 4px solid black;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.techrepair-article-card-border-img {
  margin-top: 14px;
  margin-left: 14px;
  width: 100%;
  height: auto;
}
.techrepair-article-Read-more-btn {
  background-color: #001433;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex; 
  align-items: center; 
  font-weight: bold;
  margin-top: 20px;
}
.techrepair-article-arrow-icon-read {
  margin-left: 8px;
  width: 20px; 
  height: 20px;
  color: #fff;
}
.techrepair-article-Read-more-btn:hover {
  
  color: #FFFFFF

}
@media (max-width: 614px) {
  .row.g-4 {
    justify-content: center !important;
    text-align: center !important;
  }
  .col-12 {
    max-width: 100% !important;
  }
}
/* techrepair-latest-article style end here */


/* / Plumbing Testimonial  style start here / */
.hs-plumbing-review-section {

  border-radius: 15px;
  max-width: 1320px;
  margin: 0 auto;
  height: 440px !important;
  padding: 20px 30px;  
 
}
 
 
  .hs-plumbing-h2-text {
    font-size: 36px;
  }
 
  .hs-plumbing-text-muted {
    font-size: 14px;
    color: #363636;
  }
  .hs-plumbing-text-muted-description{
    font-size: 14px;
    color: #363636;
  }
  .hs-plumbing-text-muted-stats{
    font-size: 14px;
    color: #363636;
  }
 
  .hs-plumbing-h4 {
    color: #04437F;
  }
 
  .hs-plumbing-h6 {
    display: flex;
  }
/*  
  .hs-plumbing-client-name {
    margin-top: 15px;
  } */
 
  .hs-plumbing-btn-btn {
    background-color: #04437F !important;
    color: white !important;
    font-size: 18px !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important;
  }
 
  .hs-plumbing-btn-btn i {
    font-size: 16px;
  }
 
  .hs-plumbing-btn-btn:hover {
    background-color: #ffc107;
    color: #ffffff;
  }
 
  .client-review {
    text-align: justify;
  }
 
  .hs-plumbing-border-left {
    border-left: 3px solid #F8BA08;
    padding-left: 10px;
  }
 
  .hs-plumbing-circle {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-left: 10px !important;
  }
 
  @media (max-width: 991.98px) {
    .hs-plumbing-customer-feedback-section,
    .hs-plumbing-testimonial-section {
      width: 100% !important;
      text-align: center;
    }
 
    .hs-plumbing-review-section {
  background-color: #EFF7FF;
  border-radius: 15px;
  max-width: 1320px;
  margin: 0 auto;
  height: 740px !important;
  padding: 20px 30px;
 
}
 
 .hs-plumbing-ratings {
      flex-direction: column;
      gap: 20px;
    }
}
 
 
@media (max-width: 500.98px) {
    .hs-plumbing-customer-feedback-section,
    .hs-plumbing-testimonial-section {
      width: 100% !important;
      text-align: center;
    }
 .hs-plumbing-review-section {
  background-color: #EFF7FF;
  border-radius: 15px;
  max-width: 1320px;
  margin: 0 auto;
  height: 940px !important;
  padding: 20px 30px;
 
}
 .hs-plumbing-ratings {
      flex-direction: column;
      gap: 20px;
    }
}
 
/* / Plumbing Testimonial  style End here / */
.hs-carpenter-testimonial-wrapper {
  display: flex !important;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}
.left-content {
  flex: 1;
}
.hs-carpenter-testimonial-container {
  flex: 1;
  max-width: 500px;
  position: relative;
}
.hs-carpenter-testimonial-card {
  display: none;
  max-width: 500px;
  padding: 40px;
  border: 2px solid #DEDEDE;
  border-radius: 12px;
  background-color: #fff;
  text-align: center;
  position: relative;
}
.hs-carpenter-testimonial-card:first-child {
  display: block;
}
.hs-carpenter-quote-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.quote-icon {
  font-size: 40px;
  width: 60px;
  height: 60px;
  color: #fff;
  background-color: #654321;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs-carpenter-testimonial-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}
.hs-carpenter-author {
  margin-bottom: 16px;
}
.hs-carpenter-author strong {
  font-size: 16px;
  color: #000;
}
.hs-carpenter-author p {
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}
.hs-carpenter-author-image {
  position: absolute;

  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
}
.hs-carpenter-author-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.hs-carpenter-button {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  color: #555;
  width: 36px;
  height: 36px;
  transition: background 0.2s ease;
}

.hs-carpenter-button:hover {
    background-color: #654321;
    color: #fff; 
}
@media (max-width: 768px) {
  .hs-carpenter-testimonial-wrapper {
      flex-direction: column;
      gap: 20px;
  }
}
/* / Tech repair Testimonial Style start here / */
.hs-tech-container-fluid-review{
  width: 1180px;
  margin: 0 auto;
}
.hs-tech-review-border {
  position: relative;
  margin-right: 20%;
}
.hs-tech-review-border::before {
  top: 2px;
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #001433;
}
.hs-tech-review-border::after {
  top: 8px;
  content: "";
  position: absolute;
  width: 40px;
  height: 6px;
  background-color: #001433;
}
.hs-tech-text-review{
  color: #001433;
  margin-right: 20px;
}
.hs-tech-h2{
  font-size: 36px;
}
.hs-tech-card-body {
  height: 388px;
  width: 320px;
  display: flex;
  flex-direction: column;
  background-color: #001433;
  color: white;
  border: 2px solid white;
  padding: 15px;
  border-radius: 2px;
  margin: 20px auto;
  align-items: start;
  gap: 3px;
  position: relative;
}
.hs-tech-text-muted{
  color: white;
}
.hs-tech-review-card {
  width: 364px;
  height: 426px;
  background-color: #001433;
  border: 2px solid;
}
.rounded-circle-review {
  height: 80px;
  width: 80px;
  margin-top: 10px;
  margin-bottom:10px;
  object-fit: cover;
}
.img-fluid{
  justify-items: center;
  margin-top: 20px;
}  
.img-fluid-Michael{
  margin-top: 45px;  
}
.hs-tech-slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden !important;
  width: 100%;
  overflow: hidden;
}
.hs-tech-testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}
.hs-tech-slider-dots {
  text-align: center;
}
.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.dot.active {
  background-color: #717171;
}
.hs-tech-testimonial-slider .slide {
  flex: 0 0 32%;
max-width: 32%;
  padding: 10px;
  box-sizing: border-box;

 
 
}
@media (max-width: 1200px) {
  .hs-tech-testimonial-slider .slide {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px;
  box-sizing: border-box;
  }
  .hs-tech-testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .hs-tech-testimonial-slider .slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .hs-tech-testimonial-slider .slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .hs-tech-testimonial-slider .slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.hs-tech-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hs-tech-testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100% !important;
}










/* / Electronix Testimonial  style start here / */
 
 
.hs-electrical-reviews .view-reviews-btn {
  color: #fff !important;
  border: 1px solid white !important;
  border-radius: 8px !important;
  padding: 12px 20px;
  
}
 
.view-reviews-btn:hover{
  color: #008080 !important;
  background-color: #fff !important;
  border-color: #fff !important;
}
 
.side-avatar img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid #fff;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.side-avatar img:hover {
  transform: scale(1.1);
}
.btn.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}
.btn.btn-outline-light:hover {
  background-color: white;
  color: #008080;
  border-color: #008080;
}
.col-md-6.d-flex.align-items-start {
  margin-top: 65px;
}
@media (max-width: 1024px) {
  .hs-main-electrical {
    flex-direction: column;
  }
 
  .hs-electrical-right {
    margin-top: 30px !important;
    width: 100%;
  }
 
  .hs-electronix-card-layout {
    width: 100% !important;
    height: auto !important;
  }
 
  .side-avatar {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hs-electrical-h2-heading {
    font-size: 24px;
  }
 
  .hs-electrical-reviews-description {
 
    line-height: 22px;
  }
 
  .hs-electronix-card-layout {
    padding: 20px;
  }
 
  .side-avatar img {
    width: 35px;
    height: 35px;
  }
}
 
 
/* / Renovation Testimonial style End here / */
/* / roofing Testimonial  style start here / */
/* Main container */
.hs-roofing-container {
  width: 100%;
  max-width: 1180px;
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
 
.hs-roofing-text-section {
  width: 40%;
}
 
 
/* Slider container */
.hs-roofing-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
 
/* Wrapper for testimonials */
.hs-roofing-testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
 
.hs-roofing-testimonial-card {
  min-width: 100%;
  height: auto;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background: white;
  box-sizing: border-box;
  text-align: start;
  background-color: rgba(255, 218, 185, 0.51);
}
 
.hs-roofing-card-text {
  margin-top: 15px;
}
 
.hs-roofing-author-info {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 15px;
}
 
.hs-roofing-author-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
 
.hs-roofing-author-name {
  font-size: 18px;
  font-weight: bold;
}
 
/* Navigation buttons */
.hs-roofing-nav-buttons {
  display: flex;
  justify-content: end;
  margin-top: 25px;
  gap: 20px;
}
 
.hs-roofing-nav-buttons button {
  padding: 8px 12px;
  font-size: 18px;
  background-color: #00254d;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
 
.hs-roofing-nav-buttons button:hover {
  background-color: #0056b3;
}
 
/* Media Queries */
 
/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .hs-roofing-container {
    flex-direction: column;
    padding: 20px;
  }
 
  .hs-roofing-text-section {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }
 
  .hs-roofing-slider-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
  .hs-roofing-testimonial-card {
    height: auto;
  }
 
  .hs-roofing-author-info {
    justify-content: center;
  }
 
  .hs-roofing-nav-buttons {
    justify-content: center;
  }
 
  /* Reduce font size */
  .hs-roofing-text-section h3 {
    font-size: 28px;
  }
 
  .hs-roofing-card-text {
    font-size: 12px;
  }
 
  .hs-roofing-author-name {
    font-size: 16px;
  }
 
  .hs-roofing-nav-buttons button {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
 
/* Large Tablets / Small Screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .hs-roofing-container {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
 
  .hs-roofing-text-section,
  .hs-roofing-slider-container {
    width: 100%;
    text-align: center;
  }
 
  .hs-roofing-slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
  .hs-roofing-testimonial-card {
    height: auto;
  }
 
  .hs-roofing-author-info {
    justify-content: center;
  }
 
  .hs-roofing-nav-buttons {
    justify-content: center;
  }
}
 
/* Mobile (max-width: 500px) */
@media (max-width: 500px) {
  .hs-roofing-text-section h3 {
    font-size: 24px;
  }
 
  .hs-roofing-card-text {
    font-size: 12px;
  }
 
  .hs-roofing-author-name {
    font-size: 14px;
  }
 
  .hs-roofing-nav-buttons button {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
 
/* / Roofing Testimonial  style End here / */
/* / / Renovation Testimonial  style start here / / */
.slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px;
}

.slider {
  display: flex;
  gap: 18px;
  transition: transform 0.5s ease-in-out;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
.dot.active {
  background-color: #007bff;
}
.hs-renovation-client-card {
  width: 370px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 calc(100% / 3 - 1rem);
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
            0 1px 3px rgba(0, 0, 0, 0.06),
            0 -2px 4px rgba(0, 0, 0, 0.1),  
            0 2px 4px rgba(0, 0, 0, 0.1);  
  text-align: center;
}
.hs-renovation-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 3px solid rgba(32, 35, 44, 0.75);
}
.hs-renovation-client-card h6 {
  font-size: 23px;
  color: #20232C;
  margin-bottom: 10px;
}
.hs-renovation-client-name h5 {
  font-size: 16px;
  font-weight: bold;
  color: #20232C;
}
.hs-renovation-client-name small {
  font-size: 15px;
  font-weight: bold;
  color: #36454F;
}
@media (max-width: 992px) {
  .hs-renovation-client-card {
    flex: 0 0 calc(100% / 2 - 1rem);
  }
}
@media (max-width: 768px) {
  .hs-renovation-client-card {
    flex: 0 0 100%;
  }
}
@media (max-width: 576px) {
  .hs-renovation-client-card {
    flex: 0 0 calc(100% - 1rem);
  }
}
/* Tablet: 2 cards */
@media (max-width: 992px) {
  .hs-renovation-client-card {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

/* Mobile: 1 card */
@media (max-width: 768px) {
  .hs-renovation-client-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* / / Renovation Testimonial  style End here / / */

/* / plumbing-our-project style start here / */
.hs-plumbing-project-card.swap-enabled {
  flex-direction: row-reverse;
}
.gy-4 {
  padding: 30px;
  --bs-gutter-y: 1.5rem;
  background-color: #eff7ff;
  border-radius: 10px;
}
.py-5 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.hs-plumbing-project-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start ;
  padding: 15px;
  background-color: #fff;
  border: 1.5px solid #dcdceb;
  border-radius: 30px !important;
  transition: border-color 0.3s ease-in-out;
  position: relative;
}
.hs-plumbing-project-card {
  height: auto !important;
  min-height: 220px !important;
}
 
.hs-plumbing-project-card .project-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  height: 100%;
  padding: 0px !important;
}
.short-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.project-title {
  color: #363636;
  margin-bottom: 0;
  flex-grow: 1;
}
.project-author{
  margin-bottom: 5px !important;
}
.project-description {
  font-size: 0.9rem !important;
  color: #363636 !important;
}
.hs-img {
  height: 209px !important;
  width: 200px !important;
  object-fit: cover;
  border-radius: 20px !important;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.project-location-date {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  color: #04437F;
}
 .project-date {
  padding: 5px 10px;
  border-radius: 4px;
}
/* Responsive styling */
 
@media (min-width: 992px) and (max-width: 1200px) {
  .project-card-body {
    padding: 0px !important;
  }
  .project-title {
    font-size: 18px;
    margin-bottom: 10px;
    flex-grow: 0;
}
}
 
@media (max-width: 767px) {
  .hs-plumbing-project-card {
    flex-direction: column;
    text-align: center;
    height: auto;
  }
  .hs-plumbing-project-card.swap-enabled {
    flex-direction: column !important;
  }
  .hs-plumbing-project-card.swap-enabled img {
    order: -1;
  }
  .gy-4 {
    padding: 20px;
  }
}
.hs-plumbing-project-card:hover {
  box-shadow: 17px 17px 50px 0 rgba(143, 144, 166, 0.32);
  border-color: #04437F;
}
.hs-img {
  height: 209px !important;
  width: 200px !important;
  object-fit: cover;
  border-radius: 20px !important;
  margin-bottom: 10px;
  margin-right: 15px !important;
  flex-shrink: 0;
}
.project-card-body {
  padding: 10px;
  flex-grow: 1;
}
.project-title {
  color: #363636;
}
.project-description {
  font-size: 0.9rem !important;
  color: #363636 !important;
}
.project-location-date {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  color: #04437F;
}
@media (max-width: 767px) {
  .hs-plumbing-project-card {
      flex-direction: column;
      text-align: center;
  }
  .hs-plumbing-project-card.swap-enabled {
      flex-direction: column !important;
  }
  .hs-plumbing-project-card.swap-enabled img {
   order: -1;
    flex-direction: column;
    text-align: center;
    height: auto;
  }
 
  .hs-plumbing-project-card.swap-enabled {
    flex-direction: column !important;
  }
 
  .hs-plumbing-project-card.swap-enabled img {
    order: -1;
  }
 
  .gy-4 {
    padding: 20px;
  }
  .hs-img{
    width: 100% !important;
    margin-bottom: 15px !important;
    margin-right: 0px !important;
  }
}
 
.hs-plumbing-project-card:hover {
  box-shadow: 17px 17px 50px 0 rgba(143, 144, 166, 0.32);
  border-color: #04437F;
}

.project-card-body {
  padding: 10px;
  flex-grow: 1;
}
.project-title {
  color: #363636;
}
.project-description {
  font-size: 0.9rem !important;
  color: #363636 !important;
}
.project-location-date {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  color: #04437F;
}
@media (max-width: 767px) {
  .hs-plumbing-project-card {
      flex-direction: column;
      text-align: center;
  }
  .hs-plumbing-project-card.swap-enabled {
      flex-direction: column !important;
  }
  .hs-plumbing-project-card.swap-enabled img {
      order: -1;
  }
  .gy-4 {
      padding: 20px;
  }
}

  .gy-4 {
      padding: 20px;
  }

/* / plumbing-our-project style end here / */
 
/* / carpenter-our-project style start here / */
.project-section-heading{
  font-size: 20px;
  font-weight: 700;
  font-family: 'DM Sans';
  color: #ffffff;
  margin-bottom: 0px;
  }
  section.hs-carpenter-project {
  margin-bottom: 60px;
}
.hs-carpenter-project-image-wrapper {
    position: relative;
    display: inline-block;
}
.hs-carpenter-project-gallery-img {
    display: block;
    width: 100%;
    object-fit: cover; 
}
.hs-carpenter-projects-gallery-images .large-image img {
    height: 300px !important; 
}
.hs-carpenter-projects-gallery-images .small-image img {
    height: 150px !important; 
}
.hs-carpenter-projects-gallery-images:nth-child(2) .large-image img {
    height: 470px !important;
}
.hs-carpenter-projects-gallery-images:nth-child(4) .small-image img {
    height: 150px; 
}
.hs-carpenter-projects-gallery-images:nth-child(4) .large-image img {
    height: 300px; 
}
.hs-carpenter-project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hs-carpenter-project-overlay:hover {
  opacity: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.hs-carpenter-projects-gallery-images{
  row-gap: 20px;
}
.hs-carpenter-project-image-text{
  padding: 15px;
  font-size: 20px;
  font-weight: 700;
}
.hs-carpenter-service-cta {
    padding: 11px;
    border-radius: 5px;
    background-color: #C7844F;
    color: #ffffff;
    border: none;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    width: fit-content;
  }
  .hs-carpenter-service-cta:hover {
  background-color: #3E3128;
  color: #ffffff;
  }
 
 /* carpenter-our-project style end here  */
  /* / electronics-our-project style start here / */
  .hs-electrical-h2-heading {
    color: #008080; 
    font-family: 'Arial', sans-serif;
  }
  .hs-electrical-project-btn a {
    font-size: 18px; 
  }
 section.hs-electrical-project{
  margin-bottom: 80px;
}
.hs-electrical-project-container{
  width: 100%;
  max-width: 1180px;
}
.hs-electrical-browse-work-btn{
  text-decoration: none;
  letter-spacing: 0.4px;
  font-size: 15px;
  background-color: #008080;
  border: 2px solid #008080;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 600;
}
.hs-electrical-browse-work-btn:hover{
  border: 2px solid #008080;
  color: #008080;
  background: unset;
}
.electronix-project-card {
  position: relative;
  overflow: hidden !important;
  border-radius: 15px !important;
  height: 100%;
}
.project-img {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  border-radius: 15px;
}
.electronix-project-card::before {
  content: "";
  position: absolute;
  border-radius: 15px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  z-index: 1;
  margin-top: 20px !important;
}
.first-column-img {
  height: 630px !important; 
}
.project-description {
  position: absolute;
  
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  width: calc(100% - 40px);
}
.hs-project-span-heading{
  background-color: teal;
  padding: 5px 20px;
  font-size: 15px;
  border-radius: 30px;
  font-weight: 600;
  color: #ffffff;
}
.hs-project-heading {
  margin-top: 15px;
}
.project-btn-column{
  justify-content: flex-end !important;
}
@media screen and (max-width: 575px){
  .project-btn-column{
    justify-content: flex-start !important;
    margin-top: 15px !important;
  }
}
@media screen and (max-width: 1200px) {
  .hs-electrical-project-container{
      padding-left: 27px !important;
      padding-right: 27px !important;
      margin: 0 auto !important;
  }
}
/* / electronics-our-project style end here / */
/* / plumbing-our-project style start here / */
.hs-plumbing-project-card.swap-enabled {
  flex-direction: row-reverse;
}
.gy-4 {
  padding: 30px;
  --bs-gutter-y: 1.5rem;
  background-color: #eff7ff;
  border-radius: 10px;
}
.py-5 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.hs-plumbing-project-card {
  border: 1.5px solid #dcdceb;
  border-radius: 10px;
  background-color: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  transition: border-color 0.3s ease-in-out;
  height: auto !important; 
  min-height: 300px !important;
}


.hs-plumbing-project-card .project-card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.project-title {
  color: #363636;
  margin-bottom: 0; 
  flex-grow: 1; 
}

.project-description {
  font-size: 0.9rem !important;
  color: #363636 !important;
}

.hs-img {
  height: 100px;
  width: auto;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.project-location-date {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  color: #04437F;
}

/* Responsive styling */
@media (max-width: 767px) {
  .hs-plumbing-project-card {
    flex-direction: column;
    text-align: center;
  }

  .hs-plumbing-project-card.swap-enabled {
    flex-direction: column !important;
  }

  .hs-plumbing-project-card.swap-enabled img {
    order: -1;
  }

  .gy-4 {
    padding: 20px;
  }
}

.hs-plumbing-project-card:hover {
  box-shadow: 17px 17px 50px 0 rgba(143, 144, 166, 0.32);
  border-color: #04437F;
}
.hs-img {
  height: 100px;
  width: auto;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}
.project-card-body {
  padding: 10px;
  flex-grow: 1;
}
.project-title {
  color: #363636;
}
.project-description {
  font-size: 0.9rem !important;
  color: #363636 !important;
}
.project-location-date {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  color: #04437F;
}
@media (max-width: 767px) {
  .hs-plumbing-project-card {
      flex-direction: column;
      text-align: center;
  }
  .hs-plumbing-project-card.swap-enabled {
      flex-direction: column !important;
  }
  .hs-plumbing-project-card.swap-enabled img {
      order: -1;
  }
  .gy-4 {
      padding: 20px;
  }
}
/* / plumbing-our-project style end here / */
/* / renovation-our-project style start here / */
      .hs-renovation-project-item {
        position: relative;
        display: inline-block;
    }
    .hs-renovation-project-item img {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 375px;
        height: 298px;
        max-width: 100%;
        max-height: 100%;
        transition: opacity 0.3s ease;
    }
    .hs-renovation-project-item .overlay {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        border-radius: 8px;
        transition: opacity 0.3s ease;
    }
    .hs-renovation-project-item:hover .overlay {
        opacity: 1;
    }
    .hs-renovation-project-item .overlay-text {
        color: white;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        padding: 10px;
    }
    .hs-renovation-project-btn {
        position: relative;
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        font-weight: bold;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        background-color: #20232C;
        padding: 10px 15px;
        text-decoration: none;
        text-align: center;
        display: inline-block;
        margin-top: 30px;
    }
    .hs-renovation-project-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 4px;
        background-color: rgba(255, 255, 255, 0.8);
    }
    .hs-renovation-project-btn:hover::before {
        left: auto;
        right: 0;
    }
    .hs-renovation-project-btn:hover {
        border-radius: 5px 0 0 5px !important;
    }
    @media (max-width: 991px) {
        .hs-renovation-our-projects {
            padding: 30px 15px;
        }
        .hs-renovation-project-item img {
            width: 100%;
            max-width: 320px;
            height: auto;
        }
        .hs-renovation-project-item .overlay {
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
        }
        .hs-renovation-project-item .overlay-text {
            font-size: 16px;
            padding: 8px;
        }
    }
    @media (max-width: 767px) {
        .hs-renovation-our-projects {
            padding: 20px 10px;
        }
        .hs-renovation-project-item {
            margin-bottom: 20px;
        }
        .hs-renovation-project-item img {
            border-radius: 5px;
        }
        .hs-renovation-project-item .overlay {
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
        }
        .hs-renovation-project-item .overlay-text {
            font-size: 14px;
        }
    }
    @media (max-width: 576px) {
        .hs-renovation-our-projects {
            padding: 15px 5px;
        }
        .hs-renovation-project-item img {
            box-shadow: none;
        }
      }
/* / renovation-our-project style end here / */


/* 
renovation popup form style Start here */


/*hero section*/
.renovation-popup-field::placeholder {
  color: #777777!important;
  opacity: 1 !important;
}

.cwp-frontend-section-heading-container {
    display: none !important;
}
.renovation-popup-field {
 
  height: 40px !important;
}

.renovation-popup-dropdown-field{
     height: 44px !important;
}
.cwp-field-container {
  margin-bottom: 15px !important;
}
.renovation-popup-button{
    height:48px !important;
    background-color:#00BDFF;
    
}

.cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container label {
    display: none !important;
   
}
textarea.renovation-popup-issue-field {
  height: 120px !important; /* or any height you want */

}
.cwp-frontend-form-container .cwp-custom-form input[type=submit] {
    margin-bottom: 50px !important;
    margin-top: 0px !important;
}
   
    .cwp-form-submit-container {
    padding-left: 24px;
    padding-right: 24px;
     flex-direction: column !important;
        align-items: center !important;
}

    /* Force gray color on select when placeholder is shown */
.renovation-popup-dropdown-field {
  color: #777777;
}

/* When user selects an actual option, change the color */
.renovation-popup-dropdown-field option {
  color: #777777;
}


/* If the field has a valid (non-placeholder) selection, override the gray */
.renovation-popup-dropdown-field:focus option:checked {
  color: #777777;
}
.renovation-popup-issue-field::placeholder {
  color: #777777 !important;
}


/* 
renovation popup form style Start here */







/* plumbing hero section style start here */



    input[type="text"], 
input[type="number"], 
input[type="email"], 
input[type="password"] {
    padding: 0.5em 1em;
    border: none;  
    border-radius: 4px;
    background-color: #fff;
    width: 100%;
    
    font-size: 1rem !important; 
}


.cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container label {
  display: none !important;
}
.hs-plumbing-container-fluid {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px; 
}
  .hs-plumbing-top-bar {
    background: #ffffff;
    padding: 10px 0;
    margin: 0 auto;  
    border-bottom: 1px solid #00000063;
  }
  .hs-plumbing-contact-info{
    display: flex;
    justify-content: end;
    gap: 20px; 
    margin-right: 12px;
  }
  .hs-plumbing-small-text{
    font-size: 12px;
    color: #363636;
  }
  .hs-plumbing-top-bar-title{
    font-size: 14px;
    color: #363636;
  }
  .hs-pluming-header{
    background: #ffffff;
    padding: 10px 0;
    margin: 0 auto; 
    width: 1180px;
  }
  .header-nav ul {
    display: flex;
    gap: 10px; 
  }
  .home-link {
    color: #04437F !important;
    font-weight: bolder;
  }
  
  /* / Header Buttons Styling / */
  .header-buttons a {
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;  
  transition: background-color 0.3s, color 0.3s;
  margin: 0 8px;
  margin-bottom: 4px;
  display: inline-block;  
  line-height: 1.2;  
}
.header-buttons .btn-Make-an-Appointment {
  padding: 8px 18px; 
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px; 
  transition: background-color 0.3s, color 0.3s ;
  margin: 0 8px;
  margin-bottom: 4px;
  display: inline-block; 
  line-height: 1.5;
}
.header-buttons .btn-Quick-Contact {
  padding: 6px 16px; 
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px; 
  transition: background-color 0.3s, color 0.3s ;
  margin: 0 8px;
  margin-bottom: 4px;
  display: inline-block; 
  line-height: 1.5;
}
  .btn-Quick-Contact{
    background-color: transparent; 
    color: #04437F; 
    border: 2px solid #04437F;
  }
  .btn-Quick-Contact:hover{
    background-color: #04437F;
    color: #fff;
  }
  .btn-Make-an-Appointment{
    background-color: #ffc107;
    color: #04437F;
  }
  .btn-Make-an-Appointment:hover{
    background-color: #04437F;
    color: #fff;
  }
  .cwp-frontend-form-container input[type=submit] {
    background: #f8ba08 !important;
    border: 1px solid #f8ba08 !important;
    border-radius: 5px !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    margin: 0 auto 20px !important;
    padding: 20px, 15px !important;
    text-decoration: none !important;
    text-shadow: none !important;
    width: 100% !important;
    height:40px !important;
}
.pop-up-content-p {
  margin-left: 0px !important;
}
.hs-plumbing-popup-form h4 
{
  margin-left: 0px !important;
}
.cwp-frontend-form-container .cwp-frontend-section-container .cwp-frontend-section-content-container{
  padding-top:15px !important;
  padding-bottom:0px !important;
  padding-left:0px !important;
  padding-right:0px !important;
}
.cwp-frontend-section-container .cwp-field-container {
  width: 500px !important;
}
.cwp-frontend-form-container .cwp-custom-form .cwp-frontend-section-container .cwp-frontend-section-content-container {
    gap: 10px !important;
}

.plumbing-popup-dropdown-field {
   
    color: gray;
}


.cwp-frontend-form-container .cwp-frontend-section-container .cwp-frontend-section-content-container{
  border:none !important;
}
input[type="text"], input[type="number"], input[type="email"], input[type="password"]{
  border:1px solid #E0E0E0 !important;
}
select#serviceType {
  border:none !important;
}
#city{
  border:none !important;
}
#contact{
    border:none !important;

}
button.btn-close.close-btn {
    width: 10px;
    height: 10px;
    margin-right: 10px;
    margin-top:10px;
}
/* / ****Hero-section**** / */
.hero-section {
  background-color: #f3f9ff;
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto;
  width: 100%;
}
   .hero-section h1 {
    font-size: 44px;
    }
.hero-content-p {
    font-size: 13px;
    color: #363636;
    text-align: left;
    
    margin-left: 30px;
    }
    .hero-content {
      color: #04437F;
      margin-left:30px !important;
      text-align: left;
      padding-left: 0px !important;
        
     
    }
.hs-plumbing-form {
  border-radius: 30px;
  width: 860px;
  color: #ffffff;
  position: relative;
  margin-left: 30px;
 
}
.form-border{
  border-top-left-radius: 0; 
  border-top-right-radius: 20px; 
  border-bottom-left-radius: 20px;
   border-bottom-right-radius: 20px;
}
.hs-plumbing-form .form-label {
  font-weight: bold;
  font-size: 18px;
  color: #04437F;
  width: 190px;
  margin-left: 10px;
}

.hs-plumbing-form .btn-warning {
  background-color: #ffc107;
  border: none;
  margin-bottom: 13px;
  width: 100px;
  color: #363636;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.hs-plumbing-form .btn-warning:hover {
  background-color: #04437F;
  color: #ffffff;
}

#schedule {
  background-color: #04437F; 
  padding: 8px;
  color: #ffffff;
  margin: 0; 
  border-top-left-radius: 10px; 
  border-top-right-radius: 10px; 
  font-size: 14px ;
  width: 250px;
  display: flex;
  align-items: flex-start;
  margin-left: 30px;
 
}

.position-relative {
  position: relative;
  width: 100%;
}
.input-with-icon {
  padding-right: 40px; 
}
.hs-plumbing-icon-style {
  position: absolute;
  right: 15px; 
  top: 50%;
  transform: translateY(-50%);
  color: #888; 
  font-size: 16px;
  pointer-events: none; 
  z-index: 99;
  height: 18px;
  width: 18px;
}
.hs-plumbing-form .form-label, .form-control, .btn {
  position: relative;
  z-index: 1; 
}
  .form-control, .form-select {
    border: none;
    outline: none;
    font-size: 1rem !important;
    color: #8F90A6 !important;
  }
  .hs-plumbing-border-right {
    position: relative;
    padding-left: 8px;
}
.hs-plumbing-border-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%; 
    height: 80%; 
    width: 2px;
    border-left: 2px solid #DCDCEB
}
.pop-up-input-field{
  margin-top: 30px;
  width: 360px;
  margin-left: 15px;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1050; 
}
.modal-content {
  
  width: 930px;
  margin-top: 80px;
  border-radius: 25px;
  height: auto;
}
.popup-image {
  position: relative;
  height: 100%;
  margin: 0;
}
.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 0 0 5px;
  display: block; 
}
.image-overlay-pop-up {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.156); 
  border-radius: 5px 0 0 5px;
}
.hs-plumbing-popup-form {
  flex: 1;
  padding: 20px;
}
.hs-plumbing-popup-form h4 {
  color: #04437F;
  font-weight: bold;
  margin-left: 18px;
  margin-top: 20px;
}
.pop-up-content-p{
  font-size: 14px;
  margin-left: 18px;
  color: #36454F;
}
.hs-plumbing-popup-form .pop-up-form-control, 
.hs-plumbing-popup-form .pop-up-form-control {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.019);
    border: 1px solid #ddd;
    transition: box-shadow 0.3s ease-in-out;
    border-radius: 8px;
    font-size: 14px;
}

.hs-plumbing-popup-form .pop-up-form-control:focus, 
.hs-plumbing-popup-form .pop-up-form-control:focus {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.019);
    border-color: #ddd;
    outline: none;
    margin-bottom: 10px; 
}
.pop-up-input-field .pop-up-form-control {
  margin-bottom: 10px; 
  width: 100%; 
 padding: 8px;
 color: #777777;
}
.dropdown-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-container select {
  width: 100%;
  padding: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.dropdown-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 9999;
  color: #777777;
  top: 20px;
}

.dropdown-container.open .dropdown-icon {
  transform: translateY(-50%) rotate(180deg);
}
.hs-plumbing-submit-btn {
  background: #f4b400;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  margin-left: 15px;
  width: 360px;
  height: 48px;
  border: none;
  transition: background 0.3s;
  margin-top: 20px !important;
  
}
.submit-btn:hover {
  background: #e09e00;
}
/* =============================
   Responsive Styling - Desktop
   ============================= */
   @media (max-width: 1024px) {
  
}
@media (max-width: 1024px) {
 .hero-flex-row {
    display: flex;
    flex-direction: column;
  }
      .hero-section .col-md-6:not(.text-center) {
        order: 2;
        width: 100%;
    }
  h1.plumbing-hero-heading {
    color: #04437F;
    margin-left: 0px !important;
    text-align: left;
    padding-left: 0px !important;
}
  .hero-section .col-md-6.text-center {
    order: -1; 
    margin-bottom: 20px;
  }

  .hero-section .col-md-6.text-center img {
    max-width: 100%;
    height: auto;
  }

  .hero-section .col-md-6:not(.text-center) {
    order: 2;
  }

  .hero-content,
  .hero-content-p {
    margin-left: 0 !important;
    text-align: center;
  }

  .hs-plumbing-form {
    margin-left: 0 !important;
    width: 100% !important;
  }

  #schedule {
    margin-left: 0 !important;
    justify-content: center;
    text-align: center;
  }
  .popup-flex-row {
    display: flex;
    flex-direction: column;
  }

  .popup-flex-row .col-md-6:first-child {
    order: -1;
    width: 100%;
    margin-bottom: 20px;
  }

  .popup-flex-row .col-md-6:last-child {
    order: 2;
    width: 100%;
  }


  .hs-plumbing-popup-form {
    padding: 20px 15px;
  }

  .hs-plumbing-popup-form h4,
  .hs-plumbing-popup-form .pop-up-content-p {
    text-align: center;
    margin-left: 0;
  }


  .hs-plumbing-form .row {
    flex-direction: column;
  }

  .hs-plumbing-form .col,
  .hs-plumbing-form .col-auto {
    width: 100%;
    margin-bottom: 15px;
  }

  .hs-plumbing-form {
    width: 100%;
    margin-left: 0;
  }

  #schedule {
    margin-left: 0;
  }

  .hero-content,
  .hero-content-p {
    margin-left: 0;
    text-align: center;
  }

  .hero-section h1 {
    text-align: center;
  }

  .modal-content {
    width: 95%;
  }

  .popup-image {
    height: auto;
  }

  .pop-up-input-field {
    width: 100%;
    margin-left: 0;
  }

  .hs-plumbing-submit-btn {
    width: 100%;
    margin-left: 0;
  }
  .hero-section .col-md-6.text-center {
    order: -1;
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-section .col-md-6.text-center img {
    max-width: 80%;
    height: auto;
  }
}
/* =============================
   Responsive Styling - Mobile
   ============================= */
@media (max-width: 991px) {
  .hs-plumbing-form {
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
  }
 
  .hs-plumbing-form .row {
    flex-direction: column;
  }
 
  .hs-plumbing-form .col,
  .hs-plumbing-form .col-auto {
    width: 100% !important;
    margin-bottom: 15px;
  }
 
  .hs-plumbing-form .plumbing-btn {
    text-align: center;
  }
 
  .hs-plumbing-form .btn-warning {
    width: 100%;
  }
 
  .hs-plumbing-form .form-label {
    width: 100%;
    margin-left: 0;
    margin-bottom: 5px;
  }
 
  .hs-plumbing-form .position-relative {
    width: 100%;
  }
}
 
/* =============================
   Responsive Styling - Mobile
   ============================= */
@media (max-width: 910px) {
  .hs-plumbing-form {
    width:120%;
    margin: 10px;
    padding: 15px;
    border-radius: 20px;
  }
 
  .hs-plumbing-form .form-label {
    font-size: 16px;
    margin-left: 0;
  }
 
  .hs-plumbing-form .btn-warning {
    font-size: 16px !important;
    padding: 10px 15px;
    width: 100%;
  }
 
  .hs-plumbing-form .row {
    gap: 10px;
  }
 
  .hs-plumbing-form .col,
  .hs-plumbing-form .col-auto {
    padding-left: 0;
    padding-right: 0;
  }
 
  #schedule { 
     width: 100%;
    margin-left: 0;
    border-radius: 10px 10px 0 0;
    justify-content: center;
    text-align: center;
  }
}


/* plumbing hero section style start here */
















