* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


  
  #preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #333; /* Adjust this as needed */
    z-index: 9999;
  }
  
  .loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
  }
  
  .loader::after,
  .loader::before {
    content: '';
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #FFF;
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
  }
  
  .loader::after {
    animation-delay: 1s;
  }
  
  @keyframes animloader {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }
  
  #content {
    display: none;
  }
  
  
html {
	scroll-behavior: smooth;
}

body {
    font-family: Open Sans;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1px;
}


h1, h2, h3, h4 {
    margin-bottom: 20px;
    font-family: Open Sans;
    font-weight: 600;
}

p {
    font-family: Open Sans;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}

button {
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    border: none;
}

.header-top-area {
    /* background: linear-gradient(90deg, rgba(244,42,65,0.932623171338848) 21%, rgba(0,106,78,1) 72%); */
    background-color: #0F4229;
    height: 40px;
}

.header-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    height: 40px;
}

.header-top-wrapper a {
    color: #fff;
    font-weight: 400;
}

.container {
    width: 93%;
    margin: 0 auto;
}

.header-area {
    background: linear-gradient(90deg, rgba(244,42,65,0.932623171338848) 21%, rgba(0,106,78,1) 72%);
    /* background: linear-gradient(90deg, rgba(255,255,255,1) 9%, rgba(244,42,65,0.932623171338848) 21%, rgba(0,106,78,1) 72%); */
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo img {
    width: 85px;
    border-radius: 50%;
    margin-top:10px;
}

.menu ul {
    display: flex;
}

.menu ul li {
    padding: 8px 20px;
    list-style: none;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
}

.social-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    display: inline-block;
    color: #fff;
    font-size: 30px;
    margin: 3px;
}

.social-links button {
    padding: 6px 12px;
    margin-right: 22px;
    background-color: #e5e5e5;
}

.social-links i.fa-square-facebook, .social-links i.fa-whatsapp-square, .social-links i.fa-square-x-twitter, .social-links i.fa-square-youtube {
    background-color: #d9d9d9;
    padding: 1px 2px;
    border-radius: 4px;
}

.social-links i.fa-square-facebook {
    color: #3b5998;
}

.social-links i.fa-square-x-twitter {
    color: #1da1f2;
}

.social-links i.fa-square-youtube {
    color: #ff0000;
}

.social-links i.fa-whatsapp-square {
    color: #25D366;
}

.footer-section {
    /* background: url(../images/bg1.jpg); */
    background-color: #00612b;
    background-size: cover;
    background-position: top;
    color: #fff;
    padding: 100px 0;
    position: relative;
    /* z-index: 1; */
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.single-footer {
    width: 22%;
}

.single-footer a {
    color: #fff;
    transition: .3s;
}

.single-footer a:hover {
    color: #dedede;
    letter-spacing: 1.8px;
}

.single-footer li {
    margin-left: 18px;
}

.single-footer img {
    width: 200px;
    margin-bottom: 15px;
    border-radius: 20px;
    padding: 10px;
    background-color: #fff;
}

/* .footer-section-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0F4229;
    opacity: .93;
    z-index: -1;
} */

.image-gallery-area {
    padding: 100px 0;
    background-color: #f2f2f2;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 6vw);
    grid-gap: 10px;
}

.single-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.single-gallery img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
    display: block;
}

.single-gallery::before,
.single-gallery::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, 0.6);
    transition: width 0.5s ease;
    z-index: 2;
}

.single-gallery::after {
    left: auto;
    right: 0;
}

.single-gallery:hover::before,
.single-gallery:hover::after {
    width: 50%;
}

.single-gallery:hover img {
    transform: scale(1.05);
}

.single-gallery .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.single-gallery:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.single-gallery .portfolio-text a.btn {
    color: #006a4e;
    background: #cccccc;
    display: block;
    padding: 0 10px;
    border-radius: 50%;
}

.single-gallery .portfolio-text h3, .single-gallery .portfolio-text p {
    color: #f5f5f5;
}

.single-gallery .portfolio-text p {
    font-size: 15px;
    line-height: 1.5;
    padding: 0 10px;
}

.single-gallery .portfolio-text .btn:hover {
    background: #006a4e;
    color: #f5f5f5;
}


.gallery .single-gallery:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 4;
}

.gallery .single-gallery:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 4;
    grid-row-end: 7;
}

.gallery .single-gallery:nth-child(3) {
    grid-column-start: 4;
    grid-column-end: 8;
    grid-row-start: 1;
    grid-row-end: 7;
}

.gallery .single-gallery:nth-child(4) {
    grid-column-start: 8;
    grid-column-end: 13;
    grid-row-start: 1;
    grid-row-end: 4;
}

.gallery .single-gallery:nth-child(5) {
    grid-column-start: 8;
    grid-column-end: 10;
    grid-row-start: 4;
    grid-row-end: 7;
}

.gallery .single-gallery:nth-child(6) {
    grid-column-start: 10;
    grid-column-end: 13;
    grid-row-start: 4;
    grid-row-end: 7;
}

/* Lightbox CSS */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
}

.lightbox.visible {
    display: flex;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.slider-area {
    display: none;
}

.slider-wrapper {
    position: relative;
    height: 550px;
}

.slider-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 0, 20% 0, 60% 100%, 0% 100%);
    background: url('../images/roof repair.jpg');
    height: 550px;
    background-position: left bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.slider-left::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: #fff;
    opacity: .7;
    z-index: -1;
}

.slider-left img {
    width: 425px;
    display: block;
    margin-left: 50px;
    margin-top: 40px;
}

.slider-left h1 {
    margin-left: 60px;
    margin-top: 20px;
    font-size: 34px;
    font-family: century gothic;
    font-weight: 400;
    width: 45%;
    line-height: 1.4;
    letter-spacing: 0px;
}

.slider-left span {
    background-color: #00612b;
    padding: 1px 18px;
    color: #fff;
    border-radius: 10px 70px 0px 10px;
}

.slider-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 62% 100%);
    background-color: #0F4229;
    height: 550px;
}

.slider-right::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: #000000;
    opacity: .5;
    z-index: -1;
}

.single-slide {
    height: 550px; 
    color: white; 
    padding: 20px;
    background-image: url('../images/slider2.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.left {
    clip-path: polygon(0 0, 10% 0, 55% 100%, 0% 100%);
    background-color: #00612b;
    height: 550px;
}

.left img {
    width: 300px;
    margin-top: 110px;
    margin-left: 60px;
}

.slider-area2 {
    height: 550px;
    margin: 0 0 100px 0;
}

.slider-wrapper2 {
    height: 550px;
}

.left h1 {
    color: #fff;
    font-family: century gothic;
    font-weight: 300;
    font-size: 33px;
    width: 40%;
    margin-left: 60px;
    line-height: 1.3;
    margin-top: 20px;
    letter-spacing: .2px;
}

.left span {
    background-color: #f9f9f9;
    color: #00612b;
    padding: 2px 15px;
    font-weight: 300;
    border-radius: 10px;
}

.single-slide2 {
    height: 550px; 
    color: white; 
    padding: 20px;
    background-image: url('../images/Painting1.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

.slide-content2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00170b;
    opacity: .8;
    z-index: 1;  
}

.slide-content2 {
    width: 60%;
    padding: 50px;
    text-align: right;
    margin-left: 35%;
    z-index: 3;
    position: absolute;
}

.slick-dots {
    bottom: -60px;
}

.slide-content2 h2 {
    font-size: 65px;
    font-family: century gothic;
    font-weight: 300;
}

.slide-content2 h3 {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.6;
}

.slider-wrapper2 {
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
}

.right-nav .single-slide2 {
    padding: 0;
    height: 80px;
    border-radius: 20px;
    margin: 2px 1px;
    opacity: .6;
}

.right-nav {
    margin: 0 0 100px 0;
}

.partnership-area {
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background-color: #f9f9f9;
}

.partnership-wrapper {
    display: flex;
    animation: marquee 15s linear infinite;
}

.single-partnership {
    flex: 0 0 auto;
    margin-right: 10px; /* Optional: adds space between items */
}

.single-partnership img {
    height: 150px;;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}



.about-area {
    padding: 100px 0;
    background-color: #f2f2f2;
    background-image: url(../images/about-bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.about-area::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #fff;
    opacity: .9;
    z-index: -1;
}
.about-wrapper {
    display: flex;
    justify-content: space-between;
}

.about-image {
    width: 48%;
}

.about-text {
    width: 48%;
}

.about-one img, .about-two img, .about-three img {
    border-radius: 280px;
}

.about-one img {
    width: 320px;
    height: 500px;
}

.about-two img {
    width: 200px;
    height: 350px;
    border: 5px solid #ececec;
}

.about-three img {
    width: 200px;
    height: auto;
    border: 5px solid #ececec;
}

.about-image {
    position: relative;
}

.about-two {
    position: absolute;
    top: 80px;
    right: 125px;
}

.about-three {
    position: absolute;
    top: 165px;
    right: 0;
}

.about-text h2 {
    font-size: 36px;
    font-family: Century Gothic;
}

.about-text span {
    background-color: #00612b;
    color: #fff;
    padding: 1px 15px;
    border-radius: 0 10px 0 10px;
}


.mission-bg {
    background-image: url(../images/mission-bg.png);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
}

.vision-bg {
    background-image: url(../images/vision-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mission, .vision {
    position: relative;
    z-index: 1;
    color: #fff;
    height: 400px;
}

.mission::before, .vision::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
}

.mission::before {
    clip-path: polygon(0 0, 50% 0, 55% 100%, 0% 100%);
    background-color: #f53843;
}

.vision::before {
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 50% 100%);
    background-color: #00612b;
}

.mission-content {
    width: 40%;
    padding: 60px 0 0 100px;
}

.vision-content {
    width: 40%;
    padding: 60px 100px 0 0;
    margin-left: 60%;
    text-align: right;
}

.mission-content h2, .vision-content h2 {
    font-family: Century Gothic;
    font-size: 36px;
}

.section-title {
    width: 65%;
    margin: 0 auto;
    text-align: center;
}

.section-title h2 {
    font-size: 36px;
    font-family: Open Sans;
}

.services-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.service-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

.service-title h2 {
    width: 20%;
    text-align: left;
    background-color: #F53843;
    color: #ffffff;
    padding-left: 14px;
    padding-top: 7px;
    padding-bottom: 6px;
    margin-bottom: 1px;
    font-size: 28px;
    font-weight: 400;
    border-radius: 15px 0 0 0;
}

.service-title p {
    width: 80%;
    padding: 10px 20px;
    line-height: 1.3;
    margin: 0;
    background-color: #00612b;
    border-radius: 0 15px 0 0;
    margin-bottom: 2px;
    color: #fff;
}

.services-wrapper {
    display: flex;
    width: 100%;
}
.tab-menu {
    display: flex;
    flex-direction: column;
    background-color: #f53843;
    width: 20%;
    padding: 0;
    list-style-type: none;
    margin: 0;
}
.tab-menu li {
    cursor: pointer;
    padding: 5px 15px;
    color: white;
    border-bottom: 1px solid #231f20;
    transition: background-color 0.3s;
}
.tab-menu li:hover,
.tab-menu li.active {
    background-color: #00612b;
    color: #fff;
    font-weight: 500;
    border-radius: 15px 0 0 15px;
}

.tab-menu li:first-child:hover {
    background: #00612b;
}

.tab-content {
    flex-grow: 1;
    padding: 20px;
    display: none;
    width: 80%;
    background-color: #00612b;
    color:#fff;
}
.tab-content.active {
    display: block;
}
.tab-content img {
    max-width: 100%;
}
.tab-menu li:first-child {
    background-color: #f53843;
    color: #fff;
}

.tab-menu li.active:first-child {
    background-color: #f53843;
    color: #fff;
}

.tab-content-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.tab-content-left {
    width: 49%;
}

.tab-content-right {
    width: 49%;
}

.tab-content-right img {
    width: 100%;
    border: 2px solid #00612b;
    padding: 5px;
    border-radius: 4px;
}

.copyright-area {
    background-color: #0F4229;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.copyright-wrapper p{
    margin: 0;
}



.advantages-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: start;
}

.single-advantages {
    width: 24%;
    margin-bottom: 30px;
}

.single-advantages i.fas {
    font-size: 50px;
    display: block;
    text-align: center;
    margin: 20px 0;
    color: #dfdfdf
}

.advantages-area {
    background-color: #f53843;
    color: #fff;
    padding: 80px 0;
}

.single-advantages h3 {
    font-size: 20px;
    font-weight: 600;
}

.single-advantages p {
    letter-spacing: 0.5px;
}

.single-advantages {
    border: 1px solid #cecece;
    transition: .5s;
    padding: 15px;
    min-height: 320px;
    border-radius: 10px;
}

.single-advantages:hover {
    background-color: #00612b;
    border: 1px solid #f3f3f3;
}

.slick-dots li.slick-active button:before {
    color: #00612b;
}

.slick-dots li button:before {
    font-size: 15px;
}
