:root {
    --primary-color: #2C7744;
    --secondary-color: #7EB77F;
    --text-color: #333333;
    --background-color: #F4F9F4;
    --accent-color: #E6AA68;
    --light-color: #FFFFFF;
    --dark-color: #1A1A1A;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    color: var(--accent-color); /* This will work if you used currentColor in the SVG */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: #f0f8f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

/* Remove the following styles if they were added */
.logo-image {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

#hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path/to/hero-background.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: left;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.service-item p {
    text-align: left;
    margin-bottom: 1rem;
}

.service-item ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-item .cta-button {
    display: inline-block;
}

.emoji-placeholder {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#about {
    background-color: var(--background-color);
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
}

.profile-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-cta {
    margin-top: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 1rem;
    }
}

#contact {
    background-color: var(--background-color);
}

#contact form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

#contact input,
#contact textarea {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid var(--secondary-color);
    background-color: var(--light-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

#contact input:focus,
#contact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 119, 68, 0.2);
}

#contact textarea {
    height: 150px;
}

footer {
    background-color: var(--background-color);
    color: var(--text-color);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--secondary-color);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

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

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

/* Scroll reveal */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Add these styles at the end of your existing CSS file */

/* Blog styles */
#blog-hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 4rem 0;
    text-align: center;
}

#blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.blog-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.post-excerpt {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: var(--primary-color);
}

/* Individual blog post styles */
.blog-post {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.post-meta {
    text-align: center;
    font-style: italic;
    margin-bottom: 2rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.post-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.post-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.author-bio, .share-buttons {
    text-align: center;
    margin-top: 3rem;
}

.share-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.share-button:hover {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-post h1 {
        font-size: 2rem;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-info, .footer-nav {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1rem;
}

footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

footer address {
    font-style: normal;
}

footer p, footer a {
    color: var(--light-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

footer a:hover {
    text-decoration: underline;
}

footer i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style-type: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
}

.services-tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #f4f9f4;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    text-align: left;
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-button.active {
    background-color: #ccc;
}

.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
}

.tab-content.active {
    display: block;
}

.about-image {
    flex: 1;
}

.profile-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-cta {
    margin-top: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 1rem;
    }
}

#contact {
    background-color: var(--background-color);
}

#contact form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

#contact input,
#contact textarea {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid var(--secondary-color);
    background-color: var(--light-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

#contact input:focus,
#contact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 119, 68, 0.2);
}

#contact textarea {
    height: 150px;
}

footer {
    background-color: var(--background-color);
    color: var(--text-color);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--secondary-color);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

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

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

/* Scroll reveal */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Add these styles at the end of your existing CSS file */

/* Blog styles */
#blog-hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 4rem 0;
    text-align: center;
}

#blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.blog-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.post-excerpt {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: var(--primary-color);
}

/* Individual blog post styles */
.blog-post {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.post-meta {
    text-align: center;
    font-style: italic;
    margin-bottom: 2rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.post-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.post-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.author-bio, .share-buttons {
    text-align: center;
    margin-top: 3rem;
}

.share-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.share-button:hover {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-post h1 {
        font-size: 2rem;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-info, .footer-nav {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1rem;
}

footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

footer address {
    font-style: normal;
}

footer p, footer a {
    color: var(--light-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

footer a:hover {
    text-decoration: underline;
}

footer i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style-type: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
}