
        :root {
            --primary-green: #2e7d32;
            --secondary-green: #4caf50;
            --light-green: #8bc34a;
            --dark-green: #1b5e20;
            --earth-brown: #795548;
            --light-tan: #efebe9;
        }
        
        body {
            font-family: 'Poppins', sans-serif; 
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            padding-top: 80px;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lora', serif;   
            font-weight: 600;
            color: #2e7d32;   
        }
        p,a {
            letter-spacing: 0.5px;
        }
        .gallery-hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1472653525502-fc569e405a74?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
        }
        
        .floating-leaves {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .leaf {
            position: absolute;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 C70,5 90,15 85,40 C80,65 60,80 50,85 C40,80 20,65 15,40 C10,15 30,5 50,10 Z" fill="%234caf50" opacity="0.3"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.7;
        }
        
        .leaf-1 {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 8%;
            animation: float 18s ease-in-out infinite;
        }
        
        .leaf-2 {
            width: 80px;
            height: 80px;
            top: 65%;
            left: 12%;
            animation: float 15s ease-in-out infinite reverse;
        }
        
        .leaf-3 {
            width: 100px;
            height: 100px;
            top: 25%;
            right: 10%;
            animation: float 20s ease-in-out infinite;
        }
        
        .leaf-4 {
            width: 70px;
            height: 70px;
            bottom: 15%;
            right: 8%;
            animation: float 16s ease-in-out infinite reverse;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
            text-align: center;
            display: block;
            margin: auto;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease-out;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            color: #4caf50;
            font-size: 1.8rem;
            margin-bottom: 40px;
            animation: fadeInUp 1.2s ease-out;
            font-weight: 300;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-intro {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1.4s ease-out;
            font-weight: 300;
        }
        
        .gallery-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
            animation: fadeInUp 1.6s ease-out;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            min-width: 150px;
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--light-green);
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            animation: fadeInUp 1.8s ease-out;
        }
        
        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 15px 40px;
            font-weight: 600;
            border-radius: 50px;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--dark-green);
            border-color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .btn-outline-light {
            border-color: white;
            color: white;
            padding: 15px 40px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light:hover {
            background-color: white;
            color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .hero-intro {
                font-size: 1.1rem;
            }
            
            .gallery-stats {
                gap: 20px;
            }
            
            .stat-item {
                min-width: 120px;
                padding: 15px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .gallery-hero {
                min-height: auto;
                padding: 100px 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .gallery-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-item {
                width: 100%;
                max-width: 250px;
                margin-bottom: 20px;
            }
            
            .cta-buttons .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-intro {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .stat-text {
                font-size: 1rem;
            }
        }





/* Gallery Categories Section */
.gallery-categories {
    margin-top: 50px;
    padding: 60px 20px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto 80px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 40px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--light-tan);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    z-index: 10;
}

.category-header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: var(--primary-green);
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
    gap: 12px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    user-select: none;
}

.category-icon {
    font-size: 1.8rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

.category-name {
    margin: 0;
    flex-grow: 1;
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #ddd;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
    padding: 12px 16px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .image-overlay {
    opacity: 1;
}

.category-content {
    padding: 20px 24px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.photo-examples {
    list-style: disc inside;
    margin: 0 0 20px 0;
    padding: 0;
    color: var(--dark-green);
    font-size: 0.95rem;
    line-height: 1.4;
}

.photo-examples li {
    margin-bottom: 8px;
}

.seo-tags {
    border-top: 1px solid var(--light-green);
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-title {
    font-weight: 600;
    color: var(--earth-brown);
    margin-right: 12px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.tag {
    background: var(--secondary-green);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    user-select: none;
    transition: background-color 0.3s ease;
}

.tag:hover {
    background-color: var(--dark-green);
}

.closing-statement {
    margin-top: 50px;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    color: var(--primary-green);
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    opacity: 0;
    animation: fadeIn 2s ease 1.2s forwards;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .category-image {
        height: 160px;
    }
    .section-title {
        font-size: 2rem;
    }
}
