:root {
	--primary-green: #1b4d1b;
	--dark-green: #16a34a;
	--light-green: #dcfce7;
}

html {
	scroll-behavior: smooth;
}

body {
	/*padding-top: 62px;*/
	padding-top: 60px;
}

/* Hero Section */
.hero-section {
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../img/landscaping-hero.jpg') center/cover no-repeat;
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
	z-index: 2;
}

.hero-section .container {
	position: relative;
	z-index: 3;
}


.text-primary {
    color: var(--primary-green) !important;
}
.btn-success {
	background-color: var(--primary-green);
	border-color: var(--primary-green);
	transition: all 0.3s ease;
}

.btn-success:hover {
	background-color: var(--dark-green);
	border-color: var(--dark-green);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-outline-light:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}


.card {
	transition: all 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}


.navbar {
	backdrop-filter: blur(10px);
	background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
	font-size: 1.5rem;
}

.nav-link {
	font-weight: 500 !important;
	transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
	color: var(--primary-green) !important;
}


.text-success {
	color: var(--primary-green) !important;
}

.bg-success {
	background-color: var(--primary-green) !important;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--primary-green);
	box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
}

/* Responsive style */
@media (max-width: 768px) {
	.hero-section {
		height: 70vh;
		min-height: 500px;
	}

	.display-4 {
		font-size: 2rem;
	}

	.display-5 {
		font-size: 1.75rem;
	}
}


.fade-in {
	animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.contact-info-card {
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	transform: translateY(-3px);
}

footer a:hover {
	color:var(--dark-green); !important;
	transition: color 0.3s ease;
}

.shadow-soft {
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.shadow-elevated {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mb-3, .my-3 {
    color: white;
}
ul#menu-main-menu li {
    padding: 10px;
}
a{
	text-decoration:none;
	
}
ul#menu-main-menu li > a:hover {
    color: #1B4D1B;
}
button.btn.btn-success.btn-lg {
    line-height: 0px;
    padding: 15px;
}
ul#menu-main-menu li a {
    color: #000000a6;
}

/* service */
.section_services {
      padding: 40px 0px;
    }
    .row_new{
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 40px;
      gap: 40px;
    }
    .row_new img {
      width: 100%;
      max-width: 500px;
      border-radius: 6px;
    }
    .text_info {
      flex: 1;
      min-width: 280px;
    }
   .text_info h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1b4d1b;
}
    .text_info p {
    margin-bottom: 15px;
    line-height: 30px;
    font-weight: 500;
}
    ul {
      margin: 15px 0;
      padding-left: 20px;
    }
    ul li {
      margin-bottom: 8px;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .row_new {
        flex-direction: column;
        text-align: center;
      }
      text_info {
        text-align: left;
      }
    }

/* about us */
.timeline {
    position: relative;
    padding-left: 40px;
}
    .timeline::before {
      content: "";
      position: absolute;
      left: 0%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: #1b4d1b;
      transform: translateX(-50%);
    }

    .timeline-item {
      display: flex;
      justify-content: flex-start;
      margin-bottom: 30px;
      position: relative;
      width: 100%;
    }

    .timeline-item:nth-child(even) {
      justify-content: flex-start;
    }

    .timeline-content {
      background: #fff;
      padding: 20px 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      width: 100%;
      position: relative;
    }

    .timeline-content::before {
      content: "";
      position: absolute;
      top: 50px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #1b4d1b;
      border: 3px solid #fff;
      box-shadow: 0 0 0 4px #1b4d1b4d;
    }

    .timeline-item:nth-child(odd) .timeline-content::before {
      /*right: -40px;*/
	  left: -49px;
    }

    .timeline-item:nth-child(even) .timeline-content::before {
      left: -49px;
    }

    .timeline-content h3 {
      margin: 0;
      font-size: 1.4rem;
      color: #1b4d1b;
    }

.timeline-content h2 {
	text-transform: capitalize;

}
    .timeline-content span {
      display: block;
      font-weight: bold;
      font-size: 1rem;
      margin-bottom: 8px;
      color: #555;
    }

    .timeline-content p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.6;
      color: #666;
    }

    @media (max-width: 768px) {
      .timeline::before {
        left: 20px;
      }
      .timeline-item,
      .timeline-item:nth-child(even) {
        justify-content: flex-start;
      }
      .timeline-content {
        width: 100%;
        margin-left: 00px;
      }
      .timeline-item .timeline-content::before {
        left: -38px;
        right: auto;
      }
    }
	
	 .mission-section {
      background: url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
      padding: 80px 20px;
      text-align: center;
      color: #fff;
      position: relative;
    }

    .mission-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 60, 30, 0.7); /* green overlay */
    }

    .mission-content {
      position: relative;
      max-width: 800px;
      margin: auto;
      z-index: 1;
    }

    .mission-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #fff;
    }

    .mission-content p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #fff;
    }
 /* Team Section */
    .team {
      margin-bottom: 40px;
    }
	.team  h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1b4d1b;
    text-align: center;
}
    .team-members {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .team-card {
      background: #fff;
      border-radius: 12px;
      text-align: center;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
	border-bottom:4px solid #1b4d1b;
    }

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

    .team-card img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid #1b4d1b;
    }

    .team-card h3 {
      margin-bottom: 5px;
      font-size: 1.2rem;
      color: #1b4d1b;
    }
	.team p{
		 text-align:center;
		font-size: 20px;
		font-weight: 500;
	}
    .team-card p {
      font-size: 0.95rem;
      color: #555;
    }
	.team a i.fa-twitter {
  font-size: 22px;
  color: #1b4d1b;
  padding:5px;
 border: 1px solid #1b4d1b;
  transition: color 0.3s ease;
}
.team a i.fa-twitter:hover {
  color: #16a34a;
}
.team a i.fa-linkedin {
    font-size: 23px;
    padding: 5px 6px;
    color: #1b4d1b;
    transition: color 0.3s ease;
    border: 1px solid #1b4d1b;
}

.team a i.fa-linkedin:hover {
  color: #16a34a;
}
	 

    /* responsive */
    @media (max-width:900px){
      .hero{grid-template-columns:1fr}
      .hero-card{order:2}
      .hero .visual{order:1}
      .values{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:520px){
      h1{font-size:26px}
      .timeline .item{flex-direction:column}
      .time{min-width:auto}
      .values{grid-template-columns:repeat(2,1fr)}
      .mission{flex-direction:column}
    }
ul#menu-main-menu {
    margin-top: 0;
    padding: 0;
}
ul#menu-main-menu li {
    padding: 10px;
    margin-bottom: 0;
}
section.team {
    margin: 80px 0px;
}
.lead {
    font-weight: 400!important;
}
#menu-main-menu li.current_page_item a {
    color: #16a34a !important;
}
ul#menu-footer-menu {
    padding: 0;
    margin: 0;
}
footer .list-unstyled {
    margin: 0;
}
/*contact css*/
.hero-contact {
    background: url('https://gaineslandscaping.com/wp-content/uploads/2025/09/jhghj.jpg') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: rgb(0 0 0 / 44%);
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.needs-validation {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 11px #eee;
}

.projects-hero {
    background: url('https://gaineslandscaping.com/wp-content/uploads/2025/09/photo-1598281031430-22681c3c474b.avif') center/cover no-repeat;
    /* padding: 80px 20px; */
    text-align: center;
    color: #fff;
    background-color: rgb(0 0 0 / 44%);
    background-blend-mode: overlay;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.services-hero {
    background: url('https://gaineslandscaping.com/wp-content/uploads/2025/09/photo-1689094195667-3dae89dd11fa.avif') center/cover no-repeat;
    /* padding: 80px 20px; */
    text-align: center;
    color: #fff;
    background-color: rgb(0 0 0 / 44%);
    background-blend-mode: overlay;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Wrapper layout */
.blog-wrapper {
    display: flex;
    gap: 30px;
    margin: 100px auto;
     max-width: 1140px;
    width: 100%;
	align-items: flex-start;
}

/* Main content */
/*.blog-main {
    flex: 0 0 70%;
}*/

/* Sidebar */
.blog-sidebar {
    flex: 0 0 30%;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
  /*  margin-top: 20px; */
}

.sidebar-heading {
    background: #f0f0f0;
    padding: 10px 15px;
    margin: -20px -20px 15px -20px;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    font-weight: bold;
}

.recent-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}
.recent-posts li {
    margin-bottom: 12px;
}
.recent-posts li a {
    text-decoration: none;
    color: #000;
	font-weight:600;
}
.recent-posts li a:hover {
    color: #1b4d1b;
}

/* Blog Item Layout */
.blog-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    align-items: flex-start;
}

/* Thumbnail column (always reserved, empty if no image) */
.blog-thumb {
    flex: 0 0 200px; /* fixed width column */
    min-height: 120px; /* keeps height even if no image */
    background: #fafafa; /* visible empty space */
    border: 1px solid #f5f5f5;
    border-radius: 5px;
}
.blog-thumb img {
    width: 100%;
    height: 250px;
    border-radius: 5px;
    display: block;
    object-fit: cover;
}

/* Content column */
.blog-content {
    flex: 1;
}
.blog-content p {
    font-size: 16px;
    margin-bottom: 16px!important;
}
.blog-content h2 {
    font-size: 30px;
}
.blog-content h2 a {
    font-weight: 700;
    color: #1b4d1b;
    font-size: 32px;
}
.blog-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #1b4d1b; /* red border */
    border-radius: 4px;
    text-decoration: none;
    color: #fff; /* white text */
    background: #1b4d1b; /* red background */
    transition: all 0.3s ease;
    font-size: 14px;
}

.read-more:hover {
    background: #fff; /* white background */
    color: #16a34a;  /* red text */
    border-color: #16a34a; /* keep red border */
}
ul.recent-posts li {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}
ul.recent-posts li:last-child {
    border-bottom: none;
}
figure.featured-image a > img {
    width: 100%;
    height: 200px!Important;
    border-radius: 5px;
}
h3.author-name a {
    color: #1b4d1b;
    font-size: 25px;
}
.section-title-wrap {
    margin: 18px 0px;
}
h3.entry-title > a {
    color: #1b4d1b!important;
    font-size: 20px;
    margin-bottom: 33px;
    display: block;
}
section.section-ralated-post {
    margin-bottom: 20px;
}
section.wrap-detail-page {
    margin-top: 30px;
}
h1.page-title.entry-title {
    margin-bottom: 20px;
}
figure.feature-image.single-feature-image img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.entry-meta.footer-meta a:hover {
    color: #000!important;
}
.author img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
}
.gallery .card {
    transition: all 0.3s ease;
    overflow: hidden;
}
.gallery img.card-img-top.rounded.rounded-bottom-0:hover {
    transition: transform .5s 
ease;
    transform: scale(1.05);
}
.gallery img.card-img-top.rounded.rounded-bottom-0 {
    transition: transform .5s 
ease;
	 height: 230px;
	object-fit:cover;
}
.card-body p.card-text.text-muted {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.card-body.text-center.p-4 > p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
}
.row_new > div img {
    height: 300px;
    object-fit: cover;
	transition: transform .5s 
ease; 
}
.row_new > div img:hover {
    transform: scale(1.05);
}
.card-body.text-center.p-4 > p:empty {
    display: none;
}
.row_new div {
    flex: 1;
}
.nav-next a:hover {
    color: #000!important;
}
.lb-data .lb-close {
    top: -32px;
    right: 22%;
    position: absolute;
}
main#main {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 11px #eee;
    border-radius: 5px;
    margin-bottom: 50px;
}
.nav-previous a:hover, .nav-next a:hover  {
    color: #000!important;
}
@media(min-width:991px){
.lb-outerContainer {
    position: relative;
    width: 740px!important;
    height: 410px !important;
	}
	
.lightbox .lb-image {
    width: 100%!important;
    display: block;
    max-width: 100%;
	height: 410px!important;
    object-fit: cover;
}
}
@media(max-width:767px){
	.blog-item {
    flex-direction: column;
}
	.blog-wrapper {
    flex-direction: column;
}
	.blog-wrapper {
    max-width: 100%;
    width: 100%;
    padding: 0px 20px;
}
	.blog-thumb {
    width: 100%;
}
	.blog-content h2 a{
		font-size:28px;
	}
	.blog-thumb img {
    height: -webkit-fill-available;

}
	.timeline-content:before{
		display:none;
	}
	.timeline {
    padding-left: 0px; 
}
	.timeline::before{
		display:none;
	}
	
}
@media(max-width:1024px){
	
	footer .list-unstyled li{
    word-break: break-all;
}	
	.row_new.even-row {
    flex-direction: column-reverse;
}
	.blog-wrapper {
    flex-direction: column;
    padding: 15px;
}
}
.btn-readmore {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #1b4d1b;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-readmore:hover {
  background: #16a34a;
	color:#fff!important;
}

/*services new sections*/
/* --- Global Container Styling --- */
.services_mains {
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

/* --- Header/Intro Section --- */
.service-area-header {
    flex: 3; /* Takes up about 2/3 of the space */
}

.service-area-header h2 {
    margin-top: 0;
}

.service-area-header p {
    line-height: 1.6;
    color: #555;
    font-size: 1.1em;
}

/* --- Locations List Section --- */
.service-area-locations {
    flex: 1; /* Takes up about 1/3 of the space */
}

.service-area-locations h3 {
    color: #1b4d1b; /* Use your brand color */
    margin-top: 0;
    font-size: 1.4em;
    margin-bottom: 15px;
	 font-weight: 700;
}
.coverage {
    background: #2fde2f1a;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #1b4d1b;
    margin-top: 28px;
}
.service-area-locations ul {
    list-style-type: none; /* Removes default bullets */
    padding: 0;
    margin: 0;
}

.service-area-locations li {
    background-color: #1b4d1b;
    padding: 8px 15px;
    margin-bottom: 5px;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 0 11px #eee;
    transition: all 0.2s 
ease-in-out;
}
.service-area-locations li:hover {
    background-color: #16a34a;
    color: #fff;
    border-color:#16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* --- Responsive Adjustments for Mobile --- */
@media (max-width: 768px) {
    .service-area-box {
        flex-direction: column;
    }
	.services_mains {
    flex-direction: column;
}
    .service-area-header h2 {
        font-size: 1.5em;
    }
	.service-area-locations {
    width: 100%;
}
}

/*owner*/
.owner-highlight {
  padding: 60px 0px;
  background: #f8fdf8;
}
.owner-highlight .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #1a421a;
}
.owner-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 30px;
}
.owner-photo img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1a421a;
}
.owner-info {
  flex: 1;
  min-width: 280px;
}
.owner-info h3 {
  margin: 0;
  font-size: 24px;
  color: #1a421a;
}
.owner-info .owner-role {
  font-weight: 600;
  color: #4b4b4b;
  margin: 6px 0 12px;
}
.owner-info .owner-bio {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
p.comment-form-comment label {
    display: block;
}
@media(min-width:767px){
#gallery h5.card-title.fw-bold.text-primary {
    min-height: 50px;
}
}