:root {
	--green: #1f7a3b;
	--green-dark: #133f22;
	--green-soft: #eaf6df;
	--sun: #f4b82e;
	--gold: #c98918;
	--earth: #4b2e14;
	--cream: #f7f3df;
	--dark: #211b0d;
	--white: #fff;
	--shadow: 0 18px 45px rgba(33, 27, 13, .12)
}

* {
	box-sizing: border-box
}

body {
	font-family: 'Open Sans', sans-serif;
	color: #4b4b4b;
	background: #fff;
	line-height: 1.7;
	padding-top: 120px;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand {
	font-family: 'Montserrat', sans-serif;
	color: var(--dark);
	font-weight: 800
}

a {
	text-decoration: none
}

.top-strip {
	background: linear-gradient(90deg, var(--green-dark), var(--green));
	color: #fff;
	font-size: 14px;
	padding: 8px 0
}

.top-strip i {
	color: var(--sun)
}

.custom-navbar {
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	color: var(--green-dark) !important
}

.navbar-brand img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--sun)
}

.navbar-brand strong {
	color: var(--green)
}

.nav-link {
	font-weight: 700;
	color: var(--dark) !important;
	margin: 0 4px;
	position: relative
}

.nav-link:after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 2px;
	height: 3px;
	background: var(--sun);
	border-radius: 20px;
	transform: scaleX(0);
	transition: .3s
}

.nav-link:hover:after,
.nav-link.active:after {
	transform: scaleX(1)
}

.btn-brand {
	background: linear-gradient(135deg, var(--green), #2ea654);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 11px 24px;
	font-weight: 800;
	box-shadow: 0 10px 24px rgba(31, 122, 59, .25);
	transition: .3s
}

.btn-brand:hover {
	background: linear-gradient(135deg, var(--sun), var(--gold));
	color: var(--dark);
	transform: translateY(-2px)
}

.hero-slider,
.hero-slide {
	height: calc(100vh - 96px);
	min-height: 640px
}

.hero-slide {
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(19, 63, 34, .82), rgba(31, 122, 59, .45), rgba(0, 0, 0, .18))
}

.hero-content {
	position: relative;
	z-index: 2;
	color: #fff;
	max-width: 850px
}

.eyebrow,
.section-kicker {
	display: inline-block;
	background: rgba(244, 184, 46, .16);
	color: var(--sun);
	border: 1px solid rgba(244, 184, 46, .35);
	padding: 7px 16px;
	border-radius: 999px;
	font-weight: 800;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: .8px;
	font-size: 13px
}

.hero-content h1 {
	font-size: clamp(40px, 6vw, 76px);
	color: #fff;
	line-height: 1.05;
	margin-bottom: 18px
}

.hero-content p {
	font-size: 20px;
	max-width: 700px;
	margin-bottom: 28px
}

.swiper-button-next,
.swiper-button-prev {
	color: #fff
}

.swiper-pagination-bullet-active {
	background: var(--sun)
}

.section {
	padding: 95px 0
}

.section-title {
	max-width: 780px;
	margin: 0 auto 54px
}

.section-title h2,
.about-preview h2 {
	font-size: clamp(30px, 4vw, 48px)
}

.feature-card,
.mini-card,
.value-card,
.tech-card,
.service-detail {
	background: #fff;
	border-radius: 28px;
	padding: 34px 28px;
	box-shadow: var(--shadow);
	height: 100%;
	border: 1px solid rgba(31, 122, 59, .08);
	transition: .3s
}

.feature-card:hover,
.mini-card:hover,
.tech-card:hover,
.service-detail:hover {
	transform: translateY(-9px)
}

.feature-card i,
.mini-card i,
.value-card i,
.tech-card i,
.service-detail i {
	font-size: 42px;
	color: var(--green);
	background: var(--green-soft);
	width: 78px;
	height: 78px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 22px;
	margin-bottom: 20px
}

.rounded-img {
	width: 100%;
	border-radius: 30px;
	box-shadow: var(--shadow);
	object-fit: cover;
	max-height: 520px
}

.styled-list {
	padding: 0;
	list-style: none;
	margin: 24px 0
}

.styled-list li {
	margin-bottom: 12px
}

.styled-list li:before {
	content: "\F26A";
	font-family: "bootstrap-icons";
	color: var(--green);
	margin-right: 10px
}

.tech-highlight,
.light-bg {
	background: linear-gradient(180deg, var(--cream), #fff)
}

.service-card {
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: var(--shadow);
	height: 100%;
	transition: .3s
}

.service-card:hover {
	transform: translateY(-8px)
}

.service-card img {
	height: 230px;
	width: 100%;
	object-fit: cover
}

.service-card div {
	padding: 26px
}

.testimonials {
	background: var(--green-dark);
	color: #fff
}

.testimonials h2,
.testimonials h5 {
	color: #fff
}

.quote-card {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 30px;
	padding: 36px
}

.quote-card i {
	font-size: 54px;
	color: var(--sun)
}

.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--green), var(--green-dark));
	color: #fff;
	position: relative;
	overflow: hidden
}

.cta-section:before {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	border: 40px solid rgba(244, 184, 46, .2);
	border-radius: 50%;
	right: -80px;
	top: -120px
}

.cta-section h2 {
	color: #fff;
	font-size: clamp(30px, 4vw, 48px)
}

.footer {
	background: #072812;
	color: #ddd;
	padding: 70px 0 22px
}

.footer a {
	display: block;
	color: #ddd;
	margin-bottom: 8px
}

.footer a:hover {
	color: var(--sun)
}

.footer h5,
.footer h4 {
	color: #fff
}

.footer-brand {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-bottom: 14px
}

.footer-brand img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--sun)
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .13);
	margin-top: 35px;
	padding-top: 22px
}

.page-hero {
	min-height: 390px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	position: relative;
	color: #fff
}

.page-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(19, 63, 34, .88), rgba(75, 46, 20, .45))
}

.page-hero .container {
	position: relative
}

.page-hero h1 {
	color: #fff;
	font-size: clamp(38px, 5vw, 64px)
}

.page-hero p {
	font-size: 20px;
	max-width: 720px
}

.value-card,
.tech-card,
.service-detail {
	text-align: left
}

.check-row {
	background: #fff;
	border-radius: 18px;
	padding: 20px 24px;
	box-shadow: var(--shadow);
	font-weight: 700
}

.check-row i {
	color: var(--green);
	margin-right: 10px
}

.gradient-panel {
	background: linear-gradient(135deg, var(--green), var(--green-dark));
	color: #fff
}

.gradient-panel h2 {
	color: #fff
}

.contact-info {
	display: grid;
	gap: 18px;
	margin-top: 28px
}

.contact-info div {
	display: flex;
	gap: 14px;
	align-items: center;
	background: var(--green-soft);
	padding: 16px;
	border-radius: 18px;
	font-weight: 700
}

.contact-info i {
	color: var(--green);
	font-size: 24px
}

.contact-form {
	background: #fff;
	border-radius: 30px;
	box-shadow: var(--shadow);
	padding: 34px
}

.contact-form label {
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 8px
}

.form-control,
.form-select {
	border-radius: 14px;
	padding: 13px;
	border: 1px solid #d8decf
}

.form-control:focus,
.form-select:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 .2rem rgba(31, 122, 59, .15)
}

@media(max-width:991px) {

	.hero-slider,
	.hero-slide {
		height: auto;
		min-height: 620px
	}

	.navbar-brand span {
		font-size: 18px
	}

	.section {
		padding: 70px 0
	}
}

@media(max-width:575px) {
	.top-strip {
		font-size: 12px
	}

	.hero-slide {
		min-height: 560px
	}

	.hero-content p {
		font-size: 17px
	}

	.btn-lg {
		padding: 10px 18px;
		font-size: 16px
	}

	.section {
		padding: 55px 0
	}

	.feature-card,
	.mini-card,
	.value-card,
	.tech-card,
	.service-detail,
	.contact-form {
		padding: 24px
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none
	}

	.navbar-brand img {
		width: 48px;
		height: 48px
	}
}

@media (max-width: 576px) {

	.hero,
	.hero-slide,
	.swiper,
	.swiper-wrapper,
	.swiper-slide {
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}

	.hero-content {
		padding-left: 15px;
		padding-right: 15px;
	}

	.container {
		width: 100%;
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
}

.contact-form .error {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

.success-msg {
    background: #e8f7e8;
    color: #1f7a1f;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #b7e2b7;
    font-weight: 500;
}

.error-msg {
    background: #ffeaea;
    color: #c62828;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #f5b5b5;
    font-weight: 500;
}

@media (max-width: 576px) {
   .top-tagline {
      display: none;
   }
}


.custom-navbar{
   transition: all 0.3s ease;
}

.navbar-scrolled{
   background: #ffffff !important;
   box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.social-links{
   display:flex;
   align-items:center;
   gap:15px;
   margin-top:15px;
}

.social-links a{
   display:flex;
   align-items:center;
   justify-content:center;
   width:42px;
   height:42px;
   border-radius:50%;
   background:#1f3f1f;
   color:#fff;
   font-size:18px;
   text-decoration:none;
   transition:0.3s;
}

.social-links a:hover{
   background:#d4a437;
   color:#fff;
   transform:translateY(-3px);
}

.custom-navbar {
   background: #ffffff;
   z-index: 9999;
   transition: all 0.3s ease;
   box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.custom-navbar.scrolled{
   box-shadow: 0 6px 25px rgba(0,0,0,.15);
}

.top-strip {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 9999;
   background: #0f5c2f;
}

.custom-navbar {
   top: 38px;
}


.rounded-img:hover{
   transform:translateY(-5px);
   box-shadow:0 10px 30px rgba(0,0,0,.15);
}

@media (max-width: 576px) {
   body {
      padding-top: 120px;
   }

   .custom-navbar {
      top: 36px;
   }
}


.whatsapp-float{
   position: fixed;
   bottom: 20px;
   right: 20px;
   width: 58px;
   height: 58px;
   background: #25D366;
   color: #fff !important;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   z-index: 99999;
   box-shadow: 0 4px 15px rgba(0,0,0,.25);
}

.whatsapp-float i{
   font-size: 30px;
   line-height: 1;
   display: flex;
}

.whatsapp-float:hover{
   color: #fff;
   transform: scale(1.08);
}

@media (max-width: 576px){

   .whatsapp-float{
      width: 52px;
      height: 52px;
      bottom: 15px;
      right: 15px;
   }

   .whatsapp-float i{
      font-size: 26px;
   }

}