html{
    scroll-behavior:smooth;
    }

body{
    font-family: 'Poppins', sans-serif;
    margin:0;
    background:#f5f5f5;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
    
    /* HEADER */
    
    header{
        background:#058007;
        padding:15px;
        box-shadow:0 2px 8px rgba(0,0,0,.1);
        }
    
    .nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1200px;
    margin:auto;
    flex-wrap:wrap;
    }
    
    .logo img{
        height:45px;
        width:auto;
        display:block;
        }
    
    nav{
    display:flex;
    align-items:center;
    }
    
    nav a{
        margin:0 15px;
        text-decoration:none;
        color:white;
        font-weight:500;
        }
        
        nav a:hover{
        opacity:.8;
        }
    
        .quote-btn{
            background:white;
            color:#058007;
            border:none;
            padding:10px 18px;
            border-radius:6px;
            font-weight:600;
            cursor:pointer;
            }
            
            .quote-btn:hover{
            background:#DADADA;
            }

            .quote-btn a{
                color:#058007;
            }
    
    /* HERO */
    
    .hero{
    background:url("webpic555.jpg") center/cover no-repeat;
    height:500px;
    display:flex;
    align-items:center;
    position:relative;
    }
    
    .hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,.45);
    }
    
    .hero-text{
    position:relative;
    color:white;
    max-width:600px;
    margin-left:80px;
    }
    
    .hero h1{
    font-size:42px;
    margin-bottom:10px;
    }
    
    .hero h2{
    font-size:26px;
    margin-bottom:15px;
    font-weight:normal;
    }
    
    .hero-buttons button{
    margin-right:10px;
    margin-top:10px;
    }
    
    /* BUTTONS */
    
    .primary{
    background:#058007;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:6px;
    cursor:pointer;
    transition:.3s;
    }

    .primary a{
        color:white;
    }
    
    .primary:hover{
    background:#0a5f0a;
    }
    
    .secondary{
    background:white;
    border:none;
    padding:12px 22px;
    border-radius:6px;
    cursor:pointer;
    }

    .secondary a{
        color:#058007;
    }
    
    .secondary:hover{
    background:#DADADA;
    }
    
    /* SERVICES */
    
    .services{
    padding:80px 20px;
    text-align:center;
    }
    
    .services h2{
    margin-bottom:40px;
    }
    
    .service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    max-width:1100px;
    margin:auto;
    }
    
    .card{
        background:white;
        border-radius:12px;
        overflow:hidden;
        box-shadow:0 8px 20px rgba(0,0,0,.08);
        transition:.35s;
        text-align:center;
        padding-bottom:20px;
        }
        
        .card:hover{
        transform:translateY(-8px);
        box-shadow:0 12px 30px rgba(0,0,0,.15);
        }
        
        .card-image{
        position:relative;
        height:200px;
        overflow:hidden;
        }
        
        .card-image img{
        width:100%;
        height:100%;
        object-fit:cover;
        }
        
        .card-image h3{
        position:absolute;
        bottom:10px;
        left:0;
        right:0;
        color:white;
        font-size:22px;
        font-weight:600;
        background:#058007;
        padding:8px;
        }
        
        .card p{
        padding:15px 20px;
        color:#555;
        font-size:15px;
        }

        .card-image img{
            transition: transform .4s ease;
            }
            
            .card:hover .card-image img{
            transform:scale(1.08);
            }
    
    /* Contactform */
    
    .watatix-form-section{
        background:#058007;
        padding:70px 20px;
        }
        
        .watatix-form-container{
        max-width:600px;
        margin:auto;
        text-align:center;
        }
        
        .watatix-form-container h2{
        color:white;
        font-size:38px;
        margin-bottom:10px;
        }
        
        .form-description{
        color:white;
        opacity:.9;
        margin-bottom:30px;
        font-size:18px;
        }
        
        #leadForm{
        display:flex;
        flex-direction:column;
        gap:14px;
        }
        
        #leadForm input,
        #leadForm textarea{
        padding:14px;
        border-radius:6px;
        border:none;
        font-size:16px;
        }
        
        #leadForm button{
        background:white;
        color:#058007;
        font-weight:600;
        border:none;
        padding:14px;
        border-radius:6px;
        cursor:pointer;
        transition:all .2s ease;
        }
        
        #leadForm button:hover{
        transform:translateY(-2px);
        }
        
        @media(max-width:600px){
        
        .watatix-form-container h2{
        font-size:30px;
        }
        
        }

        /*contact-white*/

.watatix-form-section2{
    background:#ffffff;
    padding:70px 20px;
}

.watatix-form-container2{
    max-width:600px;
    margin:auto;
    text-align:center;
}

.watatix-form-container2 h2{
    color:#000000;
    font-size:38px;
    margin-bottom:10px;
}

.form-description2{
    color:#000000;
    opacity:.8;
    margin-bottom:30px;
    font-size:18px;
}

#leadForm{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.watatix-form-section2 #leadForm input,
.watatix-form-section2 #leadForm textarea{
    padding:14px;
    border-radius:6px;
    border:1px solid #ccc;
    font-size:16px;
    color:#000;
    background:#fff;
}

.watatix-form-section2 #leadForm button{
    background:#058007;
    color:#ffffff;
    font-weight:600;
    border:none;
    padding:14px;
    border-radius:6px;
    cursor:pointer;
    transition:all .2s ease;
}

.watatix-form-section2 #leadForm button:hover{
    transform:translateY(-2px);
    background:#046806; /* slightly darker green on hover */
}

@media(max-width:600px){

    .watatix-form-container2 h2{
        font-size:30px;
    }

}

    
    /* STATS */
    
    .stats{
    display:flex;
    justify-content:center;
    gap:50px;
    padding:50px 20px;
    background:white;
    flex-wrap:wrap;
    text-align:center;
    }

    .stats-title{
        text-align:center;
        width:100%;
        margin-bottom:20px;
        }
    
    .stat h3{
    color:#058007;
    font-size:28px;
    }
    
    /* ESTIMATE */
    
    .estimate{
    background:#058007;
    padding:70px 20px;
    text-align:center;
    }

    .estimate h2{
        color: white;
    }

    .estimate-logo{
        width:180px;
        margin-bottom:15px;
        }
    
    .estimate input{
    padding:12px;
    width:300px;
    max-width:80%;
    margin-right:10px;
    border:1px solid #ccc;
    border-radius:6px;
    }
    
    /* TESTIMONIALS */
    
    .testimonials {
        position: relative;
        z-index: 1;
      }
      
      .elfsight-app-2d277286-3e03-4ce4-81ae-c07425805854 {
        position: relative;
        z-index: 1;
      }

      .testimonials h1{
        text-align:center;
        width:100%;
        margin-bottom:20px;
        }
    
    /* FOOTER */
    
    footer{
    background:#058007;
    color:white;
    text-align:center;
    padding:60px 20px;
    }
    
    footer button{
    margin:10px;
    }

    .footer-copy{
        color:white;
        margin-top:25px;
        font-size:14px;
        text-align:center;
        }
    
    /* CHAT BOT */
    
    #chatButton{
        position:fixed;
        bottom:20px;
        right:20px;
        background:#058007;
        border:none;
        color:white;
        font-size:22px;
        width:60px;
        height:60px;
        border-radius:50%;
        cursor:pointer;
        box-shadow:0 6px 12px rgba(0,0,0,.2);
        z-index:999999;
        }
    
        #chatbot{
            position:fixed;
            bottom:90px;
            right:20px;
            width:280px;
            background:white;
            border-radius:10px;
            box-shadow:0 8px 20px rgba(0,0,0,.2);
            display:none;
            z-index:999999;
            }
    
    .chat-header{
    background:#058007;
    color:white;
    padding:10px;
    display:flex;
    justify-content:space-between;
    }
    
    .chat-body{
    padding:15px;
    }
    
    .chat-body input{
    width:100%;
    padding:8px;
    margin-top:10px;
    border-radius:4px;
    border:1px solid #ccc;
    }
    
    .chat-body button{
    margin-top:10px;
    width:100%;
    background:#058007;
    color:white;
    border:none;
    padding:10px;
    border-radius:6px;
    cursor:pointer;
    }
    
    /* RESPONSIVE DESIGN */
    
    /* TABLETS */
    
    @media (max-width:1000px){
    
    .hero-text{
    margin-left:40px;
    }
    
    .service-grid{
    grid-template-columns:repeat(2,1fr);
    }
    
    }
    
    /* PHONES */
    
    @media (max-width:700px){
    
    .nav{
    flex-direction:column;
    gap:10px;
    }
    
    nav{
    flex-wrap:wrap;
    justify-content:center;
    }
    
    .hero{
    height:auto;
    padding:80px 20px;
    }
    
    .hero-text{
    margin:0;
    text-align:center;
    }
    
    .hero h1{
    font-size:32px;
    }
    
    .hero h2{
    font-size:20px;
    }
    
    .service-grid{
    grid-template-columns:1fr;
    }
    
    .before-after img{
    width:100%;
    }
    
    .stats{
    flex-direction:column;
    gap:25px;
    }
    
    .estimate input{
    width:100%;
    margin-bottom:10px;
    }
    
    }

    /* Gallery page */

    .gallery{
        padding:80px 20px;
        background:#f7f7f7;
        text-align:center;
        }
        
        .gallery h2{
        font-size:36px;
        margin-bottom:10px;
        }
        
        .gallery-sub{
        color:#666;
        margin-bottom:40px;
        }
        
        .gallery-grid{
        max-width:1200px;
        margin:auto;
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:15px;
        }
        
        .gallery-grid img{
        width:100%;
        height:250px;
        object-fit:cover;
        border-radius:8px;
        transition:transform .3s ease, box-shadow .3s ease;
        }
        
        .gallery-grid img:hover{
        transform:scale(1.05);
        box-shadow:0 8px 20px rgba(0,0,0,.15);
        }
        
        /* Tablet */
        
        @media (max-width:900px){
        .gallery-grid{
        grid-template-columns:repeat(3,1fr);
        }
        }
        
        /* Mobile */
        
        @media (max-width:600px){
        .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        }
        
        .gallery-grid img{
        height:180px;
        }
        }

        /*sucess page*/
        .success-section{
            background:#ffffff;
            padding:100px 20px;
            text-align:center;
        }
        
        .success-container{
            max-width:600px;
            margin:auto;
        }
        
        .success-icon{
            position:relative;
            width:80px;
            height:80px;
            margin:0 auto 30px;
        }
        
        .spinner{
            width:80px;
            height:80px;
            border:4px solid #ddd;
            border-top:4px solid #000;
            border-radius:50%;
            animation:spin 1s linear infinite;
        }
        
        .checkmark{
            position:absolute;
            top:50%;
            left:50%;
            transform:translate(-50%, -50%) scale(0);
            font-size:40px;
            color:#058007;
            opacity:0;
            transition:all .4s ease;
        }
        
        .success-icon.done .spinner{
            display:none;
        }
        
        .success-icon.done .checkmark{
            transform:translate(-50%, -50%) scale(1);
            opacity:1;
        }
        
        .success-section h1{
            color:#000;
            font-size:34px;
            margin-bottom:15px;
        }
        
        .success-message{
            color:#000;
            font-size:18px;
            margin-bottom:10px;
        }
        
        .success-sub{
            color:#000;
            opacity:.7;
            font-size:16px;
        }
        
        @keyframes spin{
            to{ transform:rotate(360deg); }
        }
        
        @media(max-width:600px){
            h1{
                font-size:26px;
            }
        }