@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #F43C00;
    --body-color: #EEE9E3;
    --heading-font: "Geist", sans-serif;
    --body-font: "Inter Tight", sans-serif;

}

body {
    background: var(--body-color);
    font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}
section{
	overflow-x:hidden !important;
	overflow-y:auto !important;
}

.navbar {
    padding: 18px 0;
}

.navbar-nav {
    flex: 1;
    justify-content: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 20px;
    color: #111;
}

.btn-call {
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-call:hover {
    background: var(--primary-color);
    color: #fff;
}

/* HERO */

.hero-section {
    padding: 30px 0 40px;
}

.hero-box {
    background: #000;
    color: #fff;
    border-radius: 45px;
    padding: 70px;
}

.hero-badge {
    background: #F6FF00;
    color: #000;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}

.hero-desc {
    color: #A7A6A6;
    margin-bottom: 25px;
}

.btn-estimate {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s all ease-in;
}

.btn-estimate:hover {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* HERO IMAGES */

.hero-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-small {
    width: 100%;
    border: 2px solid #fff;
    border-radius: 30px;
}

.img-big {
    width: 100%;
    border-radius: 40px;
    border: 2px solid #fff;
    margin-left: 15px;
}

/* REVIEW BOX */

.review-box {
    background: #fff;
    color: #000;
    border-radius: 20px;
    padding: 30px;
}

.review-box small {
    font-size: 16px;
}

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

.review-img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -15px;
}

.plus {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    margin-left: 6px;
}

/* OFFCANVAS */

.offcanvas-body .nav-link {
    font-size: 18px;
    padding: 12px 0;
}


.marquee-wrapper {
    white-space: nowrap;
    overflow: hidden;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-track span {
    font-size: 60px;
    font-weight: 700;
    margin-right: 80px;
    color: #000;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.marquee-track i {
    color: var(--primary-color);
    margin-right: 15px;
}

/* animation */

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.about-sec {
    padding: 60px 0px;
}

.title {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
    text-transform: uppercase;
}

.title::before {
    content: "\f111";
    font-family: "Font awesome 7 Free";
    position: absolute;
    left: 0;
    top: 25%;
    font-size: 8px;
    color: var(--primary-color);
    font-weight: 900;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #00000040;
    margin: 25px 0px;
    text-transform: uppercase;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.img-wrap {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.img-wrap img {
    border-radius: 30px;
    transition: 0.5s all ease;
    height: 100%;
    width: 100%;
}

.img-wrap:hover img {
    transform: scale(1.05);
}

.work-sec .container {
    background: #000;
    padding: 20px;
    border-radius: 30px;
    color: #fff;
}

.tabs-nav {
    gap: 20px;
}

.tabs-nav .nav-link {
    color: #888;
    font-weight: 500;
    font-size: 20px;
    border: none;
    padding: 15px 0px;
    transition: 0.3s ease;
}

.tabs-nav .nav-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.tabs-nav .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    text-decoration: underline;
}

.accordion-item {
    border-bottom: 1px solid #ffffff63 !important;
}

#residential,
#commercial {
    font-size: 20px;
}

.accordion-button {
    background: transparent;
    color: #aaa;
    font-weight: 600;
    box-shadow: none;
    border-radius: 0 !important;
    padding: 15px 0px;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: transparent;
    box-shadow: none !important;
}

.accordion-body {
    color: #bbb;
    font-size: 20px;
    padding: 0 0 15px;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after {
    display: none !important;
}

.accordion-button {
    font-size: 40px;
    font-weight: bold;
    text-decoration: underline;
}

#resAccordion {
    margin: 40px 0px;
}

.all-services {
    color: #fff;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
}

.all-services i {
    transform: rotate(-45deg);
}


.process-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
    padding: 20px 40px;
}

.process-card img {
    height: 65px;
    width: 70px;
    object-fit: contain;
}

.process-card h3 {
    font-size: 28px;
    margin-bottom: 0;
}

.popular .container {
    background: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 50px 30px;

}

.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}

.overlay {
    position: absolute;
    z-index: 2;
    font-size: 20px;
    display: flex;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    inset: 0;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: 0.3s ease;
}

.popular-card:hover img {
    transform: scale(1.05);
}

.popular-card:hover .overlay {
    visibility: visible;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--primary-color);
}

.read-more i {
    transform: rotate(-45deg);
}

.popular-card h3 {
    text-align: center;
    margin-top: 20px;
    font-size: 30px;
    margin-bottom: 0;
}


.why-section {
    padding: 100px 0;
    background: #000;
    overflow: visible !important;
}

.why-content {
    position: sticky;
    top: 0px;
    color: #A7A6A6;
    height: max-content;
    font-size: 17px;
}


/* container height for scroll */
.cards {
    max-width: 600px;
    margin: auto;
}

/* CARD */
.why-card {
    position: sticky;
    top: 0px;
    height: 320px;
    padding: 25px;
    margin-bottom: 60px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.why-card-content img {
    margin-bottom: 20px;
}

/* stacking offsets */
.why-card:nth-child(1) {
    top: 0px;
}

.why-card:nth-child(2) {
    top: 0px;
}

.why-card:nth-child(3) {
    top: 0px;
}

.why-card:nth-child(4) {
    top: 0px;
}

/* z-index for overlap */
.why-card:nth-child(1) {
    z-index: 1;
}

.why-card:nth-child(2) {
    z-index: 2;
}

.why-card:nth-child(3) {
    z-index: 3;
}

.why-card:nth-child(4) {
    z-index: 4;
    margin-bottom: 0;
}



.gallery-section {
    padding: 80px 0;
    background: #f5f5f5;
}


.gallery-text p {
    color: #000000;
    opacity: 70%;
    font-size: 20px;
    margin-bottom: 30px;
}

/* IMAGE CARD */
.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* BIG IMAGE */
.gallery-item.large img {
    height: 100%;
    object-fit: cover;
}

/* INFO */
.gallery-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 24px;
    color: #000;
}

.gallery-info .year {
    text-align: right;
    font-weight: 500;
}

.gallery-info small {
    color: #A7A6A6;
    font-size: 18px;
}

.gallery-wrap {
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item img {
    transition: transform 0.4s ease;
}

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



.testimonial-section {
    padding: 80px 0;
}


.text-slider p {
    font-size: 28px;
    max-width: 760px;
    margin: 20px auto 0px;
}

.image-slider {
    max-width: 800px;
    margin: 0 auto;
}

.img-item {
    width: 100%;
    height: 100%;
    padding: 30px;
    padding-bottom: 0;
}


.img-item img {
    width: 90px;
    height: 170px;
    border-radius: 12px;
    margin: auto;
    opacity: 0.4;
    transition: 0.3s;
}


.image-slider .item h6 {
    font-size: 18px;
    margin-top: 30px;
    color: #000;
}


.image-slider .center img {
    transform: scale(1.2);
    opacity: 1;
}

.image-slider .center h6 {
    color: #000;
}

.image-slider .owl-item {
    transition: all 0.3s ease;
}

.image-slider .owl-item:not(.center) {
    transform: scale(0.8);
    opacity: 0.6;
}

/* ARROWS */
.image-slider .owl-nav {
    display: flex !important;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    position: absolute;
    width: 100%;
    top: 30%;
}

.image-slider .owl-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid #000 !important;
    border-radius: 50%;
}

.blog-section .container {
    background: #fff;
    padding: 100px 60px;
    border-radius: 30px;
}

.badge-custom {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #A7A6A6;
    border-radius: 20px;
    font-size: 18px;
    color: #000000d4;
}

.blog-title a {
    font-size: 30px;
    font-weight: 600;
	color:#000;
	text-decoration:none;
}

.blog-img {
    width: auto;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
}

.blog-desc {
    font-size: 18px;
    color: #000;
    opacity: 70%;
    max-width: 260px;
}

.blog-row {
    justify-content: space-between;
}


/* CARD */
.faq-accordion .accordion-item {
    background: #111;
    border-radius: 12px;
    margin-bottom: 12px;
    border: none;
    overflow: hidden;
}


.faq-accordion .accordion-button {
    background: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    padding: 25px 20px;
    font-size: 24px;
    text-decoration: none;
}


.faq-accordion .accordion-button::after {
    display: none;
}


.faq-accordion .icon {
    width: 18px;
    height: 18px;
    position: relative;
}


.faq-accordion .icon::before,
.faq-accordion .icon::after {
    content: "";
    position: absolute;
    background: #fff;
    transition: 0.3s;
}


.faq-accordion .icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


.faq-accordion .icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}


.faq-accordion .accordion-button:not(.collapsed) .icon::after {
    transform: translateX(-50%) scaleY(0);

}


.faq-accordion .accordion-body {
    color: #A7A6A6;
    font-size: 18px;
    padding: 0px 80px 25px 20px;
}

.accordion-collapse {
    transition: height 0.4s ease;
}

.faq-content {
    max-width: 400px;
    margin-bottom: 25px;
}

.faq-img {
    width: 100%;
    border-radius: 24px;

}


.cta-box {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
}


.footer-section {
    background: #000;
    padding: 60px 0;
}

/* MAIN BOX */
.footer-box {
    background: var(--primary-color);
    border-radius: 32px;
    padding: 40px;
    color: #fff;
    font-size: 16px;
}

.footer-div {
    width: 20%;
}

/* HEADING */
.footer-heading {
    font-size: 24px;
    font-weight: 700;
}

/* BUTTON */
.footer-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: auto;
    height: auto;
}

.footer-logo-title {
    font-size: 36px;
    padding-bottom: 5px;
}

.footer-logo p {
    padding-top: 5px;
    border-top: 1px solid #fff;
}

/* SOCIAL */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 100px;
}

.social-icons a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: var(--primary-color);
}

/* HR */
.footer-box hr {
    border-color: rgba(255, 255, 255, 0.7);
    margin: 30px 0;
}

/* COPYRIGHT */
.copyright {
    font-size: 18px;

}

.footer-box small {
    font-size: 16px;
}

.footer-box h5 {
    font-size: 20px;
}


/* inner page css  */


.breadcrum-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40vh;
    border-radius: 30px;
    color: #fff;
    background: url(../img/breadcrum-bg.png) center center/cover no-repeat;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.breadcrum-box::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    inset: 0;
    z-index: 1;
}

.breadcrum-box h1 {
    position: relative;
    z-index: 2;
    font-size: 50px;
    font-weight: bold;
}

.breadcrum-box a,
.breadcrum-box p {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.active-page {
    color: var(--primary-color) !important;
}

.about-content {
    font-size: 47px;
    font-weight: 700;
}
.orange-text{
    color: var(--primary-color);
}
.abt-img {
    width: 100%;
    border-radius: 27px;
}

.vision {
    padding: 80px 0px;
}

.vision-card {
    height: 340px;
    background: #fff;
    border-radius: 27px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 70px;
    font-size: 20px;
}

.vision-card h3 {
    font-size: 30px;
    font-weight: 600;
}

.vision-card img {
    height: 65px;
    width: 70px;
    margin-bottom: 30px;
    object-fit: contain;
}

.mission-sec .container {
    background: #000;
    border-radius: 32px;
    padding: 80px 0px;
    color: #fff;

}

.mission-sec h2 {
    color: #fff;
    max-width: 900px;
    margin: 40px auto 0;
    text-transform: lowercase;
    font-size: 42px;
    font-weight: 700;
}

.mission-sec h2::first-letter {
    text-transform: uppercase;
}

.team-sec{
    padding: 80px 0px;
}

.team-desc {
    max-width: 500px;
    margin-bottom: 25px;
}

.persons-info {
    border-bottom: 1px solid #000;
    position: relative;
    transition: 0.3s all ease;
    margin-top: 50px;
}

.name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.person-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.person-social a {
    color: #000;

}

.persons-info img {
    position: absolute;
    top: -10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 27px;
    display: none;
    transition: 0.5s all ease;
    width: 160px;
    height: 160px;
}

.persons-info:hover img {
    display: block;
}



@media(max-width:1200px){
.accordion-button {
    font-size: 32px;
}
	.blog-desc {
    font-size: 16px;
    max-width: 100%;
    padding-left: 10px;
}
	
	.img-big {
    margin-left: 50px;
}
	
}

@media(max-width:992px){
	.img-big {
    margin-left: 0px;
}
	
	.faq-content {
    max-width: 280px;
}
	.team-desc {
		max-width: 340px;}
	.about-us-sec img{
		margin-top:30px;
	}
	
	.persons-info{
		text-align:center;
	}
	.persons-info img{
		position:relative;
		display:inline;
	}
	.person-social{
		justify-content:center;
	}
	
}
@media(max-width:767px){
	.hero-box {
    padding: 40px 15px;
}
	.breadcrum-box h1{
		font-size:26px;
		text-align:center;
		padding:0px 10px;
	}
	.hero-title {
		font-size: 26px;}
	
	.work-sec .col-lg-6 {
    padding: 15px !important;
}
	.image-slider .center img {
    transform: scale(.8);
    opacity: 1;
}
	.section-title {
		font-size: 26px;}
	
	.hero-images {
    width: 100%;
		margin-bottom:20px;
}
	
	.footer-logo{
		flex-direction:column;
	}
	
	.blog-section .container {
    padding: 50px 15px;
}
	.blog-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
	.title-wrapper {
        flex-direction: column;
        align-items: flex-start !important;
    }
	.faq-content{
		max-width:100%;
	}
	.faq-accordion .accordion-button{
		font-size:18px;
	}
	.cta-box {
    padding: 40px 15px;
}
	.cta-box .col-lg-5{
		padding-left:15px !important;
	}
	.marquee-track span {
		font-size: 32px;}
	.gallery-info{
		font-size:18px;
	}
	.gallery-info small{
		font-size:14px;
	}
	.footer-box{
		padding:40px 15px
	}
	.footer-logo {
    display: flex;
    align-items: self-start;
    gap: 10px;
}
	
	.mission-sec h2 {
    font-size: 26px;
    padding: 0px 10px;
}
	.about-content{
		font-size:24px
	}
	.post img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
	
	.blog-card-custom{
		padding:40px 15px !important;
	}
	
}


