/* ---------------------------------------------------------------------- */
/* --- COLOR PALETTE & GLOBAL RESET --- */
/* ---------------------------------------------------------------------- */
:root {
    /* Bright, Light Green */
    --color-primary: #22c55e; 
    /* Dark Text, Primary Headers */
    --color-text-dark: #1e293b; 
    /* Body Text, Secondary */
    --color-text-grey: #475569; 
    /* Light Grey Backgrounds */
    --color-bg-light: #f8fafc; 
    /* Card/Element Borders & Shadows */
    --color-border-subtle: #e2e8f0; 
}

/* Base container for content width and centering */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* General Section Padding */
section {
    padding: 6rem 0;
}

/* Base Typography */
h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin: 0;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

p {
    color: var(--color-text-grey);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ---------------------------------------------------------------------- */
/* --- BUTTON STYLES --- */
/* ---------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

/* Primary Button (Green Fill) */
.btn.primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.btn.primary:hover {
    background-color: #16a34a; /* Darker green on hover */
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
    transform: translateY(-2px);
}

/* Secondary Button (Outline/White) */
.btn.secondary {
    background-color: transparent;
    color: var(--color-text-dark);
    border-color: var(--color-border-subtle);
}

.btn.secondary:hover {
    background-color: var(--color-bg-light);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    color: var(--color-primary);
}

/* Read More Button (Subtle/Inline) */
.btn.read-more {
    padding: 0;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    border: none;
    align-self: flex-start; /* Important for card layout */
}

.btn.read-more:hover {
    color: #16a34a;
    text-decoration: underline;
    background-color: transparent;
    transform: none;
    box-shadow: none;
}


/* ---------------------------------------------------------------------- */
/* --- INTRO SECTION: .services-intro --- */
/* ---------------------------------------------------------------------- */
.services-intro {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.intro-left {
    flex: 1; /* Takes up 1 part of the space */
    min-width: 300px;
}

.intro-right {
    flex: 2; /* Takes up 2 parts of the space */
    font-size: 1.15rem;
    color: var(--color-text-grey);
}

.intro-right strong {
    color: var(--color-text-dark);
    font-weight: 700;
}

.green-line {
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 1rem;
}


/* ---------------------------------------------------------------------- */
/* --- SERVICES GRID: .services-grid --- */
/* ---------------------------------------------------------------------- */
.services-grid {
    display: grid;
    /* 3 columns on large screens, max card size of 350px */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--color-border-subtle);
    display: flex;
    flex-direction: column;
    /* Premium Effect: Subtle shadow and lift on hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%; /* Ensure all cards are the same height */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.15);
    border-color: var(--color-primary);
}

.service-card img {
    width: 100%;
    height: 200px; /* Fixed height for image consistency */
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    /* Optional: Slight greyscale for premium look, color on hover */
    filter: grayscale(80%); 
    transition: filter 0.3s ease;
}

.service-card:hover img {
    filter: grayscale(0%);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}


/* ---------------------------------------------------------------------- */
/* --- FINAL CTA: .final-cta --- */
/* ---------------------------------------------------------------------- */
.final-cta {
    background-color: var(--color-bg-light); /* Light grey background */
    text-align: center;
    padding: 8rem 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; /* Allows buttons to wrap on small screens */
    margin-top: 2rem;
}

/* ---------------------------------------------------------------------- */
/* --- RESPONSIVENESS (Mobile/Tablet Optimizations) --- */
/* ---------------------------------------------------------------------- */

/* Tablet View (Max 992px) */
@media (max-width: 992px) {
    section {
        padding: 4rem 0;
    }

    /* Stack the Intro Section */
    .services-intro {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .intro-left, .intro-right {
        min-width: auto;
        width: 100%;
    }

    .intro-left h2 {
        font-size: 2.5rem;
    }

    .green-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .intro-right {
        font-size: 1.05rem;
    }

    /* Adjust CTA size */
    .final-cta {
        padding: 6rem 1.5rem;
    }
    .final-cta h2 {
        font-size: 2rem;
    }
}

/* Mobile View (Max 640px) */
@media (max-width: 640px) {
    h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }
    
    .services-grid {
        /* Single column grid for small screens */
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card img {
        height: 150px;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.35rem;
    }

    .cta-buttons {
        /* Make buttons full width when stacked */
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}
        .footer-about p {
 font-size: 0.95rem;
  color: #e5e5e5;
} 
        .footer-bottom p {
color: #FFFFFF;
font-size: 0.9rem; 
        }
        .footer-newsletter p{
            color: #FFFFFF;
            font-size: 0.9rem;
        }