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

body{
    font-family:'Poppins',sans-serif;
    background:#0f0f0f;
    color:white;
    overflow-x:hidden;
}

/* COLORS */

:root{
    --yellow:#ffd54f;
    --light-yellow:#fff3c4;
    --dark:#121212;
}

/* NAVBAR */

.navbar{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,0.5);
    backdrop-filter:blur(15px);
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:var(--yellow);
    letter-spacing:2px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.4s;
}

.nav-links a:hover{
    color:var(--yellow);
}

.menu-btn{
    display:none;
}

/* HERO */

.hero{
    width:100%;
    height:100vh;
    background:url('image/03.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.3));
}

.hero-content{
    position:relative;
    text-align:center;
    max-width:900px;
    padding:20px;
    animation:fadeUp 1.5s ease;
}

.hero-content h1{
    font-size:75px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-content span{
    color:var(--yellow);
}

.hero-content p{
    font-size:20px;
    color:#ffffff;
    line-height:1.8;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn{
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.5s;
}

.yellow-btn{
    background:var(--yellow);
    color:black;
}

.yellow-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 30px rgba(255,213,79,0.5);
}

.transparent-btn{
    border:2px solid var(--yellow);
    color:var(--yellow);
}

.transparent-btn:hover{
    background:var(--yellow);
    color:black;
}

/* SECTION */

.section{
    padding:120px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:50px;
    color:var(--yellow);
}

.section-title p{
    margin-top:10px;
    color:#cccccc;
}

/* ABOUT */

.about-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:30px;
}

.about-content h3{
    font-size:45px;
    margin-bottom:20px;
}

.about-content p{
    color:#cccccc;
    line-height:2;
    margin-bottom:20px;
}

.about-stats{
    display:flex;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.stat-box{
    background:#1a1a1a;
    padding:25px;
    border-radius:20px;
    min-width:150px;
}

.stat-box h4{
    color:var(--yellow);
    font-size:30px;
}

/* SERVICES */

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

.service-card{
    background:#1a1a1a;
    padding:40px 30px;
    border-radius:25px;
    transition:0.5s;
    text-align:center;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(255,213,79,0.2);
}

.service-card i{
    font-size:50px;
    color:var(--yellow);
    margin-bottom:25px;
}

.service-card h3{
    margin-bottom:15px;
}

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

/* GALLERY */

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

.gallery-item{
    overflow:hidden;
    border-radius:25px;
}

.gallery-item img{
    width:100%;
    height:400px;
    object-fit:cover;
    transition:0.7s;
}

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

/* REVIEWS */

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

.review-card{
    background:#1a1a1a;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
}

.review-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

.review-card span{
    color:gold;
    font-size:22px;
}

.review-card p{
    margin-top:20px;
    color:#cccccc;
    line-height:1.8;
}

/* CONTACT */

.contact-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:60px;
}

.contact-left h2{
    font-size:50px;
    margin-bottom:20px;
}

.contact-left p{
    color:#cccccc;
    line-height:2;
}

.contact-details{
    margin-top:30px;
}

.contact-details div{
    margin-bottom:20px;
    font-size:18px;
}

.contact-details i{
    color:var(--yellow);
    margin-right:10px;
}

.contact-right form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-right input,
.contact-right textarea{
    padding:18px;
    border:none;
    outline:none;
    border-radius:15px;
    background:#1a1a1a;
    color:white;
}

.contact-right textarea{
    height:150px;
}

.contact-right button{
    padding:18px;
    border:none;
    border-radius:15px;
    background:var(--yellow);
    font-weight:600;
    cursor:pointer;
}

/* FOOTER */

footer{
    padding:40px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
}

footer h3{
    color:var(--yellow);
    margin-bottom:10px;
}

.footer-socials{
    margin:25px 0;
}

.footer-socials a{
    width:45px;
    height:45px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:#1a1a1a;
    border-radius:50%;
    color:var(--yellow);
    margin:0 10px;
    text-decoration:none;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(80px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:900px){

    .hero-content h1{
        font-size:50px;
    }

    .nav-links{
        display:none;
    }

    .menu-btn{
        display:block;
        font-size:25px;
    }

}