*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Mona-Sans-Medium';
    src: url('../fonts/MonaSans-Medium.woff2') format('woff2'),
        url('../fonts/MonaSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mona-Sans-Regular';
    src: url('../fonts/MonaSans-Regular.woff2') format('woff2'),
        url('../fonts/MonaSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GC-commune-Demo';
    src: url('../fonts/GCcommuneDemo-Regular.woff2') format('woff2'),
        url('../fonts/GCcommuneDemo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4{
    font-family: 'GC-commune-Demo';
}

h5, h6 , a, li{
    font-family: 'Mona-Sans-Medium';
    text-decoration: none;
}

p{
    font-family: 'Mona-Sans-Regular';
    font-size: 16px;
    color: #2D2D2D;
}

:root{
    --primary-color: #60AB45;
    --secondary-color: linear-gradient( to right,#5BC6E6 0%,#2386C6 50% );
    --teritary-color: #117CC1;
}

.gradient-text {
    background: var(--secondary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* top-navbar */
.top-navbar{
    position: relative;
    background: var(--primary-color);
    padding: 6px 0 40px 0;
    width: 100%;
}

.top-navbar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-navbar-info{
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.top-navbar-info-box a{
    color: #fff;
    font-family: 'Mona-Sans-Regular' !important;
}

.top-navbar-social-icons{
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-navbar-social-icons a{
    color: #fff;
    width: 30px;
    height: 30px;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.top-navbar-social-icons a:hover{
    background: var(--teritary-color);
}
.offer-sec .offer-service-box p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.main-navbar.sticky{
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
	    max-width: 100%;
    border-radius: 0;
}
/* main-navbar-start */
.main-navbar{
    position: absolute;
    left: 50%;
    top: 72px;         
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 999;
    background: #fff;
    border-radius: 70px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 2px 30px;
}

.main-navbar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navbar-logo img{
    width: 174px;
    height: auto;
}

.main-navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    align-items: center;
}

.main-navbar-links ul li{
    list-style: none;
}

.main-navbar-links ul li a{
    position: relative;
    display: inline-block;
    color: #2D2D2D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navbar-links ul li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* text se distance */
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navbar-links ul li a:hover{
    color: var(--primary-color);
}

.main-navbar-links ul li a:hover::after{
    width: 100%;
}

.main-navbar-btn a{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.main-navbar-btn a:hover{
    background: #000;
}

/* hero-section */
.hero-bg{
    background-image: url('images/home-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 560px;
    position: relative;
}

.hero-content {
    padding-top: 140px;
    width: 50%;
}

.hero-top-text{
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.hero-top-text img{
    object-fit: contain;
}

.hero-top-text h5{
    margin-bottom: 0;
    font-size: 15px;
}

.hero-content h3{
    font-size: 50px;
}

.hero-content h3 span{
    color: var(--primary-color);
}

.hero-content p{
    color: #000 !important;
}

.hero-btns{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.hero-fill-btn a{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-fill-btn a:hover{
    background: #000;
}

.hero-unfill-btn a{
    border: 1px solid #000;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-unfill-btn a:hover{
    background: var(--secondary-color);
    color: #fff;
    border: 1px solid transparent;
}

/* about-section-start */
.padd{
    padding: 60px 0;
}

.about-left-box{
    position: relative;
}

.about-exp-box{
    width: 44%;
    text-align: center;
}

.about-exp-box h3{
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 0;
}

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

.about-image-one-box {
    width: 64%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 16px;
}

.about-image-one-box img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.about-image-two-box {
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    border: 5px solid #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.about-image-two-box img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.about-contact-box img,
.text-img-cont-box img{
	width: 30px;
}

.about-contact-box {
    background: var(--primary-color);
    display: inline-flex;
    padding: 10px 30px;
    gap: 20px;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 70%;
}

.about-contact-box img{
    object-fit: contain;
}

.about-contact-box-text h4{
    color: #fff;
    margin-bottom: 0;
    font-size: 22px;
}

.about-contact-box-text a{
    font-size: 20px;
    color: #000
}

.about-right-box{
    width: 95%;
    margin-left: auto;
}

.about-top-text{
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.about-top-text img{
    object-fit: contain;
}

.about-top-text h5{
    margin-bottom: 0;
    font-size: 15px;
}

.title{
    color: var(--primary-color);
    font-size: 38px;
}

.about-btn{
    margin-top: 30px;
}

.about-btn a{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-btn a:hover{
    background: #000;
}

/* offer-section */
.offer-sec{
    background: #F7FBF6;
    position: relative;
}

.offer-top-text{
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.offer-top-text img{
    object-fit: contain;
}

.offer-top-text h5{
    margin-bottom: 0;
    font-size: 15px;
}

.offer-btm-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-btn a{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.offer-btn a:hover{
    background: #000;
}

.offer-content{
    margin-top: 70px;
}

.offer-service-box {
    width: 90%;
    margin: auto;
    overflow:hidden;
    transition:.4s ease;
    border:1px solid transparent;
}



.offer-service-img{
    width: 100%;
    height: 200px;
    border-radius: 20px;
    margin-bottom: 26px;
    position: relative;
}

.offer-service-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.offer-service-icon {
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: absolute;
    bottom: -20px;
    right: 30px;
}

.offer-service-icon img{
    width: 50px;
    height: 50px;
    object-fit: none;
}

.offer-service-box h4 a{ 
    color: var(--primary-color);
    font-family: 'GC-commune-Demo' !important;
}

.offer-service-btn a{
    border: 1px solid #2D2D2D;
    color: #2D2D2D;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
    text-align: center;
}

.offer-service-btn a:hover{
    border: 1px solid transparent;
    background: var(--secondary-color);
    color: #fff;
}

/*  */
/* Offer Slider Dots */

.offer-slider .slick-dots{
    position: relative;
    bottom: 0;
    margin-top: 35px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.offer-slider .slick-dots li{
    width: 8px;
    height: 8px;
    margin: 0;
}

.offer-slider .slick-dots li button{
    width: 8px;
    height: 8px;
    padding: 0;
}

.offer-slider .slick-dots li button::before{
    width: 8px;
    height: 8px;
    content: "";
    background: #2D2D2D;
    border-radius: 50%;
    opacity: 1;
    left: 0;
    top: 0;
}

/* Active Dot */

.offer-slider .slick-dots li.slick-active{
    width: 14px;
    height: 14px;
}

.offer-slider .slick-dots li.slick-active button{
    width: 14px;
    height: 14px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.offer-slider .slick-dots li.slick-active button::before{
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* why-choose-section */
.why-choose-top-text{
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.why-choose-top-text img{
    object-fit: contain;
}

.why-choose-top-text h5{
    margin-bottom: 0;
    font-size: 15px;
}

.why-choose-btn{
    margin-top: 24px;
}

.why-choose-btn a{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.why-choose-btn a:hover{
    background: #000;
}

.why-choose-box{
    background: #F7FBF680;
    padding: 50px 15px 15px 15px;
    text-align: center;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    transition: all 0.3s ease;
    min-height: 240px;
}

.why-choose-box:hover{
    background: var(--primary-color);
}

.why-choose-box-icon{
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.why-choose-box:hover .why-choose-box-icon{
    background: #fff;
}

.why-choose-box-icon img{
    width: 50px;
    height: 50px;
    object-fit: none;
}

.why-choose-box:hover .why-choose-box-icon img{
    filter: brightness(0) saturate(100%) invert(56%) sepia(24%) saturate(1083%) hue-rotate(58deg) brightness(94%) contrast(89%);
}

.why-choose-box h4{
    transition: all 0.3s ease;
}

.why-choose-box p{
    transition: all 0.3s ease;
}

.why-choose-box:hover h4{
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.why-choose-box:hover p{
    color: #fff;
}

.project-sec{
    background: #F7FBF6;
    padding: 60px 0 180px 0;
}

.counter-box{
    text-align: center;
}

.counter-icon-box{
    display: flex;
    gap: 14px;
    align-items: start;
    justify-content: center;
}

.counter-icon-box img{
    object-fit: contain;
}

.counter-icon-box h4{
    font-size: 60px;
    margin-bottom: 0;
    font-weight: 800;
}

.counter-box p{
    font-size: 18px;
    margin-top: -6px;
    font-weight: 600;
    letter-spacing: 2px;
}

.counter-content {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--teritary-color);
}

/* project-section */
.project-top-text{
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.project-top-text img{
    object-fit: contain;
}

.project-top-text h5{
    font-size: 15px;
    margin-bottom: 0;
}

.project-btm-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-btn a{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.project-btn a:hover{
    background: #000;
}

.project-service-box-image{
    width: 100%;
    height: 250px;
    border-radius: 20px;
    position: relative;
    margin: 30px 10px;
    overflow: hidden;
}

.project-service-box-image img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: all .5s ease;
}

/* Overlay */

.project-service-box-image::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(96,171,69,.75);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    z-index: 1;
    pointer-events: none;
}

/* Center Icon */

.project-service-box-image::after{
    content: "\f5aa";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.5);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    z-index: 2;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    pointer-events: none;
}

/* Hover */

.project-service-box-image:hover::before{
    opacity:1;
    visibility:visible;
}

.project-service-box-image:hover::after{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,-50%) scale(1);
}

.project-service-box-image:hover img{
    transform:scale(1.08);
}

.project-service-box-image h4{
    margin-bottom: 0;
}

.project-service-box-image h4 a{
    padding: 6px;
    background: #fff;
    color: var(--primary-color);
    width: 80%;
    position: absolute;
    bottom: 6px;
    font-size: 16px;
    border-radius: 50px;
    text-align: center;
    left: 20px;
    font-family: 'GC-commune-Demo' !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.3s ease;
}

.project-service-box-image h4 a:hover{
    background-color: var(--primary-color);
    color: #fff;
}

section.project-services-box-sec {
    margin-top: -150px;
}

.project-service-slider .slick-dots{
    position: relative;
    bottom: 0;
    margin-top: 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.project-service-slider .slick-dots li{
    width: 10px;
    height: 10px;
    margin: 0;
    list-style: none;
}

.project-service-slider .slick-dots li button{
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.project-service-slider .slick-dots li button::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #2D2D2D;
    border-radius: 50%;
    opacity: 1;
    font-size: 0;
}

/* Active Dot */

.project-service-slider .slick-dots li.slick-active{
    width: 16px;
    height: 16px;
}

.project-service-slider .slick-dots li.slick-active button{
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.project-service-slider .slick-dots li.slick-active button::before{
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* areas-we-serve-section */
.areas-we-serve-top-text{
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.areas-we-serve-top-text img{
    object-fit: contain;
}

.areas-we-serve-top-text h5{
    font-size: 15px;
    margin-bottom: 0;
}

.areas-we-serve-btm-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.areas-we-serve-btn a{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.areas-we-serve-btn a:hover{
    background: #000;
}

.areas-we-serve-box{
    background: #F7FBF680;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.areas-we-serve-box:hover{
    border: 1px solid var(--teritary-color);
    transform: translateY(-10px);
}

.areas-we-serve-box h4{
    color: var(--primary-color);
    border-bottom: 1px solid var(--teritary-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.areas-we-serve-box ul{
    margin: 0;
    padding: 0;
}

.areas-we-serve-box ul li{
    list-style: none;
}

.areas-we-serve-box ul li a{
    color: #2D2D2D;
    padding: 2px 0;
    transition: all 0.3s ease;
}

.areas-we-serve-box ul li a:hover{
    color: var(--primary-color);
}

.areas-we-serve-box-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: -12px;
}

.areas-we-serve-box-btn a{
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.areas-we-serve-box-btn a:hover{
    background: #000;
}

/* contact-us-section-start */
.contact-us-sec{
    background: url('images/contact-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
    position: relative;
    margin-bottom: 60px;
}

.contact-us-sec .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000000a8;
}

.contact-us-top-text{
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.contact-us-top-text img{
    object-fit: contain;
}

.contact-us-top-text h5{
    margin-bottom: 0;
    font-size: 15px;
}

.contact-us-box{
    position: relative;
    z-index: 9;
    background: #F7FBF6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact-us-box .quote-form-box label{
    font-size:15px;
    font-weight:500;
    color:#222;
    margin-bottom:8px;
    display:block;
}

.contact-us-box .quote-form-box .form-control,
.contact-us-box .quote-form-box .form-select{
    height:48px;
    border:1px solid #ddd;
    border-radius:10px;
    box-shadow:none;
    font-size:15px;
    color:#555;
    padding:10px 15px;
}

.contact-us-box .quote-form-box .form-control:focus,
.contact-us-box .quote-form-box .form-select:focus{
    border-color:var(--teritary-color);
    box-shadow:none;
}

.contact-us-box .quote-btn{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-us-box .quote-btn:hover{
    background: #000;
}

/* testimonail-section */

.testimonial-top-text{
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.testimonial-top-text img{
    object-fit: contain;
}

.testimonial-top-text h5{
    font-size: 15px;
    margin-bottom: 0;
}

.testimonial-btn{
    margin-top: 24px;
}

.testimonial-btn a{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.testimonial-btn a:hover{
    background: #000;
}

.testimonial-cont-box{
    background: var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    margin-top: 50px;
}

.testimonial-cont-box h4{
    color: #fff;
}

.testimonail-cont-box-btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.test-cont-fill-btn a{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.test-cont-fill-btn a:hover{
    background: #000;
}

.text-img-cont-box{
    display: flex;
    align-items: center;
    gap: 16px;
}

.text-img-cont-box img{
    object-fit: contain;
}

.text-headphone-btn h4{
    font-size: 22px;
    margin-bottom: 0;
}

.text-headphone-btn a{
    font-size: 20px;
    color: #000;
}

.testimonial-right-box{
    background: #F7FBF6;
    padding: 30px;
    border-radius: 20px;
    box-shadow:
rgba(96, 171, 69, 0.40) 0px 5px,
rgba(96, 171, 69, 0.30) 0px 10px,
rgba(96, 171, 69, 0.20) 0px 15px,
rgba(96, 171, 69, 0.10) 0px 20px,
rgba(96, 171, 69, 0.05) 0px 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.testimonial-right-box:hover{
    transform: translateY(-10px);
}

.testimonial-right-box h5{
    font-size: 24px;
    color: var(--primary-color);
}

.testimonial-right-box p{
    font-style: italic;
    color: #000 !important;
    letter-spacing: 1px;
}

.profile-btm-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
}

.profile-temp{
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-temp img{
    width: 60px;
    height: 60px;
    border-radius: 50px;
    object-fit: cover;
}

.profile-name h6{
    margin-bottom: 2px;
    font-weight: 800;
}

.profile-name p{
    font-style: normal !important;
    font-size: 14px;
}

.profile-icon i{
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    border-radius: 50px;
}

/* footer-logo-section */
.footer-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
}


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

.footer-logo-content .row{
    align-items:center; 
}

.footer-call-box{
    display:flex;
    align-items:center;
    gap:15px;
    height:100%;
}

.footer-call-icon i{
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 18px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-call-text p{
    margin-bottom: 0;
}

.footer-call-text a{
    color: #000;
    transition: all 0.3s ease;
}

.footer-call-text a:hover{
    color: var(--primary-color);
}

.footer-logo-content {
    background: #fff;
    padding: 8px 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 50px;
}

/* footer-section-start */
section.footer-logo-sec {
    margin-bottom: -60px;
    z-index: 9;
    position: relative;
}

.footer-sec{
    background: #F7FBF6;
    padding: 120px 0 20px 0;
}

.footer-usefull-links h4{
    color: var(--primary-color);
}

.footer-usefull-links ul{
    margin: 0;
    padding: 0;
}

.footer-usefull-links ul li{
    list-style: none;
    padding: 4px 0;
}

.footer-usefull-links ul li a{
    color: rgba(45, 45, 45, 0.9);
    transition: all 0.3s ease;
}

.footer-usefull-links ul li a:hover{
    color: var(--primary-color);
}

.footer-usefull-links.with-gaps {
    margin-left: -34px;
}

.newsletter-box{
    width:100%;
}

.newsletter-input{
    margin-bottom:10px;
}

.newsletter-input .form-control{
    height:42px;
    border:none;
    border-radius:3px;
    background:#fff;
    box-shadow:none;
    font-size:13px;
    color:#555;
    padding:0 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.newsletter-input .form-control::placeholder{
    color:#999;
}

.newsletter-btn{
    width:100%;
    height:42px;
    border:none;
    border-radius:3px;
    background: var(--secondary-color);
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.newsletter-btn:hover{
    background: #000;
}

.footer-btm-content{
    background: var(--primary-color);
    padding: 6px 0;
}

.copy-right-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-left-box p{
    margin-bottom: 0;
    color: #fff;
}

.copy-left-box p a{
    color: var(--teritary-color);
}

/* -----------------------------------------inner-pages-------------------------------- */

/* testimonial-page */
.inner-banner-sec{
    position: relative;
    width: 100%;
}

.inner-banner-sec .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffffc4;
}

.inner-banner-text{
    position: relative;
    z-index: 9;
    padding: 120px 0;
    text-align: center;
}

.inner-banner-text h3{
    font-size: 48px;
}

.inner-banner-text ul{
    margin: 0;
    padding: 10px 30px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
    background-color: var(--teritary-color);
    border-radius: 4px;
}

.inner-banner-text ul li{
    list-style: none;
}

.inner-banner-text ul li i{
    color: #fff;
    font-size: 16px;
}

.inner-banner-text ul li a{
    color: #fff;
    transition: all 0.3s ease;
}

.inner-banner-text ul li a:hover{
    color: #000;
}

.gallery-page-top-text{
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.gallery-page-top-text img{
    object-fit: contain;
}

.gallery-page-top-text h5{
    margin-bottom: 0;
    font-size: 15px;
}

.contact-us-page-box{
    background: #F7FBF680;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-us-page-box:hover{
    border: 1px solid var(--teritary-color);
    transform: translateY(-10px);
}

.contact-uspage-icon i{
    width: 60px;
    height: 60px;
    border: 1px solid var(--teritary-color);
    color: var(--teritary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin: auto;
    border-radius: 50px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-us-page-box:hover .contact-uspage-icon i{
    background: var(--secondary-color);
    color: #fff;
}

.contact-us-page-box h4{
    color: #2D2D2D;
    margin-bottom: 4px;
    font-size: 20px;
    font-family: 'Mona-Sans-Medium' !important;
}

.contact-us-page-box a{
    color: #2D2D2D;
    transition: all 0.3s ease;
}

.contact-us-page-box a:hover{
    color: var(--primary-color);
}

/*  */
/* Section */
.contact-map-form-section{
    background:#F7FBF6;
}

/* Left Image */
.contact-map-form-section .contact-image{
    height:100%;
    overflow:hidden;
    border-radius:25px;
}

.contact-map-form-section .contact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:25px;
    transition:.4s ease;
}

.contact-map-form-section .contact-image:hover img{
    transform:scale(1.05);
}

/* Form Card */
.contact-map-form-section .contact-form-box{
    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}


/* Labels */
.contact-map-form-section label{
    font-weight:600;
    margin-bottom:8px;
    color:#222;
}

/* Inputs */
.contact-map-form-section .form-control,
.contact-map-form-section .form-select{
    height:44px;
    border:1px solid #ddd;
    border-radius:12px;
    box-shadow:none;
    padding:0 18px;
}

.contact-map-form-section textarea.form-control{
    height:140px;
    resize:none;
    padding:15px 18px;
}

/* Focus */
.contact-map-form-section .form-control:focus,
.contact-map-form-section .form-select:focus{
    border-color:var(--teritary-color);
    box-shadow:none;
}

/* Button */
.contact-map-form-section .contact-btn{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.contact-map-form-section .contact-btn:hover{
    background: #000;
}

.map-page-cotent iframe{
    width: 100%;
    height: 450px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* service-page */
.offer-service-box.with-service-page {
    width: 100% !important;
}


/*  */
.about-inner-sec .about-inner-image-top-box img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.about-inner-sec .about-inner-image-btm-box img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.about-inner-sec .about-inner-image-top-box,
.about-inner-sec .about-inner-image-btm-box{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

/* shine layer */
.about-inner-sec .about-inner-image-top-box::before,
.about-inner-sec .about-inner-image-btm-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.about-inner-sec .about-inner-image-top-box:hover, .about-inner-image-btm-box:hover{
    transform: rotate(4deg);
    filter: brightness(110%);
}

.about-inner-sec .about-inner-image-top-box:hover::before,
.about-inner-sec .about-inner-image-btm-box:hover::before{
    left: 130%;
}

.about-inner-sec .about-inner-image{
    position: relative;
}

.about-inner-sec .about-inner-circle-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-inner-sec .circle-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    border-radius: 100%;
}

.about-inner-sec .circle-svg{
    width: 100%;
    height: 100%;
    animation: rotate 12s linear infinite;
}

.about-inner-sec .circle-text{
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    fill: #fff;
}

.about-inner-sec .circle-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: var(--secondary-color);
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-inner-sec .about-inner-right-text-box{
    width: 95%;
    margin-left: auto;
}


/* abou-choose-section */
.about-choose-us-sec{
    position:relative;
    background:#F7FBF6;
}

.about-choose-us-sec .about-choose-us-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
    transition:.35s;
}

.about-choose-us-sec .about-choose-us-icon{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50px;
    background:var(--secondary-color);
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
}

.about-choose-us-sec .about-choose-us-icon img{
    width:32px;
    transition:.4s;
}

.about-choose-us-sec .about-choose-us-text h4{
    font-size:20px;
    color: #000;
    margin-bottom:4px;
}

.about-choose-us-sec .about-choose-us-item:hover .about-choose-us-icon{
    transform:translateY(-8px) rotate(10deg);
    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.about-choose-us-sec .about-choose-us-item:hover .about-choose-us-icon img{
    transform:rotate(-10deg) scale(.9);

}


.about-choose-us-sec .about-choose-us-image{
    width: 100%;
    height: 500px;
    position:relative;
}

.about-choose-us-sec .about-choose-us-image img{
    width:100%;
    height: 100%;
    object-fit: cover;
    border-radius:30px;
}


.about-choose-us-sec .about-choose-us-floating{
    position:absolute;
    left:-40px;
    bottom:40px;
    background:#fff;
    border-radius:20px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    animation:aboutFloat 3s ease-in-out infinite;
}

.about-choose-us-sec .about-choose-us-floating-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:var(--secondary-color);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

.about-choose-us-sec .about-choose-us-floating h5{
    margin:0;
    color:#666;
    font-size:16px;
}

.about-choose-us-sec .about-choose-us-floating h4{
    margin-top:6px;
    color:var(--primary-color);
}


@keyframes aboutFloat{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

}


/* about-mission-text */
.about-mission-top-text {
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.about-mission-top-text img{
    object-fit: contain;
}

.about-mission-top-text h5{
    margin-bottom: 0;
    font-size: 15px;
}

.about-mission-box{
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 90px 20px 20px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
    z-index: 1;
}

/* Top Curve */
.about-mission-box::before{
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 180%;
    height: 250px;
    background: var(--secondary-color);
    border-radius: 50%;
    z-index: -1;
}

.about-mission-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.about-mission-icon{
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: #fff;
    border: 10px solid #f3f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-mission-icon::before{
    content: "";
    position: absolute;
    inset: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.about-mission-icon i{
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 42px;
}

.about-mission-box h4{
    font-size: 24px;
    color: #000;
    position: relative;
}

.about-mission-box h4::before,
.about-mission-box h4::after{
    content: "";
    position: absolute;
    top: -18px;
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
}

.about-mission-box h4::before{
    left: 50%;
    transform: translateX(-75px);
}

.about-mission-box h4::after{
    right: 50%;
    transform: translateX(75px);
}

.about-mission-box h4{
    padding-top:6px;
}

.about-mission-box h4 span{
    display:block;
}

.about-mission-box p{
    color: #6b7280;
    font-size: 16px;
    line-height: 1.9;
}

/* service-detail-section */

.service-detail-page-sec{
    position:relative;
}

.service-detail-page-sec .service-detail-page-content{
    margin-top:40px;
}

.service-detail-page-sec .service-detail-page-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#eef9eb;
    color:var(--primary-color);
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.service-detail-page-sec .service-detail-page-title{
    font-size:38px;
    margin-bottom:20px;
}

.service-detail-page-sec p{
    color:#666;
    line-height:30px;
    margin-bottom:16px;
}

/* banner-image */
.service-detail-page-sec .service-detail-page-banner-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.service-detail-page-sec .service-detail-page-banner-image img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:25px;
    transition:.4s;
}

/* Shine */

.service-detail-page-sec .service-detail-page-banner-image::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:linear-gradient(
        120deg,
        rgba(255,255,255,0),
        rgba(255,255,255,.45),
        rgba(255,255,255,0)
    );

    transform:skewX(-25deg);
    transition:.8s;
    z-index:2;
}

.service-detail-page-sec .service-detail-page-banner-image:hover::before{
    left:130%;
}

.service-detail-page-sec .service-detail-page-banner-image:hover img{
    transform:scale(1.05);
}

/* second-image */
.service-detail-page-sec .service-detail-page-image-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    margin:20px 0;
}

.service-detail-page-sec .service-detail-page-image-box img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:25px;
    transition:.4s;
}

.service-detail-page-sec .service-detail-page-image-box::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:linear-gradient(
        120deg,
        rgba(255,255,255,0),
        rgba(255,255,255,.45),
        rgba(255,255,255,0)
    );

    transform:skewX(-25deg);
    transition:.8s;
    z-index:2;
}

.service-detail-page-sec .service-detail-page-image-box:hover::before{
    left:130%;
}

.service-detail-page-sec .service-detail-page-image-box:hover img{
    transform:scale(1.05);
}

.service-detail-page-sec .service-detail-page-description{
    margin-top:30px;
}

.service-detail-page-sec .service-detail-page-description h4{
    font-size:28px;
    margin-bottom:20px;
}

.service-detail-page-sec ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-page-sec ul li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    font-weight: 500;
    line-height: 34px;
}

.service-detail-page-sec ul li::before{
    content: "\f00c";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* sidebar */
.service-detail-page-sec .service-detail-page-sidebar{

    position:sticky;
    top:10px;
}

/* sidebar-links */
.service-detail-page-sec .service-detail-page-widget{

    background:#fff;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    padding:35px;
    margin-bottom:35px;
}

.service-detail-page-sec .service-detail-page-widget h4{

    font-size:28px;
    margin-bottom:25px;
    font-weight:700;
}

.service-detail-page-sec .service-detail-page-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.service-detail-page-sec .service-detail-page-widget ul li{
    padding-left: 0 !important;
    margin-bottom:15px;
}

.service-detail-page-sec .service-detail-page-widget ul li:last-child{
    margin-bottom:0;
}

.service-detail-page-sec .service-detail-page-widget ul li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    color:#333;
    padding:16px 20px;
    border-radius:12px;
    background:#f7f7f7;
    transition:.35s;
}

.service-detail-page-sec .service-detail-page-widget ul li a:hover{

    background:var(--secondary-color);
    color:#fff;
    transform:translateX(8px);
}

/* contact-card */
.service-detail-page-sec .service-detail-page-contact{
    background:var(--secondary-color);
    padding:40px;
    border-radius:25px;
    text-align:center;
    color:#fff;
    margin-bottom:35px;
}

.service-detail-page-sec .service-detail-page-contact-icon{

    width:90px;
    height:90px;
    border-radius:50%;
    background:#fff;
    color:var(--teritary-color);
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
    margin-bottom:25px;
}

.service-detail-page-sec .service-detail-page-contact h4{
    font-size:24px;
}

.service-detail-page-sec .service-detail-page-contact p{
    color:#fff;
}

.service-detail-page-sec .service-detail-page-contact a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-top: 6px;
}

.service-detail-page-sec .service-detail-page-widget ul li::before{
    display: none !important;
}

/* areas-serve-page-start */
.areas-seve-inner-top-text{
    display: inline-flex;
    gap: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 24px;
}

.areas-seve-inner-top-text img{
    object-fit: contain;
}

.areas-seve-inner-top-text h5{
    margin-bottom: 0;
    font-size: 15px;
}

.areas-serve-inner-box{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: all .4s ease;
    height: 100%;
}

.areas-serve-inner-image{
    position: relative;
    overflow: hidden;
}

.areas-serve-inner-image img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: all .6s ease;
}

.areas-serve-inner-image::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.05)
    );
}

.areas-serve-inner-image::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0),
        rgba(255,255,255,.45),
        rgba(255,255,255,0)
    );
    transform: skewX(-25deg);
    transition: .8s;
    z-index: 2;
}

.areas-serve-inner-box:hover .areas-serve-inner-image::before{
    left: 130%;
}

.areas-serve-inner-box:hover .areas-serve-inner-image img{
    transform: scale(1.08);
}

.areas-serve-inner-content{
    padding: 20px;
}

.areas-serve-inner-content h4{
    margin-bottom: 16px;
}

.areas-serve-inner-content h4 a{
    font-size: 24px;
    transition: .35s;
    color: #2D2D2D;
    font-family: 'GC-commune-Demo' !important;
}

.areas-serve-inner-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teritary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all .35s ease;
}

.areas-serve-inner-btn i{
    transition: all .35s ease;
}

.areas-serve-inner-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.areas-serve-inner-box:hover h4 a{
    color: var(--primary-color);
}

.areas-serve-inner-box:hover .areas-serve-inner-btn{
    color: var(--primary-color);
}

.areas-serve-inner-box:hover .areas-serve-inner-btn i{
    transform: translateX(6px);
}

/*==================================
Areas We Serve Detail Page
==================================*/

.areas-we-serve-detail-page-sec{
    position: relative;
}

/* Hero */

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-hero{
    background: linear-gradient(135deg,#f7fcff,#eef9ff);
    border-radius:20px;
    padding:60px;
    margin-bottom:70px;
    position:relative;
    overflow:hidden;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-hero::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(91,198,230,.12);
    border-radius:50%;
    top:-120px;
    right:-80px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-hero::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(96,171,69,.10);
    border-radius:50%;
    bottom:-80px;
    left:-80px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-content{
    position:relative;
    z-index:2;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-location{

    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:var(--primary-color);
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-location i{
    color:var(--primary-color);
}

.areas-we-serve-detail-page-sec h1{
    font-size:38px;
}

.areas-we-serve-detail-page-sec p{

    color: #2D2D2D;
    line-height:30px;

}

/* Buttons */
.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-btns{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.areas-we-serve-detail-page-sec .theme-btn{
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.areas-we-serve-detail-page-sec .theme-btn2{
    border: 1px solid #000;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.areas-we-serve-detail-page-sec .theme-btn:hover{
    transform:translateY(-5px);
    background: #000;
    color:#fff;
}

.areas-we-serve-detail-page-sec .theme-btn2:hover{
    background: var(--secondary-color);
    color:#fff;
    border: 1px solid transparent;
}

/* Hero Image */
.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    transition:.6s;
    border-radius:20px;

}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-image::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:linear-gradient(
    120deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.4),
    rgba(255,255,255,0)
    );
    transform:skewX(-25deg);
    transition:.8s;
    z-index:2;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-image:hover::before{
    left:130%;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-image:hover img{
    transform:scale(1.08);
}

/* Content */
.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-inner h2{
    font-size:38px;
}

/* Big Image */

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-full-image{
    overflow:hidden;
    border-radius:30px;
    position:relative;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-full-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:.6s;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-full-image::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:linear-gradient(
    120deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.45),
    rgba(255,255,255,0)
    );

    transform:skewX(-25deg);
    transition:.8s;
    z-index:2;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-full-image:hover::before{
    left:130%;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-full-image:hover img{
    transform:scale(1.08);
}

/* Location Cards */

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-location-box{
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    margin-top:25px;
    transition:.4s;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-location-box:hover{
    transform:translateY(-8px);
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-location-box i{
    width:65px;
    height:65px;
    background:var(--secondary-color);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:22px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-location-box h5{
    margin-bottom:5px;
    font-size:22px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-location-box span{
    color:#666;
}

/* neighbourhood-section */
.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-neighbourhood{
    margin-top: 70px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-neighbourhood h3{
    font-size: 32px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-text{
    margin-top: 70px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-text h3{
    font-size: 32px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-text p{
    margin-bottom: 20px;
}

/* sidebar */
.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-sidebar{
    position: sticky;
    top: 10px;
}

/* service-list */
.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-service-list{
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    margin-bottom: 35px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-service-list h4{
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-service-list h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-service-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-service-list ul li{
    margin-bottom: 15px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-service-list ul li:last-child{
    margin-bottom: 0;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-service-list ul li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 14px;
    background: #f7f9fb;
    color: #222;
    transition: .35s;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-service-list ul li a::after{
    content: "\f061";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    transition: .35s;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-service-list ul li a:hover{
    background: var(--secondary-color);
    color: #fff;
    padding-left: 28px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-service-list ul li a:hover::after{
    transform: translateX(5px);
}

/* contact-box */
.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-contact-box{
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-contact-box::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    right: -70px;
    top: -70px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-contact-box::after{
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    left: -40px;
    bottom: -40px;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-contact-box i{
    width: 90px;
    height: 90px;
    background: #fff;
    color: var(--teritary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 34px;
    position: relative;
    z-index: 2;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-contact-box h4{
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-contact-box p{
    color: #fff;
    position: relative;
    z-index: 2;
}

.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-contact-box a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

/* spacing */
.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-inner,
.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-neighbourhood,
.areas-we-serve-detail-page-sec .areas-we-serve-detail-page-text{
    margin-bottom: 40px;
}

.quote-close{
    position:absolute;
    top:20px;
    right:20px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#071530;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:999;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.quote-close i{
    font-size:18px;
    line-height:1;
}

.quote-close:hover{
    background:#60AB45;
    color:#fff;
    transform:rotate(90deg);
}

.quote-modal .modal-content{
    border:none;
    overflow:hidden;
    border-radius:20px;
    position:relative;
}

.quote-left{
    height:100%;
    background:var(--teritary-color);
    color:#fff;
    padding:60px 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.quote-left span{
    color:#fff;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.quote-left h2{
    font-size:38px;
    margin:15px 0;
}

.quote-left p{
    color:#d9d9d9;
    margin-bottom:30px;
}

.quote-left ul{
    margin:0;
    padding:0;
    list-style:none;
}

.quote-left li{
    margin-bottom:15px;
}

.quote-left i{
    color:#fff;
    margin-right:10px;
}

.quote-right{
    padding:50px;
}

.quote-right h3{
    margin-bottom:30px;
    font-size:32px;
}

.quote-right .form-control,
.quote-right .form-select{
    height:55px;
    border-radius:8px;
    box-shadow:none;
}

.quote-right textarea.form-control{
    height:auto;
}

.quote-right .theme-btn{
    width:100%;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
	border: 0;
    transition: all 0.3s ease;
}

.quote-close{
    position:absolute;
    right:20px;
    top:20px;
    z-index:10;
    background: var(--teritary-color);
    border-radius:50%;
    opacity:1;
}

.quote-close:hover{
    opacity:1;
}

@media(max-width:991px){

.quote-left{
    padding:40px 25px;
}

.quote-left h2{
    font-size:30px;
}

.quote-right{
    padding:30px 25px;
}

.quote-right h3{
    font-size:26px;
}

}


.menu-toggle{
    display:none;
    width:45px;
    height:45px;
    border:none;
    background:var(--teritary-color);
    color:#fff;
    border-radius:5px;
    font-size:22px;
    cursor:pointer;
}

@media(max-width:991px){

	.top-navbar{
		display:none;
	}

	.main-navbar{
		position:relative;
		padding:12px 0;
	}

	.main-navbar-content{
		display:flex;
		align-items:center;
		justify-content:space-between;
		flex-wrap:wrap;
	}

	.menu-toggle{
		display:flex;
		align-items:center;
		justify-content:center;
	}

	.main-navbar-btn{
		display:none;
	}

	.main-navbar-links{
		position:absolute;
		top:100%;
		left:0;
		width:100%;
		background: var(--teritary-color);
		display:none;
		padding:20px;
		z-index:999;
	}

	.main-navbar-links.active{
		display:block;
	}

	.main-navbar-links ul{
		display:flex;
		flex-direction:column;
		gap:0;
		margin:0;
		padding:0;
	}

	.main-navbar-links ul li{
		width:100%;
		list-style:none;
	}

	.main-navbar-links ul li a{
		display:block;
		padding:14px 0;
		color:#fff;
		border-bottom:1px solid rgba(255,255,255,.1);
	}

	.main-navbar-links ul li:last-child a{
		border-bottom:none;
	}

	.main-navbar-links ul li.menu-item-has-children > a::after{
		float:right;
	}

	.main-navbar-links ul ul{
		position:static !important;
		opacity:1 !important;
		visibility:visible !important;
		transform:none !important;
		display:none;
		background:#0d2140;
		padding-left:15px;
	}

	.main-navbar-links ul li.menu-item-has-children.active > ul{
		display:block;
	}

}

@media (max-width: 1120px){
	.hero-content {
    	padding-top: 100px;
	}
}


/* Tablet */
@media (max-width: 991px) {
    h1 {
        font-size: 46px !important;
    }

    h2 {
        font-size: 38px !important;
    }

    h3 {
        font-size: 32px !important;
    }

    h4 {
        font-size: 28px !important;
    }

    h5 {
        font-size: 22px !important;
    }

    h6 {
        font-size: 18px !important;
    }

    p {
        font-size: 15px !important;
    }
	
	.hero-bg {
		height: 450px;
	}
	
	.why-choose-text-box{
		margin-bottom:30px;
	}
	
	.counter-icon-box {
		margin-bottom: 15px;
	}
	
	.about-inner-sec .about-inner-image-top-box img,
	.about-inner-sec .about-inner-image-btm-box img,
	.about-choose-us-sec .about-choose-us-image,
	.service-detail-page-sec .service-detail-page-banner-image img{
		height: auto;
	}
	
	.footer-usefull-links.with-gaps {
    	margin-left: 0;
	}
	
	.hero-btns,
	.copy-right-content,
	.project-btm-text,
	.areas-we-serve-btm-text,
	.testimonail-cont-box-btn,
	.testimonail-cont-box-btns,
	.offer-btm-text{
		flex-wrap: wrap;
	}
	
	.offer-btm-texts{
		margin-bottom: 20px;
	}
	
	.about-inner-sec .about-inner-right-text-box,
	.about-right-box{
    	width: auto;
    	margin-top: 15px;
	}
		
	.project-btn,
	.offer-btn{
		margin-top: 20px;
	}
}


/* Mobile */
@media (max-width: 767px) {
    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 30px !important;
    }

    h3 {
        font-size: 26px !important;
    }

    h4 {
        font-size: 22px !important;
    }

    h5 {
        font-size: 20px !important;
    }

    h6 {
        font-size: 18px !important;
    }

    p {
        font-size: 15px !important;
        line-height: 1.6;
    }
	
	.hero-btns,
	.copy-right-content,
	.project-btm-text,
	.areas-we-serve-btm-text,
	.testimonail-cont-box-btn,
	.testimonail-cont-box-btns,
	.offer-btm-text{
		flex-wrap: wrap;
	}
	
	.offer-btm-texts{
		margin-bottom: 20px;
	}
	
	.main-navbar{
		border-radius: 15px;
		top: 0;
	}
	
	    .hero-content {
        padding-top: 60px;
        width: auto;
        position: relative;
        z-index: 9;
    }
	
	.contact-us-sec{
		height: 900px;
	}
	
	.hero-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6); /* White Overlay */
    z-index: 1;
}
	
	.about-choose-us-sec .about-choose-us-floating {
    display: none;
}
	
}


/* 15.07.2026 */
.why-choose-content .row > .col-lg-3:nth-of-type(n+4) .why-choose-box {
    margin-top: 50px;
}


section.contact-us-sec .contact-us-box .wpcf7-form br {
    display: none;
}