@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');


html {
	overflow-x: hidden;
}

body {
	font-family: 'Raleway', sans-serif;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	overflow-x: hidden;
}

#loader-wrapper{
    display: none;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

p {
	font-size: 16px;
	line-height: 25px;
}



/* Loader full-screen wrapper */
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Spinner style */
.loader {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #06630b;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.common-btn {
	background-color: #06630b;
	border-color: #06630b;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	margin: 5px;
	transition: background-color 0.3s ease;
}

.common-btn:hover {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.common-btn-reverse:hover {
	background-color: #06630b;
	border-color: #06630b;
	color: #fff;
}

.common-btn-reverse {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	margin: 5px;
	transition: background-color 0.3s ease;
}


/* top bar section start */
.top-bar {
	background-color: #1a202c;
	color: #ffffff;
	padding: 0 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 150;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.top-bar .top-bar-content {
	display: grid;
    grid-template-columns: 90% 10%;
    align-items: center;
    padding: 1% 0 3%;
}

.top-bar .top-bar-content .top-bar-left {
    gap: 12px;
    justify-content: left;
    display: flex;
}

.top-bar .top-bar-content .top-bar-left a .top-s {
	color: #fff;
	margin-right: 5px;
	font-size: 18px;
}

.top-bar .top-bar-content .top-bar-left a {
	font-size: 16px;
	color: #ffffff;
}

.top-bar .top-bar-content .top-bar-left a span {
	padding: 0 0 0 0;
	transition: 0.4s;
}

.top-bar .top-bar-content .top-bar-left a span:hover {
	transition: 0.4s;
	transform: scale(1.05);
	color: #06630b;
}

.top-bar .top-bar-content .top-bar-right {
text-align: right;
    display: flex;
    justify-content: space-between;
}

.top-bar .top-bar-content .top-bar-right a {
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    padding: 1px 3px 0.5px;
	transition: 0.4s;
}
.top-bar .top-bar-content .top-bar-right a:hover{
    color: #00591d;
    transition: 0.4s;
    transform: scale(1.1);
    background-color: #fff;
}


/* top bar section end */

/*header*/
.header {
	z-index: 99;
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	z-index: 150;
	background-color: #fff;
}

.header-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5% 0;
}


.header .logo {
	width: 50%;
}

.header .logo img {
	/*padding: 3% 0;*/
	width: 40%;
	/*background-color: #fff;*/
}

.header .nav-menu {
	padding: 0 15px;
}

.header .menu>.menu-item {
	display: inline-block;
	position: relative;
}

.header .menu .menu-item a {
	padding: 1.5% 6%;
}

.header .menu .menu-item a:hover {
	color: #fff;
	background-color: #06630b;
}

.header .menu>.menu-item>a {
	display: block;
	padding: 12px 24px;
	font-size: 16px;
	color: #035c1f;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}

.header .menu>.menu-item>a .plus {
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left: 5px;
	pointer-events: none;
}

.header .menu>.menu-item>a .plus:before,
.header .menu>.menu-item>a .plus:after {
	content: '';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top: 50%;
	background-color: #06630b;
	height: 2px;
	width: 100%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.header .menu>.menu-item:hover>a .plus:before,
.header .menu>.menu-item:hover>a .plus:after {
	background-color: #fff;
}

.header .menu>.menu-item>a .plus:after {
	transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu .menu-item .sub-menu .menu-item a:hover {
	background-color: #06630b;
	color: #fff;
}

/* .header .menu>.menu-item>.sub-menu>.menu-item>a:hover,
.header .menu>.menu-item:hover>a {
		color: #06630b;
	background-color: #fff;
} */

.header .menu>.menu-item>.sub-menu {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
	width: 220px;
	position: absolute;
	left: 0;
	top: 130%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 5px solid #06630b;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.header .menu>.menu-item>.sub-menu>.menu-item {
	display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
	display: block;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}

.header .open-nav-menu {
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.header .open-nav-menu span {
	display: block;
	height: 3px;
	width: 24px;
	background-color: #06630b;
	position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #06630b;
	box-sizing: border-box;
}

.header .open-nav-menu span:before {
	top: -7px;
}

.header .open-nav-menu span:after {
	top: 7px;
}

.header .close-nav-menu {
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin: 0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}

.header .close-nav-menu img {
	width: 16px;
}

.header .menu-overlay {
	position: fixed;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.5);
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}



/*banner section*/
.banner-section {
	background: url('../assets/img/Banner-img2.jpg');
	background-position: center;
	background-size: cover;
	/* height: 100vh; */
	background-repeat: no-repeat;
	position: relative;
}

.banner-section .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	--background-overlay: '';
	background-image: linear-gradient(180deg, #1A202C 0%, #29621AC7 100%);
	z-index: 98;
	opacity: 0.8;
}

.banner-section .content {
	position: relative;
	z-index: 100;
	padding: 10% 0 0;
}

.banner-section .content .content-left {
	padding: 0 5% 0 0;
}

.banner-section .content .row {
	align-items: center;
}

.banner-section .content .banner-right-img img {
	width: 100%;
}

.banner-section .content .sub-head span {
	font-size: 16px;
	color: #eee;
	font-weight: 600;
}

.banner-section .content .sub-head span .fa-circle {
	color: #06630b;
}

.banner-section .content .heading h1 {
	font-size: 80px;
	color: #fff;
	font-weight: 600;
	margin: 20px 0 0;
}

.banner-section .content p {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}







/* Counter section start */
.counter-sec {
	background-color: #eaf1ef;
	/*background-image: url('../assets/img/asset-1.png');*/
	background-position: bottom;
	padding: 0 0 4% 0;
	background-size: cover;
	background-repeat: no-repeat;
}

.counter-sec .icons-container {
	padding: 8% 0 11%;
}

.counter-sec .icons-container .icons {
	border-radius: .5rem;
	text-align: center;
	/* padding: 2.5rem; */
}

.counter-sec .icons-container .icons p {
	font-size: 16px;
	font-weight: 600;
}

.counter-sec .icons-container .icons h3 {
	font-size: 4rem;
	color: #06630b;
	font-weight: 600;
	padding: .5rem 0;
}

.counter-sec .company-box .company-img img {
	width: 85%;
	padding: 5%;
	height: 100%;
	object-fit: cover;
	border-radius: .5rem;
	opacity: 0.6;
}

.counter-sec .company-box .company-img h6 span {
	background-color: #06630b;
	color: #fff;
	border-radius: 50%;
	padding: 3%;
	font-size: 16px;
}

.counter-sec .company-box .company-img h6 {
	font-size: 14px;
	padding: 3% 0;
}

.sec-gallery {
	padding: 5% 0 1%;
}

.sec-gallery .header-row h2 {
	font-size: 40px;
	font-weight: 700;
	color: #000;
	padding: 0 10% 2%;
}

.sec-gallery .header-row span {
	color: #06630b;
	font-size: 25px;
}

.sec-gallery .gallery-img {
	padding: 3%;
}

.sec-gallery .gallery-img img {
	width: 100%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
	border-radius: 10px;
}

.counter-sec .sub-heading h3 {
	text-align: center;
	font-size: 22px;
	color: #000;
	font-weight: 600;
	padding: 10% 0 5% 0;
}

.counter-sec .form-box-container {
	position: relative;
}

.counter-sec .form-box-container .form-box {
	position: absolute;
	top: -20%;
	right: 0;
	left: 15%;
	background-color: #1a202c;
	border-radius: 20px;
	padding: 5%;
	z-index: 100;
}

.counter-sec .form-box-container .form-box h3 {
	color: #fff;
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 20px;
}

.counter-sec .form-box-container .form-box h3 span {
	color: #eee;
	font-size: 20px;
	font-weight: 500;
}

.counter-sec .form-box-container .form-box .form-control {
	margin: 0 0 4% 0;
	padding: 2% 0 2% 3%;
}

.error {
	color: #ff250c;
	font-size: 14px;
	font-weight: 400;
	margin: -15px 0 5px 0;
	display: none;
}

/* Counter section End */


/* Service section start */
.service-sec {
	/* background-color: #f5f5f5; */
	padding: 5% 0;
}

.service-sec .header-row {
	text-align: center;
}

.service-sec .header-row h2 {
	font-size: 40px;
	font-weight: 700;
	color: #000;
	padding: 0 10% 2%;
}

.service-sec .header-row span {
	color: #06630b;
	font-size: 25px;
}

.service-sec .box img {
	width: 100%;
	border-radius: 20px 20px 0 0;
}

.service-sec .box {
	background-color: #eaf1ef;
	border-radius: 20px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	padding: 5%;
	margin: 5% 0;
}

.service-sec .box .content {
	padding: 6% 4% 0%;
	text-align: left;
}

.service-sec .box .content h4 {
	font-size: 20px;
	color: #000;
	font-weight: 600;
	margin-bottom: 10px;
}

.service-sec .box .content p {
	font-size: 16px;
	color: #666;
	margin-bottom: 15px;
}

.service-sec .box .content .common-btn {
	width: 100%;
	margin: 0;
	text-align: center;
}

.service-sec .box .content .common-btn:hover {
	background-color: transparent;
	border-color: #06630b;
	color: #06630b;
}



/* Why Pestco section start */
.why-pestco-sec {
	background: url('../assets/img/why-pestco-banner.jpg');
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	padding: 5% 0 0;
	background-repeat: no-repeat;
	position: relative;
}

.why-pestco-sec .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	--background-overlay: '';
	background-image: linear-gradient(180deg, #1A202C 0%, #29621AC7 100%);
	z-index: 98;
	opacity: 0.8;
}

.why-pestco-sec .content-row {
	position: relative;
	z-index: 100;
}

.why-pestco-sec .content-row .box {
	display: flex;
	gap: 20px;
}

.why-pestco-sec .content-row .box .why-i {
	background-color: #fff;
	color: #06630b;
	padding: 25%;
	width: 25px;
	height: 25px;
	border-radius: 50%;
}

.why-pestco-sec .content-row .box {
	padding: 3%;
}

.why-pestco-sec .content-row .box .content {
	padding: 1% 0 0 2%;
}

.why-pestco-sec .content-row .box .content .sub-heading {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.why-pestco-sec .content-row .box .content p {
	font-size: 16px;
	color: #fff;
	margin-bottom: 15px;
}

.why-pestco-sec .content-row .heading {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	text-align: left;
	padding: 1% 0 2%;
}

.why-pestco-sec .content-row .unwanted {
	position: relative;
}

.why-pestco-sec .content-row .goodby {
	position: absolute;
	background-color: #1a202c;
	bottom: 0;
	padding: 5%;
	border-radius: 20px 20px 0 0;
}

.why-pestco-sec .content-row .goodby h2 {
	font-size: 40px;
	color: #fff;
	font-weight: 600;
}

.why-pestco-sec .content-row .goodby h2 span {
	color: #06630b;
}










/* Who We Are Section start */
.who-we-sec {
	padding: 6.5% 0 0 0;
}

.who-we-sec .box-container {
	background-color: #eaf1ef;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding: 4%;
	margin: 0 0 25px 0;
}

.who-we-sec .box-container .row {
	align-items: center;
}

.who-we-sec .box-container .content .heading {
	font-size: 40px;
	font-weight: 700;
	color: #000;
	text-align: left;
	padding: 1% 0 2%;
}

.who-we-sec .box-container .content .sub-heading {
	color: #06630b;
	font-size: 25px;
}

.who-we-sec .box-container .img img {
	width: 100%;
	border-radius: 20px;
}

.who-we-sec .box-container .content .common-btn {
	margin: 1% 0 3%;
}

.who-we-sec .box-container .content .common-btn:hover {
	background-color: transparent;
	border-color: #06630b;
	color: #06630b;
}

.who-we-sec .box-container .content .flex-con {
	padding: 1.5% 0 0 0;
}

.who-we-sec .box-container .content .flex-con .flex-box {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 20px;
}

.who-we-sec .box-container .content .flex-con .flex-box .flex-i {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: #06630b;
	color: #fff;
	padding: 25%;
}

.who-we-sec .box-container .content .flex-con .flex-box .text-a h5 {
	font-size: 18px;
	color: #000;
	font-weight: 600;
}









/* Pest Control Section */
.pest-conrol {
	padding: 5% 0 5%;
	background-color: #1A202C;
}

.pest-conrol .header-row {
	text-align: center;
}

.pest-conrol .header-row h2 {
	font-size: 40px;
	font-weight: 600;
	color: #fff;
	text-align: left;
	margin-bottom: 20px;
}

.pest-conrol .header-row .btn-bx {
	text-align: right;
}

.pest-conrol .box {
	background-color: #eaf1ef;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding: 5%;
	margin: 5% 0;
}

.pest-conrol .box .img img {
	width: 100%;
	border-radius: 20px;
}

.pest-conrol .box .content {
	padding: 6% 4% 0%;
	text-align: left;
}

.pest-conrol .box .content h4 {
	font-size: 20px;
	color: #000;
	font-weight: 600;
	margin-bottom: 10px;
}

.pest-conrol .box .content p {
	height: 100px;
}

.pest-conrol .box .content .common-btn {
	width: 100%;
	margin: 0;
	text-align: center;
}

.pest-conrol .box .content .common-btn:hover {
	background-color: transparent;
	color: #06630b;
	border-color: #06630b;
}










/* Reviews section start */
.reviews-sec {
	padding: 5% 0;
	background-color: #f5f5f5;
}

.header-row h2 {
	font-size: 40px;
	font-weight: 600;
	color: #000;
	text-align: center;
	padding: 0 10% 2%;
}

.header-row h2 span {
	color: #06630b;
}

.reviews-sec .review-box {
	background-color: #eaf1ef;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding: 5%;
}

.reviews-sec .reviews-slider .slick-slide {
	margin: 0 10px;
	/* Adjust 10px to your desired gap */
}

.reviews-sec .reviews-slider .slick-list {
	padding: 2% 0 2% 0;
}

.reviews-sec .review-box .content {
	padding: 2% 4% 0%;
	text-align: left;
}

.reviews-sec .review-box .content h4 {
	font-size: 20px;
	color: #000;
	font-weight: 600;
	margin-bottom: 10px;
}

.reviews-sec .review-box .content p {
	font-size: 16px;
	color: #666;
	height: 140px;
	margin-bottom: 15px;
}

.reviews-sec .review-box .rating img {
	width: 25%;
	padding: 0 0 0 4%;
}

.reviews-sec .review-box .content .people {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.reviews-sec .review-box .content .people img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.reviews-sec .review-box .content .people h5 {
	font-size: 18px;
	color: #000;
	font-weight: 600;
}

.reviews-sec .review-box .content .people p {
	font-size: 14px;
	color: #666;
}















/* !!Page Banner Section CSS!! */
.page-banner {
	background: url(../assets/img/other-page-banner.jpg)no-repeat;
	background-position: center;
	background-size: cover;
}

.other-banner {
	position: relative;
}

.other-banner .banner-opacity {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	background-color: transparent;
	--background-overlay: '';
	background-image: linear-gradient(180deg, #1A202C 0%, #29621AC7 100%);
}

.other-banner .content {
	padding: 40% 0 20%;
	position: relative;
	z-index: 10;
}

.banner-pg-head {
	font-size: 50px;
	color: #fff;
}

.banner-pg-para {
	font-size: 16px;
	color: #eee;
}


.main-heading {
	font-size: 45px;
	font-weight: 900;
}

.check-ic {
	font-size: 18px;
	color: #035c1f;
	padding: 0 1% 0 0;
}

/* !!About Section Start!! */
.about-sec {
	padding: 5% 0;
}

.about-sec .img {
	position: relative;
}

.about-sec .img img {
	width: 85%;
	/* height: 100%; */
	border-radius: 15px;
}

.about-sec .experience-box {
	background-color: #035c1f;
	border-radius: 15px;
	position: absolute;
	right: 5%;
	bottom: -10%;
	padding: 2% 5%;
}

.about-sec .experience-box .main-heading {
	color: #fff;
	font-size: 60px;
	text-align: center;
}

.about-sec .experience-box p {
	color: #eee;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
}

.about-sec .content p {
	padding: 3% 0;
}

.about-sec .content ul {
	padding: 0 0 5% 0
}

.about-sec .content ul li {
	padding: 0 0 2% 0;
	transition: 0.4s;
	font-weight: 500;
	font-size: 16px;
}

.about-sec .content ul li:hover {
	padding: 0 0 2% 2%;
}

.about-sec .content .common-btn:hover {
	background-color: transparent;
	border-color: #035c1f;
	color: #035c1f;
}


/* Mission Vission Section Start */
.mission-vission {
	padding: 5% 0;
}


.mission-vission .box-container {
	position: relative;
	margin: 3% 0 0 0;
	transition: 0.4s;
}

.mission-vission .box-container .pest-free {
	background: url(../assets/img/pest-free.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	gap: 15px;
	border-radius: 15px;
	padding: 30% 1% 2.5% 5%;
	height: 350px;
	transition: 0.4s;
}

.mission-vission .box-container .pest-free .icon {
	position: relative;
	z-index: 2;
}

.mission-vission .box-container .pest-free .content {
	position: relative;
	z-index: 2;
}

.mission-vission .box-container .opacity-pest {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: transparent;
	--background-overlay: '';
	background-image: linear-gradient(180deg, transparent 0%, #1A202C 100%);
	z-index: 1;
	border-radius: 15px;
}

.mission-vission .pest-free .main-heading {
	font-size: 35px;
	font-weight: 800;
	color: #fff;
}

.mission-vission .pest-free p {
	color: #eee;
}

.mission-vission .container-box {
	position: relative;
	border-radius: 15px;
	margin: 4% 0 0 0;
	transition: 0.4s;
}

.mission-vission .container-box .opacity {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #1A202C;
	border-radius: 15px;
	z-index: 5;
	transition: 0.4s;
}

.mission-vission .container-box .mission-box {
	background: url(../assets/img/mission-banner.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 15px;
	padding: 30% 5% 2%;
	height: 350px;
	transition: 0.4s;
}

.mission-vission .container-box .mission-box .top-right {
	position: absolute;
	top: 8%;
	right: 4%;
	width: 8%;
	z-index: 100;
	font-size: 25px;
}

.mission-vission .container-box .mission-box h3 {
	position: relative;
	z-index: 8;
	font-size: 25px;
	color: #fff;
}

.mission-vission .container-box .mission-box p {
	color: #eee;
	position: relative;
	z-index: 8;
}


.mission-vission .container-box:hover>.opacity {
	transition: 0.4s;
	background-color: transparent;
	--background-overlay: '';
	background-image: linear-gradient(180deg, transparent 0%, #1A202C 100%);
}


/* Green Boxes Start */
.green-box {
	height: 350px;
	position: relative;
	margin: 5% 0 0 0;
	border-radius: 15px;
	transition: 0.4s;
}

.vission-banner {
	background: url(../assets/img/vission-banner.jpg) no-repeat;
	background-position: center;
	background-size: cover;
	transition: 0.4s;
}

.green-box .green-opacity {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #06630b;
	border-radius: 15px;
	z-index: 1;
}

.green-box .green-content {
	position: relative;
	z-index: 2;
	padding: 50% 5% 2%;
	height: 350px;
	border-radius: 15px;
}

.green-box .green-content h3 {
	color: #fff;
	font-size: 25px;
	font-weight: 700;
}

.green-box .green-content p {
	color: #eee;
	font-size: 16px;
}

.green-box .green-content .top-right {
	position: absolute;
	top: 8%;
	right: 8%;
	width: 10%;

}

.green-box:hover>.green-opacity {
	transition: 0.4s;
	background-color: transparent;
	--background-overlay: '';
	background-image: linear-gradient(180deg, transparent 0%, #1A202C 100%);
}


/* Clean Safe Banner Start */
.clean-banner {
	background: url(../assets/img/clean-safe.jpg) no-repeat;
	background-position: center;
	background-size: cover;
	transition: 0.4s;
}



.get-touch {
	background: url(../assets/img/get-touch.jpg)no-repeat;
	background-position: center;
	background-size: cover;
	height: 350px;
	margin: 5% 0 0 0;
	transition: 0.4s;
	position: relative;
	border-radius: 15px;
}


.get-touch img {
	width: 30%;
	position: absolute;
	top: 35%;
	right: 40%;
}

.get-touch .banner-tag {
	background-color: #f9db6d;
	padding: 20% 5% 2%;
	position: absolute;
	bottom: 0;
	left: 0;
	top: 60%;
	right: 60%;
	transition: 0.4s;
	border-radius: 0 15px 0 15px;
}

.get-touch .banner-tag .content {
	padding: 30% 5% 2%;
	opacity: 0;
	transition: 0.4s;
}

.get-touch .banner-tag .content .title {
	color: #000;
	font-size: 25px;
	font-weight: 700;
}

.get-touch .banner-tag .content:hover > .title {
	color: #035c1f;
	padding: 0 0 0% 0%;
	font-weight: 600;
	font-size: 25px;
}

.get-touch .banner-tag .content .title:hover {
font-size: 25px;
}

.get-touch .banner-tag .content .desc {
	color: #000;
}

.get-touch .banner-tag:hover>.content {
	opacity: 1;
	transition: 0.4s;
}

.get-touch .banner-tag:hover>img {
	top: 8%;
	right: 8%;
	width: 10%;
}

.get-touch .banner-tag:hover {
	top: 0;
	right: 0;
	border-radius: 15px;
	transition: 0.4s;
}


.pest-conrol .bottom-tag {
	background-color: #fff;
	color: #616161;
	padding: 1.5% 5%;
	border-radius: 15px;
	text-align: center;
}

.pest-conrol .bottom-tag a {
	color: #035c1f;
	padding: 0 0 0 2%;
	font-weight: 600;
}

.pest-conrol .bottom-tag a:hover {
	color: #f9db6d;
}



/* Meet section start */
.team-sec {
	padding: 5% 0;
}

.team-sec .main-heading {
	text-align: center;
}

.team-sec .img {
	border-radius: 15px;
}

.team-sec .box {
	position: relative;
	border-radius: 15px;
}

.team-sec .img img {
	width: 100%;
	border-radius: 15px;
}

.team-sec .img h4 {
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 15%;
	writing-mode: vertical-lr;
	color: #fff;
	background-color: transparent;
	--background-overlay: '';
	background-image: linear-gradient(180deg, #035c1f 0%, #1A202C 100%);
	padding: 0 0 0 3%;
	margin: 0;
	border-radius: 0 15px 15px 0;
}


/* Contact Us Section Start */
.form-sec {
	padding: 5% 0;
}

.form-sec .map-box {
	border-radius: 15px;
	margin: 1.5%;
	width: 100%;
	height: 680px;
}

.form-area {
	background-color: #eaf1ef;
	padding: 6% 3%;
	border-radius: 15px;
	margin: 1.5%;
}

.form-area p {
	padding: 2% 0 5%;
}

.form-area form .form-control {
	padding: 2.5% 0 2.5% 3%;
	margin: 0 0 3% 0;
	box-shadow: none;
	border-radius: 10px;
}

.form-area form .form-control::placeholder {
	color: #777;
	font-size: 14px;
	padding: 0 0 0 5%;
}

.form-area form .sub-btn {
	padding: 2% 5%;
	font-size: 18px;
	font-weight: 700;
	border-radius: 10px;
	width: 100%;
}



.call-to-sec {
	padding: 5% 0;
}

.call-to-sec .call-container {
	margin: 0 0 5%;
	padding: 3% 5%;
	background-color: #035c1f;
	border-radius: 15px;
	display: grid;
	grid-template-columns: 35% 32.67% 33.33%;
}

.call-container .call-bx {
	display: flex;
	gap: 10px;
}

.call-container .call-bx .foot-i {
	color: #fff;
	font-size: 30px;
	padding: 0 2% 0 0;
}

.call-container .call-bx h4 {
	color: #fff;
	font-size: 30px;
}

.call-container .call-bx p {
	color: #eee;
	font-size: 16px;
}

.call-container .call-bx a {
	color: #eee;
	font-size: 16px;
}

.pleft {
	padding: 0 0 0 20%;
}



/* Services page css */
.service-page {
	padding: 5% 0;
}

.service-page .row {
	padding: 0;
	background-color: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	border-radius: 15px;
	align-items: center;
	transition: 0.4s;
}
.service-page .row:hover{
    	transition: 0.4s;
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-page .row .col-md-6 {
	padding: 0;
}

.service-page .row .img img {
	width: 100%;
	border-radius: 15px 0 0 15px;
}

.service-page .row .content {
	padding: 5%;
}

.service-page .row .blok-title {
	font-size: 30px;
	color: #000;
	font-weight: 600;
	border-bottom: 2px solid #035c1f;
	margin: 0 0 2.5% 0;
	text-transform: capitalize;
}

.check-c {
	margin: 0 5px 0 0;
	font-size: 9px;
	color: #fff;
	background-color: #035c1f;
	border-radius: 50%;
	padding: 0.7% 0.5%;
}


/* Service Area Section Start */
.service-area {
	padding: 5% 0;
}

.area-container {
	padding: 5%;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.service-area .check-c {
	background-color: transparent;
	color: #035c1f;
	font-size: 18px;
	padding: 5px 5px 0 0;
}

.service-area ul li {
	line-height: 38px;
}

.service-area a {
	color: #000;
	font-size: 16px;
}

.service-area a:hover {
	color: #035c1f;
	font-weight: 700;
}







/* Accordion section start */

.accordion-sec {
    padding: 5% 0;
}

.accordion-sec .faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.accordion-sec .faq-label {
    color: #0d9488;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.accordion-sec .faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
}

.accordion-sec .accordion-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-sec .accordion-item {
    background: #e8f4f3;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-sec .accordion-item.active {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.accordion-sec .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.accordion-sec .accordion-header:hover {
    background: rgba(13, 148, 136, 0.05);
}

.accordion-sec .accordion-question {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    flex: 1;
}

.accordion-sec .accordion-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.accordion-sec .accordion-icon svg {
    width: 24px;
    height: 24px;
    stroke: #1a1a1a;
    stroke-width: 2.5;
}

.accordion-sec .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-sec .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-sec .accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-sec .accordion-content-inner {
    padding: 0 35px 28px 35px;
}

.accordion-sec .accordion-answer {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 768px) {
    .accordion-sec .faq-title {
        font-size: 32px;
    }

    .accordion-sec .accordion-header {
        padding: 20px 20px;
    }

    .accordion-sec .accordion-question {
        font-size: 17px;
    }

    .accordion-sec .accordion-content-inner {
        padding: 0 20px 20px 20px;
    }

    .accordion-sec .accordion-answer {
        font-size: 15px;
    }

    .accordion-sec .accordion-icon {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .accordion-sec .faq-title {
        font-size: 22px;
    }

    .accordion-sec .accordion-question {
        font-size: 14px;
    }
}








/* Footer Section Start */
.footer-sec {
	padding: 3% 2% 0 2%;
	background-color: #1a202c;
}

.footer-sec .footer-content {
	display: grid;
	grid-template-columns: 32% 18% 22% 25%;
	gap: 20px;
	padding: 2% 0 5%;
}

.footer-sec .footer-content .footer-text {
	color: #fff;
}

.footer-sec .footer-content .box h3 {
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 15px;
	padding: 0 0 10px 0;
	border-bottom: 1.5px solid #eee;
}

.footer-sec .footer-content .box ul li a {
	font-size: 16px;
	transition: 0.4s;
}

.footer-sec .footer-content .box ul li a:hover {
	transition: 0.4s;
	transform: scale(1.05);
	padding-left: 5px;
	color: #06630b;
}

.footer-sec .footer-content .footer-logo .img img {
	width: 70%;
	padding: 10px 10px 10px 0;
	margin: 0px 0 20px 0px;
	/*background-color: #fff;*/
}

.footer-sec .footer-content a {
	color: #fff;
	line-height: 35px;
}

.footer-sec .footer-content .footer-contact p {
	display: flex;
	line-height: 20px;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}

.footer-sec .footer-content .box p {
	color: #eeee;
}

.footer-sec .footer-content .box .bx {
	display: flex;
	gap: 10px;
	color: #fff;
	font-size: 16px;
}

.footer-sec .footer-content .box .bx .fa-clock {
	padding: 6px 0 0 0;
}

.footer-sec .footer-content .box .bx p {
	line-height: 35px;
}

.footer-sec .footer-content .box .footer-contact p .foot-i {
	font-size: 20px;
	color: #fff;
	margin-right: 15px;
	padding: 4px 0 0 0;
}

.footer-sec .footer-content .box .footer-contact p a {
	line-height: 25px;
	padding: 0 0 30px 0;
	transition: 0.4s;
}
.footer-sec .footer-content .box .footer-contact p a:hover{
    color: #035c1f;
    transition: 0.4s;
    	padding: 0 0 30px 5px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5% 0;
	border-top: 1px solid #eee;
}

.footer-bottom .social-media {
	text-align: right;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}

.footer-bottom .social-media a {
	font-size: 25px;
}

.footer-bottom p {
	color: #fff;
	font-size: 14px;
	margin: 0;
}

.footer-bottom a {
	color: #eee;
	font-size: 16px;
	margin: 0;
}

.footer-bottom a:hover {
	color: #06630b;
}