   <style>
        .homepage-section { padding: 40px 0; }
        .homepage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
        .blog-card, .project-card-home, .testimonial-snippet { border: 1px solid #cce0cc; border-radius: 10px; overflow: hidden; background: #f9fdf9; box-shadow: 0 0 10px rgba(0,0,0,0.05); }
        .blog-card img, .project-card-home img { width: 100%; height: 180px; object-fit: cover; }
        .card-content { padding: 15px; }
        .card-content h3 { margin: 10px 0; color: #275b27; }
        .card-content p.meta { font-size: 0.9em; color: #888; margin-bottom: 10px; }
        .view-project-btn, .read-more-btn { display: inline-block; margin-top: 10px; background: #6ea348; color: #fff; padding: 8px 15px; border-radius: 20px; text-decoration: none; transition: 0.3s; }
        .view-project-btn:hover, .read-more-btn:hover { background: #578737; }
        .testimonial-snippet .testimonial-quote { padding: 15px; font-style: italic; color: #444; }
        .testimonial-snippet .testimonial-author { background: #edf5ed; padding: 10px 15px; display: flex; gap: 10px; align-items: center; }
        .author-avatar { width: 40px; height: 40px; background: #6ea348; border-radius: 50%; color: #fff; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 1.2em; }
        .author-info h4 { margin: 0; font-size: 1em; }
        .author-info p { margin: 0; font-size: 0.85em; color: #666; }
        .homepage-section h2 { color: #265526; text-align: center; margin-bottom: 20px; }
        
        /* Service Cards */
        .service-card {
            background: #f9fdf9;
            border: 1px solid #cce0cc;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .service-card h3 {
            color: #275b27;
            margin-bottom: 10px;
        }

        /* FIXED Slider Styles - Removed blinking animation */
        .slider { 
            position: relative; 
            width: 100%; 
            height: 600px;
            overflow: hidden; 
            background: white;
        }
        .slide { 
            position: absolute;
            top: 0;
            left: 0;
            width: 100%; 
            height: 100%; 
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            background: white;
        }
        .slide.active { 
            opacity: 1;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2;
            padding: 20px;
            box-sizing: border-box;
        }
        .slide-content {
            max-width: 800px;
            text-align: center;
            color: white;
            z-index: 3;
        }
        .slide-title {
            font-size: 3em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
            font-weight: bold;
        }
        .slide-location {
            font-size: 1.8em;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
        }
        .slide-btn { 
            background: rgba(0, 0, 0, 0.7);
            color: white; 
            padding: 18px 45px;
            border: 3px solid #6ea348;
            border-radius: 30px; 
            font-size: 1.3em; 
            text-decoration: none; 
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
            box-shadow: 0 5px 20px rgba(0,0,0,0.4);
            z-index: 4;
        }
        .slide-btn:hover {
            background: rgba(110, 163, 72, 0.9);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(110, 163, 72, 0.6);
        }

        /* Navigation Dots */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }
        .dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .dot.active {
            background: white;
            border-color: #6ea348;
            transform: scale(1.2);
        }
        .dot:hover {
            background: white;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #2d5a2d 0%, #1a4a1a 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .stats-section h2 {
            color: white;
            font-size: 2.5em;
            margin-bottom: 40px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .stat-item {
            text-align: center;
        }
        .stat-item h3 {
            font-size: 3em;
            color: #6ea348;
            margin: 0;
            font-weight: bold;
        }
        .stat-item p {
            font-size: 1.2em;
            margin: 10px 0 0 0;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #6ea348 0%, #578737 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .cta-section h2 {
            color: white;
            font-size: 2.2em;
            margin-bottom: 15px;
        }
        .cta-section p {
            font-size: 1.1em;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .btn-secondary {
            background: white;
            color: #2d5a2d;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-secondary:hover {
            background: #f0f8f0;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* LOGIN SECTION STYLES */
        .login-section {
            background: linear-gradient(135deg, #f0faf5 0%, #e8f5e8 100%);
            padding: 80px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .login-box {
            background: white;
            border-radius: 14px;
            box-shadow: 0 8px 25px rgba(110, 163, 72, 0.15);
            width: 100%;
            max-width: 420px;
            border: 1px solid #e8f5e8;
            margin: 0 auto;
        }

        .login-header {
            background: linear-gradient(135deg, #6ea348 0%, #a8d478 100%);
            padding: 35px 20px;
            text-align: center;
            border-top-left-radius: 14px;
            border-top-right-radius: 14px;
            position: relative;
            overflow: hidden;
        }

        .login-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        .login-header h2 {
            margin: 0;
            color: #2d4a2d;
            font-size: 26px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1;
        }

        .login-header .subtitle {
            margin: 8px 0 0 0;
            color: #275b27;
            font-size: 14px;
            font-weight: 500;
            opacity: 0.9;
        }

        .login-body {
            padding: 35px 25px;
            background: #fefffe;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2d4a2d;
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 16px;
            font-size: 15px;
            border: 2px solid #e8f5e8;
            border-radius: 10px;
            outline: none;
            transition: all 0.3s ease;
            background: #fafffe;
            color: #2d4a2d;
            box-sizing: border-box;
        }

        .form-group input:focus {
            border-color: #6ea348;
            background: white;
            box-shadow: 0 0 0 3px rgba(110, 163, 72, 0.1);
        }

        .form-group input::placeholder {
            color: #a8d478;
            opacity: 0.8;
        }

        .btn {
            width: 100%;
            padding: 16px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, #6ea348 0%, #578737 100%);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(110, 163, 72, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background: linear-gradient(135deg, #578737 0%, #4a6b2f 100%);
            box-shadow: 0 6px 20px rgba(110, 163, 72, 0.4);
            transform: translateY(-2px);
        }

        .btn:active {
            transform: translateY(0);
        }

        .login-footer {
            text-align: center;
            padding: 25px 20px;
            font-size: 14px;
            color: #275b27;
            background: #f9fdf9;
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
        }

        .login-footer a {
            color: #6ea348;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .login-footer a:hover {
            color: #578737;
            text-decoration: underline;
        }

        .login-footer p {
            margin: 0;
            line-height: 1.6;
        }

        /* Footer Styles */
        .stronger-footer {
            background: linear-gradient(135deg, #1a4a1a 0%, #0d2d0d 100%);
            color: white;
            padding: 60px 0 20px 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: #6ea348;
            font-size: 1.3em;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .footer-section p {
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #6ea348;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            font-size: 1.5em;
            transition: transform 0.3s;
        }

        .social-links a:hover {
            transform: scale(1.2);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .slide-title { font-size: 2em; }
            .slide-location { font-size: 1.4em; }
            .slide-btn { padding: 12px 25px; font-size: 1em; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item h3 { font-size: 2.5em; }
        }

        @media (max-width: 480px) {
            .login-box {
                margin: 10px;
                max-width: none;
            }
            
            .login-header {
                padding: 25px 15px;
            }
            
            .login-header h2 {
                font-size: 22px;
            }
            
            .login-body {
                padding: 25px 20px;
            }
        }
    </style>