*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#0d0d0d;
    color:white;
}

header{
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#000;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:35px;
    font-weight:bold;
    color:#f7b500;
    letter-spacing:2px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    font-size:17px;
    transition:0.3s;
}

nav a:hover{
    color:#f7b500;
}

.hero{
    height:100vh;
    background:url('shop.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.hero-content{
    position:relative;
    z-index:1;
}

.hero h1{
    font-size:70px;
    color:#f7b500;
    margin-bottom:15px;
}

.hero p{
    font-size:24px;
    margin-bottom:20px;
}

.viewers{
    margin-bottom:25px;
    font-size:20px;
    color:#f7b500;
}

.btn{
    display:inline-block;
    padding:14px 35px;
    background:#f7b500;
    color:black;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:white;
}

section{
    padding:90px 8%;
}

.about{
    display:flex;
    gap:50px;
    align-items:center;
    flex-wrap:wrap;
}

.about-text{
    flex:1;
}

.about-text h2,
.services h2,
.gallery h2,
.reviews h2,
.contact h2{
    font-size:45px;
    color:#f7b500;
    margin-bottom:25px;
}

.about-text p{
    line-height:1.8;
    margin-bottom:20px;
    color:#ccc;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
}

.services{
    text-align:center;
    background:#111;
}

.service-boxes{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.box{
    background:#1b1b1b;
    padding:40px 25px;
    border-radius:15px;
    transition:0.3s;
}

.box:hover{
    transform:translateY(-10px);
}

.box i{
    font-size:45px;
    color:#f7b500;
    margin-bottom:20px;
}

.box h3{
    margin-bottom:15px;
}

.gallery{
    text-align:center;
}

.gallery-images{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}

.gallery-images img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    transition:0.3s;
}

.gallery-images img:hover{
    transform:scale(1.05);
}

.reviews{
    background:#111;
    text-align:center;
}

.review-boxes{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.review{
    background:#1b1b1b;
    padding:35px;
    border-radius:15px;
}

.review p{
    margin:20px 0;
    color:#ccc;
}

.contact-container{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
}

.contact-info p{
    margin-bottom:20px;
    font-size:18px;
}

.contact-info i{
    color:#f7b500;
    margin-right:10px;
}

form{
    flex:1;
    display:flex;
    flex-direction:column;
}

form input,
form textarea{
    margin-bottom:20px;
    padding:15px;
    border:none;
    border-radius:10px;
    outline:none;
}

form textarea{
    height:150px;
}

form button{
    padding:15px;
    border:none;
    background:#f7b500;
    font-weight:bold;
    border-radius:10px;
    cursor:pointer;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}

/* Loader */
#loader{
    position:fixed;
    width:100%;
    height:100vh;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.spinner{
    width:70px;
    height:70px;
    border:6px solid #333;
    border-top:6px solid #f7b500;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(247,181,0,0.15);
    border-radius:50%;
    filter:blur(120px);
}

header{
    backdrop-filter:blur(10px);
}

.box,
.review,
.about-image img{
    box-shadow:0 10px 35px rgba(0,0,0,0.5);
}

.box:hover,
.review:hover{
    transform:translateY(-12px) scale(1.03);
}

.gallery-images img{
    box-shadow:0 10px 25px rgba(0,0,0,0.6);
}

.gallery-images img:hover{
    transform:scale(1.06);
}

/* WhatsApp Float */
.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    background:#25D366;
    bottom:25px;
    right:25px;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
    text-decoration:none;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.1);
    }

    100%{
        transform:scale(1);
    }
}

.hero h1{
    text-shadow:0 5px 20px rgba(247,181,0,0.5);
}

.btn,
.map-btn,
.whatsapp-btn,
form button{
    box-shadow:0 10px 25px rgba(247,181,0,0.4);
}

footer{
    background:black;
    text-align:center;
    padding:25px;
    color:#aaa;
}

@media(max-width:768px){

    .hero h1{
        font-size:45px;
    }

    nav{
        display:none;
    }

    .about{
        flex-direction:column;
    }
}
.location-section{
    text-align:center;
    background:#111;
}

.map-container{
    margin-top:40px;
}

.location-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.map-btn,
.whatsapp-btn{
    padding:15px 35px;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
    transition:0.3s;
}

.map-btn{
    background:#f7b500;
    color:black;
}

.whatsapp-btn{
    background:#25D366;
    color:white;
}

.map-btn:hover,
.whatsapp-btn:hover{
    transform:scale(1.05);
}