@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	color: #222;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	transition: .3s;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	max-width: 1240px;
}

/*==========================
Top Header
==========================*/

.top-header {
	background: var(--secondary);
	padding: 8px 0;
}

.top-left {
	display: flex;
	gap: 25px;
}

.top-left a,
.top-right a {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.top-left i {
	margin-right: 6px;
}

.top-right {
	display: flex;
	justify-content: flex-end;
	gap: 25px;
}

/*=========================================
Theme Colors
=========================================*/

:root {
	--primary: #003A25;
	--secondary: #7bbb43;
	--white: #ffffff;
	--text: #222222;
}

/*=========================================
Header
=========================================*/

.header-area {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: #fff;
	box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
}

.navbar {
	padding: 10px 0;
}

.navbar-brand img {
	height: 30px;
}

.navbar-nav .nav-item {
	margin: 0 14px;
}

.navbar-nav .nav-link {
	color: var(--text);
	font-size: 15px;
	font-weight: 600;
	padding: 0;
	transition: .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: var(--secondary);
}

.franchise-btn {

	display: inline-flex;
	align-items: center;
	justify-content: center;

	height: 35px;

	padding: 0 30px;

	border-radius: 30px;

	background: var(--primary);

	color: #fff;

	font-weight: 600;

	transition: .3s;

}

.franchise-btn:hover {

	background: var(--secondary);

	color: #fff;

}

.navbar-toggler {

	border: none;

	box-shadow: none !important;

}

.navbar-toggler i {

	color: var(--primary);

	font-size: 26px;

}

/*=========================================
Hero Slider
=========================================*/

.hero-slider {
	width: 100%;
}
.hero-slider {
    position: relative;
}

.slider-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.btn-franchise {
    background: #7bbb43;
    color: #fff;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.btn-franchise:hover {
    background: #003A25;
    color: #fff;
    transform: translateY(-2px);
}

.hero-slider .carousel-item img {
	width: 100%;
	height: 580px;
	object-fit: cover;
}

.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #7bbb43;
	opacity: .5;
	margin: 0 6px;
}

.carousel-indicators .active {
	opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .35);
	background-size: 45%;
}

/*=========================================
OUR SERVICES
=========================================*/

.services-section {
	padding: 55px 0 70px;
	background: #fff;
}

.section-title {
	margin-bottom: 45px;
}

.section-title h2 {

	font-size: 32px;
	font-weight: 600;
	color: #003A25;
	margin: 0;

}

.serviceSwiper {
	padding-bottom: 55px;
}

.service-card {

	position: relative;

	overflow: hidden;

	border-radius: 14px;

	background: #fff;

	box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

	transition: .35s;

}

.service-card:hover {

	transform: translateY(-8px);

}

.service-img {

	width: 100%;

	height: 185px;

	object-fit: cover;

	display: block;

}

.service-content {

	background: #fff;

	padding: 20px 18px 22px;

	text-align: center;

	position: relative;

	z-index: 2;

}

.service-icon {

	width: 56px;

	height: 56px;

	object-fit: contain;

	margin: -48px auto 14px;

	background: #fff;

	border-radius: 50%;

	padding: 8px;

	box-shadow: 0 5px 15px rgba(0, 0, 0, .10);

}

.service-content h4 {

	font-size: 24px;

	font-weight: 700;

	color: #003A25;

	margin-bottom: 12px;

}

.service-content p {

	font-size: 15px;

	color: #666;

	line-height: 24px;

	margin-bottom: 20px;

	min-height: 45px;

}

.service-content a {

	display: inline-block;

	color: #7bbb43;

	font-weight: 600;

	transition: .3s;

}

.service-content a:hover {

	color: #003A25;

}

/*=========================
Overlay
=========================*/

.service-overlay {

	position: absolute;

	inset: 0;

	background: #003A25;

	transform: translateY(100%);

	transition: .45s ease;

	z-index: 5;

}

.service-card:hover .service-overlay {

	transform: translateY(0);

}

.service-overlay>img {

	width: 100%;

	height: 100%;

	object-fit: cover;

	opacity: .18;

}

.overlay-content {

	position: absolute;

	left: 50%;

	top: 50%;

	transform: translate(-50%, -50%);

	width: 100%;

	padding: 30px;

	text-align: center;

	color: #fff;

}

.overlay-content img {

	width: 70px;

	height: 70px;

	margin: 0 auto 18px;

}

.overlay-content h4 {

	font-size: 24px;

	font-weight: 700;

	margin-bottom: 15px;

}

.overlay-content p {

	font-size: 15px;

	line-height: 24px;

	margin-bottom: 25px;

}

.overlay-content a {

	display: inline-block;

	padding: 12px 30px;

	background: #7bbb43;

	color: #fff;

	border-radius: 40px;

	font-weight: 600;

	transition: .3s;

}

.overlay-content a:hover {

	background: #fff;

	color: #003A25;

}

/*=========================
Swiper
=========================*/

.serviceSwiper .swiper-pagination {

	bottom: 0 !important;

}

.serviceSwiper .swiper-pagination-bullet {

	width: 12px;

	height: 12px;

	background: #d7d7d7;

	opacity: 1;

}

.serviceSwiper .swiper-pagination-bullet-active {

	background: #7bbb43;

}

.serviceSwiper .swiper-button-next,
.serviceSwiper .swiper-button-prev {

	width: 46px;

	height: 46px;

	border-radius: 50%;

	background: #fff;

	box-shadow: 0 5px 18px rgba(0, 0, 0, .15);

	color: #003A25;

}

.serviceSwiper .swiper-button-next::after,
.serviceSwiper .swiper-button-prev::after {

	font-size: 18px;

	font-weight: bold;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px) {

	.service-img {

		height: 220px;

	}

	.section-title h2 {

		font-size: 32px;

	}

}

@media(max-width:767px) {

	.services-section {

		padding: 60px 0;

	}

	.section-title {

		margin-bottom: 30px;

	}

	.section-title h2 {

		font-size: 28px;

	}

	.service-content {

		padding: 22px;

	}

	.service-content h4 {

		font-size: 20px;

	}

}

/*====================================
Brand Section
=====================================*/

.brand-section {

	padding: 70px 0;

	background: #7bbb43;

}

.brand-section .section-title {

	margin-bottom: 55px;

}

.brand-section .section-title h2 {

	font-size: 36px;

	font-weight: 700;

	color: #003A25;

	line-height: 52px;

}

.brand-icons {

	width: 100%;

}

.brand-box {

	background: #fff;

	border-radius: 18px;

	padding: 30px 20px;

	text-align: center;

	box-shadow: 0 8px 25px rgba(0, 0, 0, .06);

	transition: .35s;

	height: 100%;

}

.brand-box:hover {

	transform: translateY(-8px);

	box-shadow: 0 15px 35px rgba(0, 0, 0, .10);

}

.brand-box img {

	width: 90px;

	margin: auto;

}

@media(max-width:991px) {

	.brand-section {

		padding: 60px 0;

	}

	.brand-section .section-title h2 {

		font-size: 30px;

		line-height: 42px;

	}

	.brand-box {

		margin-bottom: 25px;

	}

}

@media(max-width:767px) {

	.brand-section .section-title h2 {

		font-size: 24px;

		line-height: 34px;

	}

	.brand-box {

		padding: 20px;

	}

	.brand-box img {

		width: 70px;

	}

}

/*=========================================
WHY UCLEAN
=========================================*/

.why-section {
	padding: 80px 0;
	background: #fff;
	overflow: hidden;
}

.why-section .section-title {
	margin-bottom: 70px;
}

.why-section .section-title h2 {
	font-size: 38px;
	font-weight: 600;
	color: #003A25;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.why-left,
.why-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	min-height: 620px;
}

.why-row {

	display: flex;

	align-items: center;

	margin-bottom: 28px;

}

.why-left .why-row {

	justify-content: flex-end;

}

.why-right .why-row {

	justify-content: flex-start;

}

.why-left span {

	width: 220px;

	text-align: right;

	font-size: 18px;

	font-weight: 500;

	color: #003A25;

	line-height: 28px;

	margin-right: 22px;

}

.why-right span {

	width: 220px;

	text-align: left;

	font-size: 18px;

	font-weight: 500;

	color: #003A25;

	line-height: 28px;

	margin-left: 22px;

}

.why-row img {

	width: 86px;

	height: 86px;

	object-fit: contain;

	transition: .35s;

}

.why-row:hover img {

	transform: scale(1.08);

}

.why-center {

	display: flex;

	justify-content: center;

	align-items: center;

	height: 100%;

}

.why-center img {

	width: 100%;

	max-width: 420px;

	animation: rotateDrum 12s linear infinite;

}

@keyframes rotateDrum {

	from {

		transform: rotate(0deg);

	}

	to {

		transform: rotate(360deg);

	}

}

/*=========================
Responsive
=========================*/

@media(max-width:991px) {

	.why-section {

		padding: 60px 0;

	}

	.why-center {

		margin: 40px 0;

	}

	.why-center img {

		max-width: 300px;

	}

	.why-left,
	.why-right {

		min-height: auto;

	}

	.why-row {

		justify-content: flex-start !important;

		margin-bottom: 18px;

	}

	.why-left span,
	.why-right span {

		width: auto;

		text-align: left;

		margin-left: 18px;

		margin-right: 0;

		font-size: 17px;

	}

}

@media(max-width:767px) {

	.why-section .section-title h2 {

		font-size: 28px;

	}

	.why-center {

		margin: 25px 0 35px;

	}

	.why-center img {

		max-width: 220px;

	}

	.why-row img {

		width: 64px;

		height: 64px;

	}

	.why-left span,
	.why-right span {

		font-size: 15px;

		line-height: 22px;

	}

}

/*=========================================
CUSTOMER SPEAK
=========================================*/

.customer-section {
	padding: 80px 0;
	background: #eef8e7;
	overflow: hidden;
}

.customer-section .section-title {
	margin-bottom: 60px;
}

.customer-section .section-title h2 {
	font-size: 38px;
	font-weight: 600;
	color: #003A25;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.customer-section .section-title p {
	font-size: 17px;
	line-height: 32px;
	color: #333;
	margin: 0;
}

.customerSwiper {
	padding-top: 55px;
	padding-bottom: 60px;
}

.customer-card {

	position: relative;

	background: #fff;

	border-radius: 14px;

	padding: 70px 35px 40px;

	text-align: center;

	min-height: 470px;

	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

	transition: .35s;

}

.customer-card:hover {

	transform: translateY(-8px);

}

.customer-image {

	position: absolute;

	left: 50%;

	top: -50px;

	transform: translateX(-50%);

}

.customer-image img {

	width: 96px;

	height: 96px;

	border-radius: 50%;

	border: 6px solid #7bbb43;

	object-fit: cover;

}

.customer-content p {

	font-size: 17px;

	line-height: 36px;

	color: #222;

	font-style: italic;

	margin-bottom: 25px;

}

.stars {

	margin-bottom: 18px;

}

.stars i {

	color: #f7b500;

	font-size: 18px;

	margin: 0 2px;

}

.customer-content h5 {

	font-size: 28px;

	color: #003A25;

	font-weight: 500;

	margin-bottom: 8px;

	font-family: Georgia, serif;

	text-transform: uppercase;

}

.customer-content span {

	font-size: 18px;

	color: #333;

}

.customerSwiper .swiper-pagination {

	bottom: 0 !important;

}

.customerSwiper .swiper-pagination-bullet {

	width: 12px;

	height: 12px;

	background: #cfcfcf;

	opacity: 1;

}

.customerSwiper .swiper-pagination-bullet-active {

	background: #7bbb43;

}

@media(max-width:991px) {

	.customer-card {

		min-height: 420px;

		padding: 70px 25px 35px;

	}

	.customer-content p {

		font-size: 15px;

		line-height: 30px;

	}

	.customer-content h5 {

		font-size: 24px;

	}

}

@media(max-width:767px) {

	.customer-section {

		padding: 60px 0;

	}

	.customer-section .section-title h2 {

		font-size: 30px;

	}

	.customer-section .section-title p {

		font-size: 15px;

		line-height: 28px;

	}

	.customer-card {

		min-height: auto;

	}

	.customer-content p {

		line-height: 28px;

	}

	.customer-content h5 {

		font-size: 22px;

	}

	.customer-content span {

		font-size: 15px;

	}

}

/*=========================================
FOOTER
=========================================*/

.footer-section {
	background: #003A25;
	padding: 70px 0 0;
	color: #fff;
}

.footer-logo img {
	height: 58px;
	margin-bottom: 25px;
}

.footer-logo p {
	color: #fff;
	font-size: 17px;
	line-height: 38px;
	opacity: .95;
}

.footer-title {
	margin-bottom: 30px;
}

.footer-title h4 {
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	position: relative;
	padding-bottom: 15px;
}

.footer-title h4:after {

	content: "";

	position: absolute;

	left: 0;

	bottom: 0;

	width: 70px;

	height: 4px;

	background: #7bbb43;

}

.footer-services {

	display: flex;

	gap: 60px;

}

.footer-services p {

	color: #fff;

	margin-bottom: 14px;

	font-size: 17px;

	line-height: 28px;

}

.footer-links {

	padding: 0;

	margin: 0;

	list-style: none;

}

.footer-links li {

	margin-bottom: 16px;

}

.footer-links a {

	color: #fff;

	font-size: 17px;

	transition: .3s;

}

.footer-links a:hover {

	color: #7bbb43;

	padding-left: 6px;

}

.footer-contact {

	list-style: none;

	padding: 0;

	margin: 0;

}

.footer-contact li {

	position: relative;

	padding-left: 32px;

	margin-bottom: 22px;

	color: #fff;

	font-size: 17px;

	line-height: 34px;

}

.footer-contact i {

	position: absolute;

	left: 0;

	top: 8px;

	color: #7bbb43;

	font-size: 18px;

}

.footer-bottom {

	margin-top: 60px;

	border-top: 1px solid rgba(255, 255, 255, .15);

	padding: 25px 0;

	font-size: 16px;

	color: #fff;

}

.footer-bottom a {

	color: #fff;

}

.footer-bottom a:hover {

	color: #7bbb43;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px) {

	.footer-section {

		padding: 55px 0 0;

	}

	.footer-logo,
	.footer-services,
	.footer-links,
	.footer-contact {

		margin-bottom: 35px;

	}

	.footer-services {

		gap: 30px;

	}

	.footer-bottom {

		text-align: center;

	}

	.footer-bottom .text-md-end {

		margin-top: 15px;

		text-align: center !important;

	}

}

@media(max-width:767px) {

	.footer-title h4 {

		font-size: 22px;

	}

	.footer-logo p,
	.footer-services p,
	.footer-links a,
	.footer-contact li {

		font-size: 15px;

		line-height: 28px;

	}

	.footer-services {

		flex-direction: column;

		gap: 0;

	}

	.footer-bottom {

		font-size: 14px;

	}

}
/*=========================================
ABOUT BANNER
=========================================*/

.about-banner{

    position:relative;

    width:100%;

    height:420px;

    overflow:hidden;

}

.about-banner img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.about-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.20);

    display:flex;

    align-items:center;

    justify-content:center;

}

.about-overlay h1{

    color:#fff;

    font-size:52px;

    font-weight:500;

    text-align:center;

    margin:0;

    text-shadow:0 3px 12px rgba(0,0,0,.30);

}

@media(max-width:991px){

.about-banner{

    height:320px;

}

.about-overlay h1{

    font-size:42px;

}

}

@media(max-width:767px){

.about-banner{

    height:240px;

}

.about-overlay h1{

    font-size:34px;

}

}
/*=========================================
ABOUT INTRO
=========================================*/

.about-intro{

    padding:80px 0;

    background:#fff;

}

.about-intro .section-title{

    margin-bottom:50px;

}

.about-intro .section-title h2{

    font-size:40px;

    font-weight:600;

    color:#003A25;

    text-transform:uppercase;

    margin-bottom:20px;

}

.about-intro .section-title p{

    max-width:980px;

    margin:auto;

    font-size:17px;

    line-height:34px;

    color:#555;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:6px;

}

.about-content{

    padding-left:25px;

}

.about-content p{

    font-size:17px;

    line-height:34px;

    color:#333;

    margin-bottom:24px;

}

.about-content strong{

    color:#7bbb43;

    font-weight:700;

}

@media(max-width:991px){

.about-intro{

    padding:60px 0;

}

.about-content{

    padding-left:0;

    margin-top:35px;

}

.about-intro .section-title h2{

    font-size:32px;

}

}

@media(max-width:767px){

.about-intro .section-title h2{

    font-size:28px;

}

.about-intro .section-title p{

    font-size:15px;

    line-height:28px;

}

.about-content p{

    font-size:15px;

    line-height:28px;

}

}
/*=========================================
OUR PROMISE
=========================================*/

.promise-section{

    padding:90px 0;

    background:#fff;

}

.promise-section .section-title{

    margin-bottom:55px;

}

.promise-section .section-title h2{

    font-size:40px;

    color:#003A25;

    font-weight:600;

    text-transform:uppercase;

}

.promise-box{

    text-align:center;

}

.promise-icon{

    width:110px;

    height:110px;

    margin:0 auto 30px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.promise-icon img{

    width:100%;

    transition:.35s;

}

.promise-box:hover .promise-icon img{

    transform:translateY(-8px);

}

.promise-box h4{

    font-size:24px;

    color:#003A25;

    font-weight:600;

    margin-bottom:18px;

    text-transform:uppercase;

}

.promise-box p{

    max-width:280px;

    margin:auto;

    font-size:16px;

    color:#444;

    line-height:30px;

}

@media(max-width:991px){

.promise-section{

    padding:70px 0;

}

.promise-box{

    margin-bottom:40px;

}

}

@media(max-width:767px){

.promise-section .section-title h2{

    font-size:30px;

}

.promise-icon{

    width:90px;

    height:90px;

}

.promise-box h4{

    font-size:21px;

}

.promise-box p{

    font-size:15px;

    line-height:28px;

}

}
/*=========================================
FRANCHISE FORM
=========================================*/

.franchise-form-section{

    padding:80px 0;

    background:#f7f6f2;

}

.franchise-form-box{

    background:#fff;

    padding:50px;

    border-radius:10px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.franchise-form-box label{

    display:block;

    font-size:16px;

    font-weight:700;

    color:#111;

    margin-bottom:12px;

    text-transform:uppercase;

}

.franchise-form-box label span{

    color:#d10000;

}

.franchise-form-box label small{

    color:#7bbb43;

    text-transform:none;

    font-size:14px;

    font-weight:600;

}

.franchise-form-box .form-control,
.franchise-form-box .form-select{

    height:62px;

    border:none;

    background:#f8f8f8;

    border-radius:6px;

    padding:0 22px;

    font-size:20px;

    color:#555;

    box-shadow:none;

    transition:.3s;

}

.franchise-form-box textarea.form-control{

    height:180px;

    resize:none;

    padding:18px 22px;

}

.franchise-form-box .form-control:focus,
.franchise-form-box .form-select:focus{

    background:#fff;

    border:2px solid #7bbb43;

    box-shadow:none;

}

.form-select{

    cursor:pointer;

}

.form-select option{

    font-size:18px;

}

.privacy-text{

    margin:0;

    display:flex;

    align-items:center;

    gap:14px;

    color:#777;

    font-size:17px;

    line-height:32px;

}

.privacy-text i{

    color:#7bbb43;

    font-size:38px;

}

.franchise-submit-btn{

    background:#003A25;

    color:#fff;

    border:none;

    padding:18px 40px;

    font-size:17px;

    font-weight:700;

    letter-spacing:.5px;

    border-radius:6px;

    transition:.35s;

    min-width:320px;

    text-transform:uppercase;

}

.franchise-submit-btn:hover{

    background:#7bbb43;

    color:#fff;

}

.franchise-form-box input::placeholder,
.franchise-form-box textarea::placeholder{

    color:#8c8c8c;

    font-size:18px;

}

/*=========================================
Responsive
=========================================*/

@media(max-width:991px){

.franchise-form-box{

    padding:35px;

}

.franchise-submit-btn{

    margin-top:30px;

    width:100%;

    min-width:100%;

}

.privacy-text{

    justify-content:center;

    text-align:center;

    margin-bottom:25px;

}

}

@media(max-width:767px){

.franchise-form-section{

    padding:60px 0;

}

.franchise-form-box{

    padding:25px;

}

.franchise-form-box label{

    font-size:14px;

}

.franchise-form-box .form-control,
.franchise-form-box .form-select{

    height:54px;

    font-size:16px;

}

.franchise-form-box textarea.form-control{

    height:150px;

}

.franchise-submit-btn{

    font-size:15px;

    padding:15px 20px;

}

.privacy-text{

    display:block;

    font-size:15px;

    line-height:28px;

}

.privacy-text i{

    display:block;

    margin-bottom:12px;

    font-size:32px;

}

}
/*=========================================
THANK YOU PAGE
=========================================*/

.thankyou-section{

    background:linear-gradient(135deg,#f4faf3,#ffffff);

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:80px 0;

    position:relative;

    overflow:hidden;

}

.thankyou-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#7bbb43;

    opacity:.05;

    border-radius:50%;

    top:-180px;

    left:-180px;

}

.thankyou-section::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:#003A25;

    opacity:.04;

    border-radius:50%;

    right:-180px;

    bottom:-180px;

}

.thankyou-card{

    position:relative;

    z-index:2;

    background:#fff;

    border-radius:20px;

    padding:60px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.success-icon{

    width:110px;

    height:110px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#7bbb43;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 15px 35px rgba(123,187,67,.35);

}

.success-icon i{

    color:#fff;

    font-size:52px;

}

.thankyou-card h1{

    color:#003A25;

    font-size:56px;

    font-weight:800;

    margin-bottom:15px;

}

.thankyou-card h3{

    color:#222;

    font-size:28px;

    font-weight:600;

    margin-bottom:25px;

}

.thankyou-text{

    font-size:18px;

    color:#666;

    line-height:32px;

    max-width:720px;

    margin:auto;

}

.response-box{

    margin:40px 0;

    background:#f8fff5;

    border:2px solid #d9efc8;

    border-radius:12px;

    padding:25px;

    display:flex;

    align-items:center;

    gap:20px;

    text-align:left;

}

.response-box i{

    font-size:45px;

    color:#7bbb43;

    min-width:55px;

}

.response-box strong{

    display:block;

    color:#003A25;

    font-size:22px;

    margin-bottom:8px;

}

.response-box p{

    margin:0;

    color:#666;

    font-size:16px;

}

.home-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:#003A25;

    color:#fff;

    padding:18px 45px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.home-btn:hover{

    background:#7bbb43;

    color:#fff;

    transform:translateY(-3px);

}

.feature-box{

    background:#fff;

    border-radius:15px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    width:80px;

    height:80px;

    background:#003A25;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;

    font-size:34px;

}

.feature-box h5{

    color:#003A25;

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;

}

.feature-box p{

    color:#666;

    font-size:15px;

    line-height:26px;

    margin:0;

}

@media(max-width:991px){

.thankyou-card{

    padding:40px 30px;

}

.thankyou-card h1{

    font-size:42px;

}

.thankyou-card h3{

    font-size:22px;

}

.response-box{

    flex-direction:column;

    text-align:center;

}

}

@media(max-width:767px){

.thankyou-section{

    padding:50px 15px;

}

.thankyou-card{

    padding:30px 20px;

}

.success-icon{

    width:85px;

    height:85px;

}

.success-icon i{

    font-size:38px;

}

.thankyou-card h1{

    font-size:34px;

}

.thankyou-card h3{

    font-size:20px;

}

.thankyou-text{

    font-size:16px;

    line-height:28px;

}

.home-btn{

    width:100%;

    padding:15px;

}

.feature-box{

    margin-bottom:20px;

}

}
.footer-contact-form{
    margin-top:25px;
}

.footer-contact-form .form-control{
    background:#fff;
    border:none;
    border-radius:8px;
    padding:12px 15px;
    font-size:14px;
    box-shadow:none;
}

.footer-contact-form .form-control:focus{
    border:2px solid #7bbb43;
    box-shadow:none;
}

.footer-contact-form textarea{
    resize:none;
}

.footer-btn{
    width:100%;
    background:#7bbb43;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:12px;
    font-weight:600;
    transition:.3s;
}

.footer-btn:hover{
    background:#5da82b;
}
/*==========================
Vision Section
==========================*/

.vision-section{
    padding:70px 0;
    background:#f6fbef;
}

.vision-box{
    display:flex;
    align-items:center;
    gap:30px;
    background:#fff;
    border-radius:18px;
    padding:30px;
    height:100%;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
    border-left:5px solid var(--secondary);
}

.vision-box:hover{
    transform:translateY(-6px);
}

.vision-icon{
    flex-shrink:0;
}

.vision-icon img{
    width:95px;
    height:95px;
    object-fit:contain;
}

.vision-content h3{
    font-size:30px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:12px;
}

.vision-content p{
    margin:0;
    font-size:18px;
    line-height:30px;
    color:#555;
}

@media(max-width:991px){

.vision-box{
    padding:25px;
}

.vision-content h3{
    font-size:26px;
}

}

@media(max-width:767px){

.vision-box{
    flex-direction:column;
    text-align:center;
    gap:20px;
}

.vision-content h3{
    font-size:24px;
}

.vision-content p{
    font-size:16px;
    line-height:28px;
}

}
/*==========================
Leadership
==========================*/

.leadership-section{
    padding:90px 0;
    background:#fff;
}

.leader-content .section-tag{
    display:inline-block;
    background:#eef7df;
    color:var(--secondary);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.leader-content h2{
    font-size:40px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:25px;
    line-height:1.3;
}

.leader-content p{
    font-size:16px;
    color:#555;
    line-height:30px;
    margin-bottom:18px;
}

.leader-image{
    text-align:center;
}

.leader-image img{
    width:100%;
    max-width:420px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.leader-image h4{
    margin-top:25px;
    font-size:28px;
    font-weight:700;
    color:var(--primary);
}

.leader-image span{
    color:#777;
    font-size:16px;
}

@media(max-width:991px){

.leader-content{
    text-align:center;
}

.leader-content h2{
    font-size:32px;
}

.leader-image{
    margin-bottom:20px;
}

}

@media(max-width:767px){

.leadership-section{
    padding:70px 0;
}

.leader-content h2{
    font-size:28px;
}

.leader-content p{
    font-size:15px;
    line-height:28px;
}

.leader-image img{
    max-width:320px;
}

}