:root {
    --primary-color: #2E7D32;  /* Dark green */
    --secondary-color: #43A047;  /* Medium green */
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --section-bg: #f1f8e9;  /* Light green background */
    --accent-color: #66BB6A;  /* Light green accent */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.05);
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.05));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E7D32' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2H6zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-content .profession {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-content .tagline {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
    transition: background-color 0.3s ease;
}

section:nth-child(even) {
    background: var(--section-bg);
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9));
    pointer-events: none;
}

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

/* About Section Background */
.about {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)),
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E7D32' fill-opacity='0.05'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-.895-3-2-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-.895-3-2-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-.895-3-2-3-3 1.343-3 3 1.343 3 3 3z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Profile Image Styles */
.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(46, 125, 50, 0.15);
    position: relative;
    background: #fff;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: #f7b731; /* Yellow background matching your original photo */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.2), rgba(46, 125, 50, 0.1));
    z-index: 1;
    pointer-events: none;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .profile-image {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }
    
    .profile-placeholder {
        font-size: 2rem;
    }
}

/* Skills Section Background */
.skills {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.03), rgba(46, 125, 50, 0.07)),
                url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E7D32' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: #ffffff;
}

.projects h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.projects h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    justify-items: center;
    padding: 2rem 0;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 60px 0;
    }

    .projects h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Testimonials Section Background */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

.featured-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-content h3 {
    color: var(--text-color);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.author-name {
    display: block;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
}

.author-location {
    display: block;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9em;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .featured-testimonials {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-rating {
        font-size: 20px;
    }
}

/* Contact Section Background */
.contact {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.93)),
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%232E7D32' fill-opacity='0.05'%3E%3Cpath d='M13 0h1v8H0V0h1zm0 2h-1v4h1V2zM2 0h1v8H2V0zm0 2h-1v4h1V2zm27-2h-1v8h1V0zm0 2h1v4h-1V2zm-2-2h-1v8h1V0zm0 2h1v4h-1V2zM8 0h1v8H8V0zm0 2h-1v4h1V2zm27-2h-1v8h1V0zm0 2h1v4h-1V2zm-2-2h-1v8h1V0zm0 2h1v4h-1V2zm27-2h-1v8h1V0zm0 2h1v4h-1V2zm-2-2h-1v8h1V0zm0 2h1v4h-1V2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Contact Info Styles */
.contact-info {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
    backdrop-filter: blur(5px);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-message {
    padding: 1.5rem;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-message p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .contact-item i {
        font-size: 1.1rem;
    }
    
    .contact-item a {
        font-size: 1rem;
    }
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    padding: 2rem 0;
}

.specialties {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.specialties li {
    padding: 1rem;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.specialties li:hover {
    transform: translateY(-2px);
    background: rgba(46, 125, 50, 0.1);
}

.skill-card {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(46, 125, 50, 0.1);
}

.skill-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.skill-card:hover i {
    transform: scale(1.1);
}

.skill-card h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.skill-card p {
    color: var(--light-text);
    margin-top: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

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

    section {
        padding: 4rem 0;
    }

    .specialties {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-column {
        padding: 1.5rem;
    }

    .comment-form {
        padding: 1.5rem;
    }
    
    .comment-card {
        padding: 1rem;
    }

    .featured-testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-services {
        gap: 0.3rem;
    }

    .testimonial-services span {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .section-intro {
        padding: 0 1rem;
        margin: 1rem auto 2rem;
    }
    
    .section-intro p {
        font-size: 1rem;
    }
}

/* Project Card and Image Display */
.project-image {
    position: relative;
    height: 280px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.project-image.dual-image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.project-image.dual-image img {
    max-width: 45%;
    height: auto;
    padding: 0;
}

.project-image.dual-image img.front {
    transform: rotate(-5deg);
}

.project-image.dual-image img.back {
    transform: rotate(5deg);
}

.project-image.dual-image:hover img.front {
    transform: rotate(0deg) scale(1.05);
}

.project-image.dual-image:hover img.back {
    transform: rotate(0deg) scale(1.05);
}

/* Project Details */
.project-details {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tag {
    background: rgba(46, 125, 50, 0.08);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Project Highlights */
.project-highlights {
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.project-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-highlights li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.project-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Image Display */
@media (max-width: 1024px) {
    .project-image {
        height: 360px;
    }
    
    .project-image img {
        padding: 15px;
    }
    
    .project-highlights li {
        font-size: 0.95rem;
        padding-left: 1.8rem;
    }
}

@media (max-width: 768px) {
    .project-image {
        height: 320px;
    }
    
    .project-image img {
        padding: 12px;
    }
    
    .project-highlights {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .project-highlights li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .tag {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .project-image {
        height: 280px;
    }
    
    .project-image img {
        padding: 10px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #ffffff;
}

.services h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: start;
    padding: 2rem 0;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-icon i {
    background: rgba(46, 125, 50, 0.08);
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        font-size: 2.2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.8rem;
    }

    .service-list li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
}

/* Project Card Styles */
.project-card {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.project-info {
    padding: 2rem;
    text-align: center;
}

.project-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-info p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.project-details {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tag {
    background: rgba(46, 125, 50, 0.08);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.project-highlights {
    border-top: 1px solid rgba(46, 125, 50, 0.1);
    padding-top: 1.5rem;
    margin-top: auto;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-highlights li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .project-info {
        padding: 1.5rem;
    }

    .project-info h3 {
        font-size: 1.3rem;
    }

    .project-info p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .tag {
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
    }

    .project-highlights li {
        font-size: 0.9rem;
        padding-left: 1.6rem;
        margin-bottom: 0.6rem;
    }
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Footer */
footer {
    background: var(--text-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Dual Image Flyer Display */
.dual-image {
    position: relative;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dual-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
    padding: 10px;
}

.flip-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(46, 125, 50, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dual-image:hover .flip-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Restaurant Project Card Styles */
.project-card[data-categories*="restaurant"] {
    background-color: #f3f4f6;
    background-image: linear-gradient(45deg, var(--primary-color) 25%, transparent 25%),
                      linear-gradient(-45deg, var(--primary-color) 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, var(--primary-color) 75%),
                      linear-gradient(-45deg, transparent 75%, var(--primary-color) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.1;
}

.project-card[data-categories*="restaurant"] .project-info {
    padding: 1.5rem;
}

.project-card[data-categories*="restaurant"] h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.project-card[data-categories*="restaurant"] .tag {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dual-image {
        height: 300px;
    }
    
    .flip-overlay {
        bottom: 15px;
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Project Details and Highlights */
.project-details {
    margin: 1.2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.project-highlights {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.project-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.project-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Restaurant Project Specific Styles */
.project-card[data-categories*="restaurant"] {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid rgba(46, 125, 50, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card[data-categories*="restaurant"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
}

.project-card[data-categories*="restaurant"] .project-info {
    padding: 1.8rem;
}

.project-card[data-categories*="restaurant"] .tag {
    background: rgba(46, 125, 50, 0.08);
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.project-card[data-categories*="restaurant"] .tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-highlights li {
        font-size: 0.9rem;
    }
    
    .project-card[data-categories*="restaurant"] .project-info {
        padding: 1.5rem;
    }
    
    .project-card[data-categories*="restaurant"] .tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 125, 50, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(46, 125, 50, 0.12);
}

.project-info {
    padding: 2rem;
    background: linear-gradient(to bottom, #ffffff, #fcfcfc);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-info p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.tag {
    background: rgba(46, 125, 50, 0.08);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.project-highlights {
    border-top: 1px solid rgba(46, 125, 50, 0.1);
    padding-top: 1.5rem;
    margin-top: auto;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-highlights li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .project-info {
        padding: 1.5rem;
    }

    .project-info h3 {
        font-size: 1.3rem;
    }

    .project-info p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .tag {
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
    }

    .project-highlights li {
        font-size: 0.9rem;
        padding-left: 1.6rem;
        margin-bottom: 0.6rem;
    }
}

/* Project Image Flip Effect */
.project-image {
    position: relative;
    cursor: pointer;
    perspective: 1000px;
}

.project-image img {
    width: 100%;
    height: auto;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s;
}

.project-image .back {
    transform: rotateY(180deg);
}

.project-image.flipped .front {
    transform: rotateY(180deg);
}

.project-image.flipped .back {
    transform: rotateY(0deg);
}

/* Dark mode styles */
.dark-mode {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --card-bg: #2d2d2d;
    --border-color: #404040;
    --hover-color: #3a3a3a;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

.dark-mode body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.dark-mode .navbar {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.dark-mode .project-card,
.dark-mode .service-card,
.dark-mode .comment-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.dark-mode .project-card:hover,
.dark-mode .service-card:hover {
    background-color: var(--hover-color);
}

.dark-mode-toggle {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Project filters */
.project-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background-color: transparent;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: scale(1.1);
}

/* Enhanced animations */
.project-card,
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.project-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-filters {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .dark-mode-toggle,
    .back-to-top {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

