
/* =================================== */
/*	Basic Style 
/* =================================== */
.item.active {
  background-position: center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .item.active {
    background-position: center center;
    background-size: cover;
  }
}
/* CSS Variables for consistent theming */
:root {
    --primary-color: #8dda7c;
    --primary-dark: #7bc86a;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --border-radius: 8px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    background-color: var(--bg-white);
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
	font-size: 16px;
    color: var(--text-medium);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ol, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

figure, p {
    margin: 0;
}

a {
    color: #fff;
	
    -webkit-transition: all .3s ease-in 0s;
       -moz-transition: all .3s ease-in 0s;
        -ms-transition: all .3s ease-in 0s;
         -o-transition: all .3s ease-in 0s;
            transition: all .3s ease-in 0s;
}

iframe {
    border: 0;
}

a, a:focus, a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus, a:hover {
    color: #8dda7c;
}

h1, h2, h3,
h4, h5, h6 {
	font-weight: normal;
	margin: 0;
}

.clear:before,
.clear:after {
    content: " ";
    display: table;
}
 
.clear:after {
   clear: both;
}
 
.clear {
   zoom: 1;
}

span.color {
	color: #8dda7c;
}

body > section,
.footer {
	padding: var(--spacing-xxl) 0;
}

@media (max-width: 768px) {
    body > section,
    .footer {
        padding: var(--spacing-xl) 0;
    }
}

.sec-title {}

.sec-title h2 {
  color: #8dda7c;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.sec-sub-title {
	margin: 35px 0 45px;
}

.sec-sub-title p {
	font-weight: 600;
	line-height: 24px;
	font-size: 18px;
	color: #5b646e;
}

.devider {
  margin-top: 30px;
}

.devider i {
  color: #cccccc;
}

.devider:before,
.devider:after {
  content: "______________________";
  color: #e6e8ea;
  position: relative;
  bottom: 6px;
}

.devider:before {
  right: 10px;
}

.devider:after {
  left: 10px;
}

.mb50 {
	margin-bottom: 50px;
}

#preloader {
  background-color: #8dda7c;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1100;
}

#preloader > img {
  left: 47%;
  position: absolute;
  top: 48%;
}


/*=========================================
	Header
==========================================*/

#navigation {
  background-color: rgba(16, 22, 54, 0.2);
  border: 0 none;
  margin: 0;
  
    -webkit-transition: background-color 800ms linear;
       -moz-transition: background-color 800ms linear;
	    -ms-transition: background-color 800ms linear;
         -o-transition: background-color 800ms linear;
			transition: background-color 800ms linear;
}

.navbar-toggle i {
	color: #fff;
}

.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center; 
  height: 60px; 
}

.navbar-brand img {
  height: 50px;
  width: auto;
  padding-left: 0;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
  }
}

.navbar-nav li a {
	border-top: 2px solid transparent;
	padding: 1rem 0.75rem;
	font-size: 0.95rem;
	font-weight: 500;
	transition: var(--transition);
	color: rgba(255, 255, 255, 0.9);
}

.navbar-nav li a.current,
.navbar-nav li a:focus,
.navbar-nav li a:hover {
	background-color: transparent;
	border-top: 2px solid var(--primary-color);
	color: #fff;
}




/*=========================================
	Slider
==========================================*/

#slider {
	padding: 0;
}

#slider .carousel-inner .item {
  background-size: cover;
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
}

.carousel-caption {
  position: relative;
  z-index: 2;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption h2 span {
  font-weight: 700;
  color: var(--primary-color);
}

.carousel-caption h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.5rem 0 1.5rem;
  line-height: 1.4;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .carousel-caption {
    padding: 1rem;
  }
  
  .carousel-caption h2 {
    font-size: 1.75rem;
  }
  
  .carousel-caption h3 {
    font-size: 1.125rem;
  }
}

.carousel-caption p:before,
.carousel-caption p:after {
color: #8dda7c;
content: "___";
position: relative;
top: -8px;
}

.carousel-caption p:before {
  right: 20px;
}

.carousel-caption p:after {
  left: 20px;
}

.social-links {
  margin-top: 2rem;
  padding: 0;
}

.social-links li {
	display: inline-block;
	margin: 0 0.5rem;
}

.social-links li a {
  color: #fff;
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-links li a:hover {
  color: #fff;
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(141, 218, 124, 0.4);
}

.carousel-indicators {
  bottom: 10px;
  left: inherit;
  margin: 0;
  right: 30px;
  top: 49%;
  width: 0;
}

.carousel-indicators li {
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 8px;
  width: 8px;
}

.carousel-indicators .active {
  height: 8px;
  width: 8px;
}



/*=========================================
	Features
==========================================*/

.features {
  background-color: #f4f7f9;
}

.hero-intro {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.owl-controls {
  bottom: -45px;
  margin-top: 10px;
  position: relative;
  text-align: center;
}

.owl-controls .owl-page {
  display: inline-block;
}

.owl-controls .owl-page span {
  border: 1px solid #C7CED3;
  border-radius: 20px;
  display: block;
  height: 8px;
  margin: 5px 4px;
  width: 8px;
}

.owl-controls .owl-page.active span {
  background: #062033;
  border: 0;
}

.service-icon {

  color: #8dda7c;
  float: left;
  position: relative;
  padding: 10px 13px;
}

.service-desc {
  margin-left: 70px;
  position: relative;
  top: 5px;
}

.service-desc h3 {
  color: #062033;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}




/*=========================================
	Our Works
==========================================*/

.work-filter {
  margin-bottom: 35px;
}

.work-filter ul li {
    display: inline-block;
}

ul {
  list-style-type: disc; /* Use disc for bullet points */
  padding-left: 20px; /* Add some padding to align the bullets */
}

.work-filter ul li a {
  color: #062033;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 17px;
  border-radius: 6px;
  text-transform: capitalize;
}

.work-filter ul li a:hover,
.work-filter ul li a.active {
  background-color: #8dda7c;
  border-radius: 6px;
  color: #fff;
  padding: 5px 17px;
}
.sec-sub-title ul {
  list-style-type: disc; /* Use disc for bullet points */
  list-style-position: inside; /* Position bullets inside the list item */
  padding-left: 0; /* Remove default padding */
}

.content-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 15px;
}

.service-desc ul.content-list {
  margin-top: 10px;
}

.mix {
    display: none;
}

.work-item {
    float: left;
    width: 25%;
    position: relative;
}

.work-item > img {
  display: block;
  height: auto;
  max-width: 100%;
}

.overlay {
	background-color: #8dda7c;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	
	opacity: 0;
	filter: alpha(opacity=0);
	
	-webkit-transition: all 450ms ease-out 0s;	
	   -moz-transition: all 450ms ease-out 0s;
		 -o-transition: all 450ms ease-out 0s;
		    transition: all 450ms ease-out 0s;
		  
	-webkit-transform: rotateY(180deg) scale(0.5,0.5);
	   -moz-transform: rotateY(180deg) scale(0.5,0.5);
		-ms-transform: rotateY(180deg) scale(0.5,0.5);
		 -o-transform: rotateY(180deg) scale(0.5,0.5);
			transform: rotateY(180deg) scale(0.5,0.5);
}

.work-item:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
	
	-webkit-transform: rotateY(0deg) scale(1,1);
	   -moz-transform: rotateY(0deg) scale(1,1);
		-ms-transform: rotateY(0deg) scale(1,1);
		 -o-transform: rotateY(0deg) scale(1,1);
		    transform: rotateY(0deg) scale(1,1);
}

.work-item .overlay a {
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin-top: 20%;
  padding: 7px 10px;
}

.work-item .overlay a:hover {
  color: #fff;
}

.work-item .overlay h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin: 25px 0 8px;
}

.work-item .overlay p {
  font-size: 14px;
  line-height: 24px;
}



/*=========================================
	Our Team Member
==========================================*/

.member-thumb {
  width: 273px;
  position: relative;
}

.member-thumb img {
  display: block;
  max-width: 100%;
}

.member-thumb .overlay h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 10px 0;
}

.member-thumb .overlay {
	font-size: 16px;
	padding: 20px;
	line-height: 24px;
}

.team-member h4 {
  color: #062033;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 15px 0 8px;
}

.member-thumb:hover .overlay {
	cursor: pointer;
	opacity: 1;
	filter: alpha(opacity=100);
	
	-webkit-transform: rotateY(0deg) scale(1,1);
	   -moz-transform: rotateY(0deg) scale(1,1);
		-ms-transform: rotateY(0deg) scale(1,1);
		 -o-transform: rotateY(0deg) scale(1,1);
		    transform: rotateY(0deg) scale(1,1);
}

.team-member:hover h4 {
  color: #8dda7c;
}

.team-member .social-links {
  margin-top: 24%;
}

.team-member .social-links li a {
  background-color: #0d7c67;
  color: #fff;
  height: 42px;
  padding: 10px 0 0;
  width: 42px;
}


/*=========================================
	Some fun facts
==========================================*/

#facts {
	background-image: url("../img/parallax/city.jpg");
	background-color: rgba(6,32,51,.8);
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0;
}

.facts .devider:before,
.facts .devider:after {
	color: #737C85;
}

.facts .devider i {
	color: #fff;
}

.parallax-overlay {
	background-color: rgba(6,32,51,.8);
	padding: 70px 0;
}

.counters-item {
  color: #fff;
}

.counters-item i {
  border: 1px solid #737C85;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  height: 120px;
  margin: 0 0 35px;
  padding: 40px 0 0;
  width: 120px;
}

.counters-item strong {
  display: block;
  font-size: 60px;
  font-weight: 600;
  line-height: 60px;
}

.counters-item p {
  font-size: 18px;
  line-height: 24px;
  margin-top: 15px;
  text-transform: uppercase;
}


/*=========================================
	Contact Us
==========================================*/

.contact {
	padding-bottom: 0;
}

.contact-address h3 {
  color: #062033;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 25px;
}

.contact-address p {
  line-height: 24px;
}

.contact-form {}

.contact-form h3 {
  color: #062033;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 25px;
}

.contact-form .input-group {
  width: 100%;
}

.contact-form .form-control {
  border-color: -moz-use-text-color -moz-use-text-color #cccccc;
  border-radius: 0;
  border-style: none none solid;
  border-width: 0 0 1px;
  box-shadow: none;
  margin-bottom: 10px;
}

.contact-form .input-field {
  width: 48%;
  float: left;
  margin-right: 4%;
}

.contact-form .input-field:last-child {
  margin-right: 0;
}

.contact-form .form-control.error {
border-bottom-color: #c0392b;
}

label.error {
  color: #c0392b;
  font-weight: normal;
  text-transform: capitalize;
}

.contact-form #form-submit {
  background: url("../img/envelop.png") no-repeat scroll 0 15px transparent;
  border: 0 none;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  padding: 10px;
  text-align: right;
  width: 150px;
}

.footer-social {
  margin-top: 17px;
}

.footer-social li a {
  color: #cdd2d6;
  display: block;
  margin-bottom: 10px;
}

#map_canvas {
  height: 215px;
  width: 100%;
}



/*=========================================
	Contact Us
==========================================*/


.footer {
  background-color: #8dda7c; 
  border-top: 5px solid #8dda7c;
  color: #fff;
}

.footer a:hover {
  color: #fff;
}

.footer h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 30px;
}

.about-us p {
  line-height: 24px;
}

.footer-single .subscribe {
  margin-bottom: 15px;
  position: relative;
}

.subscribe #subscribe {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  height: 40px;
  text-indent: 10px;
  width: 100%;
}

.subscribe #subs {
  background-color: transparent;
  border: 0 none;
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 6px;
}

.footer-single {
  line-height: 24px;
}

.footer-single ul {
  }

.footer-single li {
  line-height: 32px;
}

.footer-single p i {
  margin: 0 10px;
}

.credit a {
  color: #062033;
}

.credit a:hover {
  color: #fff;
}

.copyright {
  color: #fff;
  margin-top: 100px;
}

#back-top {
  bottom: 20px;
  position: fixed;
  right: 25px;
  z-index: 9;
}

/*=========================================
	Modern Sections - Hero Intro
==========================================*/

.hero-intro {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: var(--spacing-xxl) 0;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
  max-width: 800px;
}

@media (max-width: 768px) {
  .intro-title {
    font-size: 2rem;
  }
  .intro-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .intro-title {
    font-size: 1.75rem;
  }
  .intro-text {
    font-size: 1.125rem;
  }
}

/*=========================================
	Features Section
==========================================*/

.features-section {
  background-color: var(--bg-white);
  padding: var(--spacing-xxl) 0;
}

.section-header {
  margin-bottom: var(--spacing-xxl);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.875rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}

.features-grid {
  margin-top: var(--spacing-xl);
}

.feature-card {
  background: var(--bg-white);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(141, 218, 124, 0.2);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(141, 218, 124, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(141, 218, 124, 0.4);
}

.feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
  .feature-card {
    padding: var(--spacing-lg);
  }
}

/*=========================================
	Benefits Section
==========================================*/

.benefits-section {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: var(--spacing-xxl) 0;
}

.benefits-grid {
  margin-top: var(--spacing-xl);
}

.benefit-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(141, 218, 124, 0.2);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.25rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(141, 218, 124, 0.3);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(141, 218, 124, 0.4);
}

.benefit-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin: 0;
}

@media (max-width: 768px) {
  .benefit-card {
    padding: var(--spacing-lg);
  }
}
