*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#000;
}

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.55),
    rgba(0,0,0,.55)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c");
    background-size:cover;
    background-position:center;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
}

.logo{
    color:white;
    font-size:32px;
}

.logo span{
    color:#fbbf24;
}

.content{
    height:85vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.glass-card{
    width:700px;
    padding:50px;
    text-align:center;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.2);
    border-radius:25px;

    animation:fadeUp 1.5s ease;
}

.glass-card h1{
    color:white;
    font-size:60px;
    margin-bottom:20px;
}

.glass-card p{
    color:#ddd;
    font-size:20px;
    line-height:1.8;
}

.buttons{
    margin-top:35px;
}

.btn1,.btn2{
    padding:15px 35px;
    border:none;
    border-radius:50px;
    cursor:pointer;
    font-size:18px;
    margin:10px;
    transition:.4s;
}

.btn1{
    background:#fbbf24;
}

.btn2{
    background:transparent;
    color:white;
    border:2px solid white;
}

.btn1:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px #fbbf24;
}

.btn2:hover{
    background:white;
    color:black;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.project-gallery img{
    width:30%;
    height:200px;
    object-fit:cover;
    border-radius:15px;
}
.project-gallery img:hover{
    width:100%;
    height:100vh;
    object-fit:cover;
}
h2{
    color:rgb(0, 255, 191);
    font-size:40px;
    margin:50px 0;
}
p{
    color:#ddd;
    font-size:20px;
    line-height:1.8;
    margin-bottom:50px;
}
.container{
    max-width:700px;
    margin:auto;
    padding:25px;
}

.container h1{
    text-align:center;
    color:thistle;
    margin-bottom:20px;
}

input, textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:5px;
}

.rating{
    margin:10px 0;
}

.star{
    font-size:30px;
    cursor:pointer;
    color:#ccc;
}

.star.active{
    color:gold;
}

button{
    width:100%;
    padding:12px;
    border:none;
    background:#007bff;
    color:white;
    font-size:16px;
    border-radius:5px;
    cursor:pointer;
}

button:hover{
    background:#0056b3;
}

.review-box{
    margin-top:20px;
}

.review{
    background:#f9f9f9;
    padding:15px;
    margin-top:10px;
    border-left:5px solid #007bff;
    border-radius:5px;
}

.review h3{
    margin-bottom:5px;
}

.review p{
    margin-bottom:5px;
    color:black;
}
.review-rating{
    color:gold;
    font-size:20px;
}
.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:400px;
    margin-top:20px;
    margin-left:20px;
}
#quote{
    display:none;
    background:yellow;
    color:red;
    margin-top:20px;
}
footer{
    text-align:center;
    padding:20px;
    background:lightgray;
    
}
footer p{
    margin:0;
    color:brown;
}
/* Mobile Responsive */

@media (max-width: 768px){
   

    .glass-card{
        width: 95%;
        padding: 25px;
    }

    .glass-card h1{
        font-size: 32px;
    }

    .glass-card p{
        font-size: 16px;
    }

    .buttons{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn1,
    .btn2{
        width: 100%;
        margin: 0;
    }

    .project-gallery{
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .project-gallery img{
        width: 100%;
        height: 220px;
    }

    h2{
        font-size: 28px;
        text-align: center;
    }

    p{
        font-size: 16px;
        padding: 0 10px;
    }

    .container{
        width: 95%;
        padding: 15px;
    }

    .star{
        font-size: 25px;
    }

    .contact-form{
        max-width: 100%;
        margin: 20px 10px;
    }

    footer{
        padding: 15px;
    }
}