body {
    font-family: "Sofia Sans", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main-content{
  overflow: hidden;
}
.h-100{
    height: 100%;
}
.w-100{
    width: 100%;
}   
.img-fluid {
    max-width: 100%;
    height: auto;
}
.text-align-right{
	text-align:right;
}
.padding-top{
    padding-top: 50px;
}
.btn-primary {
    color: white;
    padding: 17px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    background: #0054A6;
    margin-right: 10px;
	text-transform: uppercase;
}

.btn-primary:hover {
    background: #004080;
}
.btn-secondary {
    color: white;
    padding: 17px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    background: #EE693A;
	text-transform: uppercase;

}
.btn-secondary:hover {
    background: #C75A2D;
}
.btn-white {
  color: #0054A6;;
  padding: 17px 20px; 
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  background: #ffffff;
  margin-right: 10px;
  text-transform: uppercase;

}

.btn-white:hover {
  background: #f4f4f4;
}
.btn-container{
    padding: 20px 0;
}

h2{
  font-size: 40px;
  font-weight: 700;
}

/* header-css :: starts here  */

.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  /* position: relative; */
  z-index: 1000;
  position: sticky;
  top: 0;
}
.headerContainer {
   display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0 !important;
}

.header-menu-updated { justify-content: center !important; }
.header-contacts { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; padding: 15px; border-radius: 10px;background-color: #EE693A; }
.contact-item { display: flex; align-items: center; font-weight: 700; color: #0054A6; font-size: 30px; gap: 7px; }
.contact-icon { width: 28px; height: 28px; display: inline-block; }
@media (max-width:900px) {
	.header-contacts { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
	.headerContainer { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width:768px) {
	.header-contacts { width: 50vw; overflow-x: auto; gap: 8px; padding-bottom: 6px; flex-direction: column; margin-top: 2px; padding: 8px;}
	
	.contact-item { font-size:16px; }
	.headerContainer { flex-direction: row; align-items: center; justify-content: space-between; }
	.nav-row { flex-direction: row; align-items: center; justify-content: space-between; }
	.headerRight { display: none; }
	.toggleBtn { display: flex; }
	.nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: #fff; padding: 20px; display: none; z-index: 100; border-bottom: 1px solid #e5e5e5; }
	.nav-links.active { display: flex; align-items: flex-start; padding: 20px 30px; margin-top: 0; }
}
.contact-item a {  display: flex;  align-items: center;  text-decoration: none;  gap: 10px; color: #fff; }

/* Toggle Button */
.toggleBtn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 15px;
  cursor: pointer;
}

.toggleBtn .bar {
  height: 3px;
  width: 100%;
  background: #000;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.toggleBtn.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.toggleBtn.active .bar:nth-child(2) {
  opacity: 0;
}

.toggleBtn.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}


 /* Dropdown Styles */
.our-services-dropdown {
  position: relative;
}

.our-services-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: -85px;
  background: #fff;
  z-index: 10;
  width: 350px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #3333;
}
.arrow-up {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f4f4ff;
  position: absolute;
  bottom: -9px;
  left: 40px;
  display: none;
  z-index: 39;
}

.our-services-dropdown-content a {
  display: block;
  padding: 8px 16px;
  color: #000;
  text-decoration: none;
}

.our-services-dropdown:hover .our-services-dropdown-content {
  display: block;
}





/* Down arrow styling */
/* .our-services-dropdown > a::after {
    content: "▼";
    font-size: 0.8em;
} */
.opensub .menu-item-has-children > a::after {
    content: "▼";
    font-size: 0.8em;
}
.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 21.6px;
    color: #000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;

}
.nav-links a:hover , .nav-links a:focus , .nav-links a:active {
    color: #EE693A;
    transition: all 0.3s ease-in-out;
}
 .nav-links .nav-item a.active {
    color: #EE693A;
  }

/* banner section :: starts css */

.banner-section {
/*     background-image: url('../images/png-images/home-banner.png'); */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 100vh;
    color: white;
}
.banner-wrapper {
    height: 100%;
}
.banner-content{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    height: 100%;
    width: 50%;
}

.banner-content h1 {
    font-weight: 700;
    font-size: 64px;
    margin: 0;
	line-height: 65px;
}
.banner-content p {
    font-weight: 400;
    font-size: 20px;

}
.banner-content span{
    font-weight: 400;
    font-size: 18px;
    margin: 40px 0;

}

/* solutions section :: starts css */
.services-section{
    position: relative;
}
.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/solution-left-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* Ensure the image is behind the content */
}
.services-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/solution-right-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* Ensure the image is behind the content */
}
.solution-description {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #333333;
    margin-bottom: 30px;
}
.service-item-wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.services-wrapper{
    padding: 70px 0;
    text-align: center;
}
.services-wrapper h2 {
    font-weight: 700;
    font-size: 40px;
    margin: 0;
    color: #0054A6;

}
.services-grid{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.service-item{
    width: 217px;
    height: 250px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    background: #ffffff;
    padding: 20px 17px;
    text-align: start;
}
.service-item:hover {
    box-shadow: 4px 4px 0px rgba(238, 105, 58, 1);
    transition: all 0.3s ease-in-out;
    transform: translateY(-5px);
    cursor: pointer;
}

.service-item h3{
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin: 10px 0;
}
.service-item p {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 16px;
    color: #333333;

}

.arrow-button{
    border: 1px solid rgba(217, 217, 217, 1);
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    flex-direction: column;
    width: 10%;
}

.arrow-button:hover {
    background: #EE693A;
    border: 1px solid #EE693A;
}

.arrow-button:hover svg path {
    color: #ffffff;
    stroke: #fff;

}

/* why-choose-section :: css starts here */


.why-choose-wrapper{
    align-items: center;
}
.why-choose-content h2{
    font-weight: 700;
    font-size: 40px;
    margin: 0;
    color: #0054A6;
}
.why-choose-content p {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
}
.why-choose-section{
  padding-bottom: 70px;
}

/* brand we trust section :: css starts here */

.brands-we-trust-section{
    position: relative;
    background-color: #0054A6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    overflow: hidden;

}
.brands-we-trust-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: 
    linear-gradient(89.99deg, rgba(0, 84, 166, 0) -93.33%, #0054A6 99.99%),
    url('../images/brand-bg.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
	opacity: 0.5;
}
.brands-we-trust-wrapper{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    color: #fff;
    text-align: center;
}
.branch-we-trust-content-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 20px;
}
.brands-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.brand-item{
    background: #ffffff;
    border-radius: 15px;
    padding: 10px 25px;
    max-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
	width: 120px;
}
/* .brand-item img{
    width: 100px;
    height: 50px;
} */
.brands-we-trust-content h2{
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    margin: 0;
}
.brands-we-trust-content p {
    font-weight: 400;
    font-size: 18px;

}
  .about-us-section {
    padding: 60px 0;
    background-color: #fff;
  }
  .testimonial-card {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
    text-align: left;
    height: 100%;
    margin: 10px;
  }

  .stars {
    color: #f8ce0b;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .testimonial-card p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .user {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .user-info strong {
    display: block;
    font-size: 14px;
  }

  .user-info small {
    color: #666;
    font-size: 12px;
  }

  .owl-nav {
    margin-top: 20px;
  }

  .owl-nav button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s;
  }

  .owl-nav button:hover {
    background: #333;
  }

  .owl-dots {
    display: none;
  }

  .brand-item {
  text-align: center;
/*   padding: 10px; */
}

.brand-item img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
}



/* about us section :: css starts here */

.about-us-section{
    background-image: url('../images/about-us-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
    /* height: 80vh; */

}
.about-us-services-wrapper{
    padding: 70px 0;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.about-us-services-wrapper h2 {
    font-weight: 700;
    font-size: 40px;
    color: #0054A6;
    margin-bottom: 30px;


}

/* faq-section :: css starts here  */
.FAQ-section {
  padding: 30px 0;

  }
  
  .FAQ-section-title {
    text-align: center;
    color: #0054A6;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
  }
  
  .faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
  }
  
  .faq-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    border: 1px solid #D9D9D9;
    flex: 1 1 calc(50% - 16px); /* 2 columns with gap */
    box-sizing: border-box;
 }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .faq-question p {
    margin: 0;
    font-weight: bold;
  }
  
  .faq-icon {
    background-color: #FFFFFF;
    color: #EE693A;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    font-size: 18px;
    width: 30px;
    height: 30px;
/*     line-height: 28px; */
    text-align: center;
    cursor: pointer;
  }
  
  .faq-answer {
    display: none;
    margin-top: 10px;
    color: #333;
  }
  
/*   .FAQ-section-item.active .FAQ-section-answer {
    display: block;
  }
   */
  .faq-item.active .faq-icon {
    background-color: #f04d23;
    color: #FFFFFF;
  }
  

/* proudly-serving-homes :: css starts here */

.proudly-serving-section{
  padding: 30px 0;
  margin-bottom: 60px;
}

.proudly-serving-section h2 {
    text-align: center;
    color: #0054A6;
    font-size: 40px;
    margin-bottom: 45px;
    font-weight: 700;
  }

  .proudly-serving-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
  }

  .proudly-serving-locations {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px 30px;
  }

  .proudly-serving-checkbox-wrapper {
    display: flex;
    align-items: center;
  }

  .proudly-serving-checkbox-wrapper input[type="checkbox"] {
    display: none;
  }

  .proudly-serving-checkbox-wrapper label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 16px;
    font-weight: 700;
    background-color: #fff;
  }

  .proudly-serving-checkbox-wrapper label:hover {
    border-color: #ff5722;
    background-color: #fff0e6;
    color: #ff5722;
  }

  .proudly-serving-checkbox-wrapper label::before {
    content: "📍";
  }

  .proudly-serving-right {
    max-width: 500px;
  }

  .proudly-serving-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
  }

  .proudly-serving-buttons button {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
  }

  .proudly-serving-book-btn {
    background-color: #1769d2;
    color: white;
  }

  .proudly-serving-callback-btn {
    background-color: #ff5722;
    color: white;
  }

/* blog-section :: css starts here */

.small-blog-section {
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  .small-blog-section h2 {
    color: #0054A6;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
  }

  .small-blog-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    justify-content: center;
  }

  .small-blog-card {
    flex: 0 0 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
  }
  .small-blog-card:hover {
    box-shadow: 4px 4px 0px rgba(238, 105, 58, 1);
    transition: all 0.3s ease-in-out;
    transform: translateY(-5px);
    cursor: pointer;
}

  .small-blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .small-blog-content {
    padding: 20px;
    text-align: left;
  }

  .small-blog-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
  }

  .small-blog-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: #000;
  }

  .small-blog-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
  }

  .read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    border: 1px solid rgba(217, 217, 217, 1);
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    padding: 15px;
    text-decoration: unset;
	color: #ffffff;  
  }

  .read-more-btn .text {
    opacity: 0;
    margin-right: 0;
    white-space: nowrap;
    /* transition: all 0.5s ease-in-out; */
    display:none;
  }

  .read-more-btn svg {
    margin-left: 0;
    transition: margin-left 0.3s ease-in-out;
  }

  .read-more-btn:hover {
    background-color: #f26522;
    color: white;
    width: auto;
    padding: 15px;
  }
  .read-more-btn:hover svg path {
    color: #ffffff;
    stroke: #fff;

}


  .read-more-btn:hover .text {
    opacity: 1;
    display: block;
    margin-right: 8px;
  }

  .read-more-btn:hover svg {
    margin-left: 4px;
  }

  .small-blog-container::-webkit-scrollbar {
    display: none;
  }

/* footer section :: css starts here  */

.footer {
    background: linear-gradient(180deg, #FAEADE 0%, #FFFFFF 100%);
    padding-top: 70px;
    color: #000;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    z-index: 1;
    position: relative;
    padding: 20px 0px;
  }
  
  .footer-left {
    flex: 1 1 45%;
  }
  
  .footer-right {
    flex: 1 1 45%;
    background-color: white;
    padding: 30px 40px;
    border-radius: 20px;
  }
  
  .company-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: #FFFFFF;
    padding: 30px; 
    border-radius: 20px;

  }
  
  .company-info img {
    margin-right: 15px;
	width: 150px;
  }

  .checkbox-group input[type="checkbox"] {
    accent-color: #EE693A;
  }
.checkbox-group .wpcf7-list-item{
	margin: 0 !important;
}
  .footer{
    position: relative;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/footer-before.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* z-index: -1; */
  }
  .footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../images/footer-after.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 70%;
    height: 100%;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
  }

.footer-map-ifram
{
	background: #FFFFFF;
    border-radius: 20px;
	margin-top: 10px;
    padding: 40px 30px;
	position: relative;
	z-index: 1;
}
  
  .footer-box h4 {
    font-size: 16px;
    margin-bottom: 5px;
	  margin-top:0;
  }

  .footer-box{
    background: #FFFFFF;
    padding: 25px 20px;
    border-radius: 20px;
  }
	.footer-box a {
		color: #000000;
		text-decoration:none;
	}
  
  .footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
  }
  
  .footer-form input,
  .footer-form textarea {
    width: 96%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #D9D9D9;
	border-radius: 8px;
  }
  
  
  .checkbox-group input[type="checkbox" i] {
    width: auto;
	  transform: scale(1.2);
  }
  .name-fields {
    display: flex;
    gap: 30px;
	width: 93%  
  }
  
  .name-fields input {
    flex: 1;
  }
  
  .checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 10px 0;
    font-size: 14px;
  }
  .checkbox-group label{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  
  .footer-form textarea {
    height: 80px;
  }
  
  .footer-form button {
    background-color: #f26a3e;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .footer-form button:hover {
    background-color: #d4552d;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #ccc;
    margin-top: 20px;
    background: #1F1F1F;
    color: #FFFFFF;
    padding: 1px 20px;
    position: relative;
    z-index: 1;

  }
.carousel-buttons{
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.carousel-buttons #prevBtn {
	border: 1px solid rgba(217, 217, 217, 1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: rgba(238, 105, 58, 1);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-buttons #nextBtn {
	border: 1px solid rgba(217, 217, 217, 1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: rgba(238, 105, 58, 1);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ABOUT-US-PAGE :: CSS STARTS */

/* .about-us-banner{
  background-image: url('../images/png-images/about-banner.png') !important;
} */
.amr-heating-container{
  position: relative;
}
.amr-heating-container::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('../images/amr-heating-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* z-index: -1; */
}
.amr-heating-content{
  margin: 40px 0;
}
.amr-heating-item{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}
.amr-heating-item h4{
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  margin: 0;

}
.amr-heating-item p{
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin: 0;
}
.about-brand-section{
  border-radius: 40px;
  margin-bottom: 100px !important;
}


/* OUR-GALLERY-PAGE :: CSS STARTS  */

.gallery-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

 .gallery-section h2 {
  color: #0b4eb7;
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.tab {
  background: none;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  color: black;
  border-bottom: 2px solid transparent;
  padding: 5px;
}

.tab.active {
  color: #0b4eb7;
  border-color: #0b4eb7;
}
.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar{
  opacity: unset !important;
  visibility: visible !important;
}
.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.gallery {
  display: none;
}

.gallery.active {
  display: block;
}

.gallery a:hover img {
  transform: scale(1.05);
}

.gallery-container .masonry {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-container .masonry-item {
  background: #fff;
  display: inline-block !important;
  margin-bottom: 1rem;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gallery-container .masonry-item img {
  width: 100%;
  display: block;
}

/* REVIEWS-PAGE :: CSS STARTS */
.our-customer-section{
  padding: 60px 0;
}
.our-customer-content h2 {
  font-weight: 700;
  font-size: 64px;
  color: #000000;
  margin: 0;

}
.our-customer-content p {
font-weight: 400;
font-size: 20px;

}
.reviews-container{
  background: url('../images/reviews-testimonial-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.masonry {
  column-count: 3;
  column-gap: 2.5rem;
  max-width: 870px;
  margin: auto;
  padding: 1rem 0;
}

.review-card {
  background: white;
  display: inline-block;
  margin: 0 0 1.5rem;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #D9D9D9 !important;
  padding: 1.5rem;
  box-sizing: border-box;
  break-inside: avoid; 
  text-align:left;	
}

.review-stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1.5rem;
  height: auto;
  overflow: overlay;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author img {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin-right: 0.75rem;
}

.review-name {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 1);
	
}
.margin-left{
	margin-left: 30px;
}
.review-company {
  font-size: 0.85rem;
  color: #777;
}

/* CONTACT PAGE :: CSS STARTS  */

.contact-us-form-section{
  padding: 60px;
  position: relative;
}
.contact-us-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('../images/contact-us-left.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-us-form-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('../images/contact-us-right.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-us-form-section .footer-right{
  border: 1px solid #D9D9D9;
  flex: 1 1 30%;
}
.contact-left-content{
  flex: 1 1 15%;
}
.contact-us-form-section .footer-container{
  width: 90%;
}
.contact-us-form-heading{
  font-weight: 700;
  font-size: 40px;
  color: #0054A6;
  margin: 0;
  margin-bottom: 20px;
}
.contact-us-section-brands .brands-we-trust-content{
    color: #000000;
}
.contact-us-section-brands{
  padding: 80px 40px;
}
.contact-us-section-brands .brand-item{
  border: 1px solid #D9D9D9;
}
.name-fields .wpcf7-form-control-wrap {
	display: flex;
	flex-direction: column;
    align-items: flex-start;
}
/* FULL HEATING / BOILER INSTALLATION CSS STARTS */

.full-boiler-description{
  padding: 60px 0;
  position: relative;
}
.full-boiler-description::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('../images/full-heating-desc-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.full-boiler-description h2 {
  font-weight: 700;
  font-size: 40px;
  color: #0054A6;
  margin: 0;
}
.full-boiler-description p {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
.plumbing-list ul li {
  margin-bottom: 15px;
}

/* Hide mobile nav by default */
.mobile-nav {
  display: none;
  position: absolute;
  top: 146px; /* adjust if needed */
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Show when active */
.mobile-nav.active {
  display: block;
}

/* Ensure only visible on mobile */
@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }

  .toggleBtn {
    display: none;
  }
}
.header-phone-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 !important;
}
.header-phone-wrapper a {
    color: #fff;
	font-size: 2rem;
	display: flex;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
	margin-bottom: 0;
	font-weight: 700;
	line-height: 1.3;
}
.header-phone-wrapper a .header-phone-emergency {
    background-color: #0054A6;
    padding: 12px 20px 13px 20px;
    border-radius: 4px 0 0 4px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-right: 41px;
    position: relative;
    height: 41px;
}
.header-phone-wrapper a .header-phone-emergency svg {
    width: 38px;
    margin-right: 10px;
}
.header-phone-wrapper a .header-phone-emergency:after {
    content: '';
    border-left: 20px solid #0054A6;
    border-top: 33px solid #0054A6;
    border-right: 20px solid transparent;
    border-bottom: 33px solid transparent;
    position: absolute;
    right: -39px;
    top: 0;
}
.header-phone-wrapper a .header-phone-number {
    background-color: #EE693A;
    padding: 12px 20px 13px 12px;
    border-radius: 0 4px 4px 0;
    height: 41px;
    position: relative;
}
.header-phone-wrapper a .header-phone-number:before {
    content: '';
    border-left: 20px solid transparent;
    border-top: 33px solid transparent;
    border-right: 20px solid #EE693A;
    border-bottom: 33px solid #EE693A;
    position: absolute;
    left: -39px;
    top: 0;
}
.header-phone-wrapper>a:hover, .header-phone-wrapper>a:active, .header-phone-wrapper>a:focus {
    transform: scale(1.05);
}
@media (max-width:768px) {
	.header-phone-wrapper
	{
		display: none;
	}
	.headerContainer
	{
		flex-direction: column !important;
	}
}