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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

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

        /* Header */
        header {
            background: linear-gradient(135deg, #e0a606, #4a7c21, #6ba832);
            color: white;
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s linear infinite;
            pointer-events: none;
        }

        @keyframes float {
            0% { transform: translate(-50px, -50px) rotate(0deg); }
            100% { transform: translate(-50px, -50px) rotate(360deg); }
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #26cc10, #e8f5e8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .nav-menu a:hover::before {
            left: 0;
        }

        .nav-menu a:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .nav-menu a.active {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(45, 80, 22, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                padding: 50px 0;
                gap: 20px;
                transition: left 0.3s ease;
                z-index: 999;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu a {
                font-size: 1.3rem;
                padding: 15px 30px;
                width: 80%;
                text-align: center;
            }

            .menu-toggle {
                display: flex;
            }

            .contact-info {
                display: none;
            }
        }

        .contact-btn {
            background: rgba(255,255,255,0.2);
            border: 2px solid white;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .contact-btn:hover {
            background: white;
            color: #2d5016;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Hero Section */
        .hero {
            background: 
                linear-gradient(rgba(45, 80, 22, 0.6), rgba(107, 168, 50, 0.6)), 
                radial-gradient(circle at 20% 80%, #2d5016 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #6ba832 0%, transparent 50%),
                linear-gradient(135deg, #4a7c21, #98d982, #6ba832);
            background-size: 100% 100%, 40% 40%, 40% 40%, 100% 100%;
            background-position: center, left bottom, right top, center;
            color: white;
            padding: 120px 0;
            text-align: center;
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="leaves" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="15" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="60" r="10" fill="%23ffffff" opacity="0.05"/><path d="M30,70 Q50,50 70,70 T110,70" stroke="%23ffffff" stroke-width="2" fill="none" opacity="0.1"/></pattern></defs><rect width="1000" height="600" fill="url(%23leaves)"/></svg>');
            opacity: 0.3;
            animation: float 20s linear infinite;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            animation: slideInDown 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
            animation: slideInUp 1s ease 0.3s both;
        }

        @keyframes slideInDown {
            from { transform: translateY(-100px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

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

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 18px 36px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
            animation: slideInUp 1s ease 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 107, 53, 0.6);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: 
                linear-gradient(rgba(248, 255, 254, 0.95), rgba(232, 245, 232, 0.95)),
                radial-gradient(circle at 30% 30%, #e8f5e8 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, #d4f1d4 0%, transparent 50%),
                linear-gradient(45deg, #f8fffe, #e8f5e8);
            background-size: 100% 100%, 60% 60%, 60% 60%, 100% 100%;
        }

        .services h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            color: #2d5016;
            position: relative;
        }

        .services h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #6ba832, #98d982);
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(107, 168, 50, 0.1), transparent);
            transform: rotate(-45deg);
            transition: all 0.6s ease;
        }

        .service-card:hover::before {
            animation: shimmer 1.5s ease;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(107, 168, 50, 0.2);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #6ba832, #98d982);
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 5px 20px rgba(107, 168, 50, 0.3);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #2d5016;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, #2d5016, #4a7c21);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 Q30,10 50,50 T90,50" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>') repeat;
            opacity: 0.1;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #fff, #98d982);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            font-size: 1.2rem;
            line-height: 2;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* Enhanced About Features Grid */
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .feature-item {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .feature-item h4 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #98d982;
        }

        .feature-item p {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Responsive adjustments for about features */
        @media (max-width: 768px) {
            .about-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .about-features {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        /* Gallery & Video Section */
        .gallery {
            padding: 100px 0;
            background: 
                linear-gradient(rgba(248, 255, 254, 0.95), rgba(232, 245, 232, 0.95)),
                radial-gradient(circle at 20% 80%, #e8f5e8 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #d4f1d4 0%, transparent 50%),
                linear-gradient(135deg, #f8fffe, #e8f5e8, #d4f1d4);
            background-size: 100% 100%, 50% 50%, 50% 50%, 100% 100%;
        }

        .gallery h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            color: #2d5016;
            position: relative;
        }

        .gallery h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #6ba832, #98d982);
            border-radius: 2px;
        }

        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-button {
            padding: 15px 30px;
            background: transparent;
            border: 2px solid #6ba832;
            color: #6ba832;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tab-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #6ba832, #98d982);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .tab-button:hover::before,
        .tab-button.active::before {
            left: 0;
        }

        .tab-button:hover,
        .tab-button.active {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(107, 168, 50, 0.3);
        }

        .gallery-content {
            display: none;
        }

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

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .gallery-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(107, 168, 50, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item-content {
            padding: 25px;
        }

        .gallery-item h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #2d5016;
        }

        .gallery-item p {
            color: #666;
            line-height: 1.6;
        }

        /* Video Player */
        .video-container {
            position: relative;
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-container:hover {
            transform: scale(1.02);
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2d5016, #6ba832);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .video-placeholder::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="30" cy="30" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="70" cy="30" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="50" cy="70" r="3" fill="rgba(255,255,255,0.2)"/></svg>') repeat;
            opacity: 0.3;
        }

        .play-button {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .play-button:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 5px;
        }

        .video-title {
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            z-index: 2;
        }

        /* Replace image placeholders with CSS-generated garden backgrounds */
        .gallery-item img,
        .image-placeholder {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.3s ease;
            border-radius: 15px 15px 0 0;
            position: relative;
        }

        /* CSS-generated garden images for different categories */
        
        .garden-img-1 {
            background: 
                linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                radial-gradient(circle at 30% 70%, #6ba832 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, #98d982 0%, transparent 40%),
                linear-gradient(135deg, #4a7c21, #6ba832, #98d982);
            background-size: 100% 100%, 60% 60%, 40% 40%, 100% 100%;
            position: relative;
            overflow: hidden;
        }

        .garden-img-1::before {
            content: '🏡';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.3;
            filter: blur(1px);
        }

        .garden-img-2 {
            background: 
                linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                radial-gradient(circle at 20% 80%, #4a7c21 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #6ba832 0%, transparent 50%),
                linear-gradient(45deg, #2d5016, #4a7c21, #6ba832);
            background-size: 100% 100%, 50% 50%, 50% 50%, 100% 100%;
            position: relative;
            overflow: hidden;
        }

        .garden-img-2::before {
            content: '🏢';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.3;
            filter: blur(1px);
        }

        .garden-img-3 {
            background: 
                linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                radial-gradient(circle at 40% 60%, #87ceeb 0%, transparent 40%),
                radial-gradient(circle at 60% 40%, #6ba832 0%, transparent 50%),
                linear-gradient(135deg, #4a7c21, #87ceeb, #98d982);
            background-size: 100% 100%, 40% 40%, 60% 60%, 100% 100%;
            position: relative;
            overflow: hidden;
        }

        .garden-img-3::before {
            content: '💧';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.4;
            filter: blur(1px);
        }

        .garden-img-4 {
            background: 
                linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                radial-gradient(circle at 25% 75%, #ff69b4 0%, transparent 30%),
                radial-gradient(circle at 75% 25%, #ffb6c1 0%, transparent 30%),
                radial-gradient(circle at 50% 50%, #98d982 0%, transparent 50%),
                linear-gradient(45deg, #98d982, #90ee90, #98fb98);
            background-size: 100% 100%, 30% 30%, 30% 30%, 70% 70%, 100% 100%;
            position: relative;
            overflow: hidden;
        }

        .garden-img-4::before {
            content: '🌺';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.4;
            filter: blur(1px);
        }

        .garden-img-5 {
            background: 
                linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                linear-gradient(45deg, #6ba832 25%, transparent 25%),
                linear-gradient(-45deg, #98d982 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #4a7c21 75%),
                linear-gradient(-45deg, transparent 75%, #2d5016 75%),
                linear-gradient(135deg, #98d982, #6ba832);
            background-size: 100% 100%, 20px 20px, 20px 20px, 20px 20px, 20px 20px, 100% 100%;
            position: relative;
            overflow: hidden;
        }

        .garden-img-5::before {
            content: '🌿';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.4;
            filter: blur(1px);
        }

        .garden-img-6 {
            background: 
                linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                radial-gradient(circle at 30% 30%, #228b22 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, #32cd32 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, #6ba832 0%, transparent 60%),
                linear-gradient(135deg, #2d5016, #228b22, #32cd32);
            background-size: 100% 100%, 40% 40%, 40% 40%, 80% 80%, 100% 100%;
            position: relative;
            overflow: hidden;
        }

        .garden-img-6::before {
            content: '🌳';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.4;
            filter: blur(1px);
        }

        .garden-img-7 {
            background: 
                linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                radial-gradient(ellipse at 50% 80%, #87ceeb 0%, transparent 50%),
                radial-gradient(circle at 30% 40%, #6ba832 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, #98d982 0%, transparent 40%),
                linear-gradient(180deg, #87ceeb, #6ba832, #98d982);
            background-size: 100% 100%, 80% 60%, 50% 50%, 50% 50%, 100% 100%;
            position: relative;
            overflow: hidden;
        }

        .garden-img-7::before {
            content: '🏞️';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.4;
            filter: blur(1px);
        }

        .garden-img-8 {
            background: 
                linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                repeating-linear-gradient(45deg, #98d982 0px, #98d982 10px, #90ee90 10px, #90ee90 20px),
                radial-gradient(circle at 50% 50%, #6ba832 0%, transparent 70%),
                linear-gradient(135deg, #228b22, #32cd32, #98fb98);
            background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
            position: relative;
            overflow: hidden;
        }

        .garden-img-8::before {
            content: '🌱';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.4;
            filter: blur(1px);
        }

        /* Image overlay text */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 20px;
            color: white;
            text-align: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .image-overlay {
            opacity: 1;
        }

        .image-overlay h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .image-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fffe, #e8f5e8);
            text-align: center;
        }

        .contact h2 {
            font-size: 3rem;
            margin-bottom: 40px;
            color: #2d5016;
        }

        .contact p {
            font-size: 1.3rem;
            margin-bottom: 50px;
            color: #666;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .contact-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 20px 40px;
            background: linear-gradient(45deg, #25d366, #128c7e);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
        }

        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        }

        .contact-button.call {
            background: linear-gradient(45deg, #007bff, #00b345);
            box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
        }

        .contact-button.call:hover {
            box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
        }

        /* Floating WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            background: linear-gradient(45deg, #25d366, #128c7e);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 2rem;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite, bounce 1s ease-in-out infinite alternate;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @keyframes bounce {
            from { transform: translateY(0px); }
            to { transform: translateY(-5px); }
        }

        /* Enhanced Animations */
        @keyframes fadeInLeft {
            from { 
                opacity: 0; 
                transform: translateX(-50px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }

        @keyframes fadeInRight {
            from { 
                opacity: 0; 
                transform: translateX(50px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }

        @keyframes zoomIn {
            from { 
                opacity: 0; 
                transform: scale(0.8); 
            }
            to { 
                opacity: 1; 
                transform: scale(1); 
            }
        }

        @keyframes rotateIn {
            from { 
                opacity: 0; 
                transform: rotate(-180deg) scale(0.5); 
            }
            to { 
                opacity: 1; 
                transform: rotate(0deg) scale(1); 
            }
        }

        @keyframes slideInLeft {
            from { 
                opacity: 0; 
                transform: translateX(-100px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }

        @keyframes slideInRight {
            from { 
                opacity: 0; 
                transform: translateX(100px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }

        /* Animated Elements */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
        }

        .animate-left {
            opacity: 0;
            transform: translateX(-50px);
        }

        .animate-right {
            opacity: 0;
            transform: translateX(50px);
        }

        .animate-zoom {
            opacity: 0;
            transform: scale(0.8);
        }

        .animate-rotate {
            opacity: 0;
            transform: rotate(-180deg) scale(0.5);
        }

        /* Service icons enhanced animation */
        .service-icon {
            animation: rotateIn 1s ease forwards;
            animation-delay: 0.3s;
        }

        /* Footer */
        footer {
            background: #1a2e0d;
            color: white;
            padding: 50px 0;
            text-align: center;
        }

        footer p {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                background-attachment: scroll;
                padding: 80px 0;
                min-height: 70vh;
            }

            .services,
            .gallery,
            .contact {
                background-attachment: scroll;
                padding: 80px 0;
            }

            .services-grid,
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
            }

            .about-content {
                gap: 50px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .logo {
                font-size: 2rem;
            }

            .contact-info {
                justify-content: center;
            }

            .hero {
                padding: 60px 0;
                min-height: 60vh;
                background-attachment: scroll;
            }

            .hero h1 {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }

            .services,
            .gallery,
            .contact {
                padding: 60px 0;
                background-attachment: scroll;
            }

            .services h2,
            .about-text h2,
            .contact h2,
            .gallery h2 {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }

            .services-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .service-card,
            .gallery-item {
                padding: 30px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .about-features {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .contact-button {
                width: 100%;
                max-width: 300px;
                padding: 18px 30px;
            }

            .gallery-tabs {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 40px;
            }

            .tab-button {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .floating-whatsapp {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .logo {
                font-size: 1.8rem;
            }

            .hero {
                padding: 40px 0;
                min-height: 50vh;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 25px;
            }

            .services,
            .gallery,
            .contact {
                padding: 40px 0;
            }

            .services h2,
            .about-text h2,
            .contact h2,
            .gallery h2 {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .service-card,
            .gallery-item {
                padding: 25px;
                margin-bottom: 20px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin: 0 auto 20px;
            }

            .service-card h3,
            .gallery-item h4 {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }

            .about {
                padding: 40px 0;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .about-text p {
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 20px;
            }

            .feature-item {
                padding: 20px;
            }

            .feature-item h4 {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }

            .contact p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .contact-button {
                padding: 15px 25px;
                font-size: 1rem;
            }

            .tab-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .gallery-item-content {
                padding: 20px;
            }

            .floating-whatsapp {
                bottom: 15px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 320px) {
            .logo {
                font-size: 1.5rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .services h2,
            .gallery h2,
            .contact h2 {
                font-size: 1.8rem;
            }

            .service-card,
            .gallery-item {
                padding: 20px;
            }

            .cta-button,
            .contact-button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .logo {
                font-size: 2rem;
            }

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

            .hero p {
                font-size: 1.1rem;
            }

            .services h2,
            .about-text h2,
            .contact h2 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .contact-button {
                width: 100%;
                max-width: 300px;
            }
        }
        
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: pulse 1.5s infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
.floating-whatsapp img {
    display: block;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.about-section {
  padding: 80px 20px;
  background: #f9f9f9; /* light background */
  text-align: center;
}

.about-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #27ae60; /* green underline */
  margin: 10px auto 0;
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}
