:root{
    --white:#f8f8f8;
    --orange:#fc780c;
    --pink:#f286a8;
    --peach:#fdca91;
    --cream:#fffdf4;
    --mint:#eafcfb;
    }
    
    *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    }
    
    html{
    scroll-behavior:smooth;
    }
    
    body{
    background:var(--cream);
    color:#333;
    }
    
    .container{
    width:90%;
    max-width:1200px;
    margin:auto;
    }
    
    header{
    position:sticky;
    top:0;
    background:white;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    }
    
    .nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    }
    
    .logo img{
    height:80px;
    }
    
    nav ul{
    display:flex;
    gap:30px;
    list-style:none;
    }
    
    nav a{
    text-decoration:none;
    font-weight:600;
    color:#333;
    }
    
    .menu-btn{
    display:none;
    font-size:30px;
    border:none;
    background:none;
    cursor:pointer;
    }
    
    .hero{
    background:linear-gradient(
    135deg,
    var(--mint),
    var(--white)
    );
    padding:100px 20px;
    text-align:center;
    }
    
    .hero h1{
    font-size:3rem;
    color:var(--orange);
    margin-bottom:20px;
    }
    
    .hero p{
    max-width:700px;
    margin:auto;
    font-size:1.1rem;
    }
    
    .hero-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    }
    
    .btn-primary,
    .btn-secondary{
    padding:14px 24px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    }
    
    .btn-primary{
    background:var(--orange);
    color:white;
    }
    
    .btn-secondary{
    background:var(--pink);
    color:white;
    }
    
    .gallery-section{
    padding:80px 0;
    }
    
    .gallery-section h2,
    .services h2,
    .testimonials h2,
    .quote-section h2{
    text-align:center;
    margin-bottom:40px;
    color:var(--orange);
    }
    
    .slideshow{
    position:relative;
    height:450px;
    overflow:hidden;
    border-radius:20px;
    }
    
    .slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
    }
    
    .slide.active{
    opacity:1;
    }
    
    .slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    }
    
    .services{
    background:var(--mint);
    padding:80px 0;
    }
    
    .service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    }
    
    .service-card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    }
    
    .service-card h3{
    color:var(--orange);
    margin-bottom:10px;
    }
    
    .about{
    padding:80px 0;
    }
    
    .about ul{
    margin-top:20px;
    padding-left:20px;
    }
    
    .testimonials{
    padding:80px 0;
    background:var(--white);
    }
    
    .testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    }
    
    .testimonial{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    }
    
    .quote-section{
    padding:80px 0;
    }
    
    form{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    }
    
    .form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
    margin-bottom:20px;
    }
    
    input,
    textarea,
    select{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    }
    
    .upload-box{
    display:block;
    padding:20px;
    border:2px dashed var(--pink);
    border-radius:15px;
    margin:20px 0;
    text-align:center;
    cursor:pointer;
    }
    
    .upload-box input{
    display:none;
    }
    
    footer{
    background:var(--orange);
    color:white;
    text-align:center;
    padding:40px 20px;
    margin-top:50px;
    }
    
    @media(max-width:768px){
    
    .menu-btn{
    display:block;
    }
    
    nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:white;
    display:none;
    }
    
    nav.active{
    display:block;
    }
    
    nav ul{
    flex-direction:column;
    padding:20px;
    }
    
    .hero h1{
    font-size:2.2rem;
    }
    
    .slideshow{
    height:280px;
    }

    .install-banner{
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        background:#fc780c;
        color:white;
        padding:15px;
        display:none;
        justify-content:center;
        align-items:center;
        gap:15px;
        z-index:9999;
        }
    }

    