:root {
    --primary-green: #4CAF50;
    --secondary-orange: #FF9800;
    --light-beige: #F5F5F5;
}

body {
    background-color: var(--light-beige);
    font-family: 'Arial', sans-serif;
}

.bg-dark-green {
    background-color: #388E3C !important;
}

.btn-primary-orange {
    background-color: var(--secondary-orange);
    border: none;
    padding: 12px 30px;
    transition: transform 0.3s ease;
}

.btn-primary-orange:hover {
    background-color: #F57C00;
    transform: scale(1.05);
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('lawn-bg.jpg');
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}
/* Enhanced Styles */
.carousel-item {
    height: 90vh;
    min-height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    bottom: 30%;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 15px;
}

.featured-services {
    background: var(--light-beige);
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--secondary-orange);
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    font-weight: bold;
}

.bg-light-green {
    background-color: #e8f5e9;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefits-list i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}
.service-card {
    position: relative;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-green) 0%, #81C784 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card h3 {
    color: var(--primary-green);
    margin: 1rem 0;
}

.service-link {
    color: var(--secondary-orange);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-orange);
    transition: width 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

.service-link:hover::after {
    width: 100%;
}

/* Service Banner */
.service-banner {
    background: var(--primary-green);
    padding: 120px 0 80px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    /* margin-top: 76px; */
    text-align: center;
}

.service-banner h1 {
    /* font-size: 2.8rem; */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Service Details */
.service-item {
    padding: 4rem 0;
    border-bottom: 2px solid #eee;
}

.service-item:nth-child(even) .row {
    flex-direction: row-reverse;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.service-item h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-excerpt {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.service-features i {
    color: var(--secondary-orange);
    position: absolute;
    left: 0;
    top: 0.3rem;
}

.service-item img {
    transition: transform 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.02);
}
/* About Banner */
.about-banner {
    background: var(--primary-green);
    padding: 120px 0 80px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    /* margin-top: 76px; */
    text-align: center;
}

/* Our Story */
.our-story {
    padding: 5rem 0;
}

.section-title {
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.milestones {
    margin-top: 2rem;
}

.milestone-item {
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.milestone-item i {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Core Values */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 300px;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Team Section */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-card img {
    transition: transform 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-info {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
}

/* CTA Section */
.about-cta {
    background: #4CAF50;
    padding: 4rem 0;
}

.service-cta {
    background: var(--light-beige);
    padding: 4rem 0;
}
/* Contact Banner */
.contact-banner {
    background: var(--primary-green);
    padding: 120px 0 80px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    /* margin-top: 76px; */
    text-align: center;
}

/* Contact Form */
.contact-form-card {
    background: white;
    border-radius: 15px;
}

.contact-form-card .form-control {
    border: 2px solid #eee;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
}

/* Contact Info */
.contact-info-card {
    background: var(--light-beige);
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



/* Animations */
@keyframes slideRight {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideLeft {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.animate-slide-right { animation: slideRight 1s ease-out; }
.animate-slide-left { animation: slideLeft 1s ease-out; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in { animation: fadeIn 1s ease-in; }
@media(max-width: 768px){
    .contact-banner,.about-banner,.service-banner{
        background: var(--primary-green);
        clip-path: none;
    }
    .map-container{
        display: none;
    }
    .service-banner h1{
        /* font-size: 1.3rem; */
    }
    .our-team{
        display: none;
    }
    body{
        overflow-x: hidden !important;
    }
  
}