*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
overflow-x:hidden;
min-height:100vh;
}
.website-wrapper{
    border:3px solid #f5a623;
    min-height:100vh;
}
/* HEADER */

.header{
position:sticky;
top:0;
z-index:999;
background:#fff;
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 6%;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo-area{
display:flex;
align-items:center;
gap:10px;
}

.logo-area img{
width:85px;
}

.logo-text h2{
font-size:15px;
}

.logo-text span{
font-size:15px;
font-weight:700;
}

.navbar{
display:flex;
gap:35px;
}

.navbar a{
text-decoration:none;
color:#222;
font-weight:600;
}

.navbar a:hover{
color:#f5a623;
}

.admin-btn a{
background:#f5a623;
padding:12px 22px;
border-radius:6px;
text-decoration:none;
color:#fff;
font-weight:700;
}

.toggle-btn{
display:none;
background:none;
border:none;
font-size:25px;
cursor:pointer;
}

.mobile-menu{
display:none;
background:#fff;
padding:15px;
}

.mobile-menu a{
display:block;
padding:12px;
text-decoration:none;
color:#222;
border-bottom:1px solid #eee;
}



/* MOBILE */

@media(max-width:768px){

.header{
flex-direction:column;
gap:10px;
}

.navbar{
display:none;
}

.admin-btn{
display:none;
}

.toggle-btn{
display:block;
}

.mobile-menu.active{
display:block;
}
}

/* HERO SLIDER */

.hero-slider{
    position:relative;
    width:100%;
    height:650px;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
    transition:0.8s;
}

.slide.active{
    opacity:1;
    visibility:visible;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.slider-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:650px;
    color:#fff;
    z-index:2;
}

.slider-content span{
    color:#f5a623;
    font-size:20px;
    font-weight:600;
}

.slider-content h1{
    font-size:65px;
    line-height:1.2;
    margin:15px 0;
}

.slider-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:25px;
}

.slider-btn{
    display:inline-block;
    background:#f5a623;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:5px;
    font-weight:600;
}

/* TABLET */

@media(max-width:992px){

    .hero-slider{
        height:600px;
    }

    .slider-content h1{
        font-size:48px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .hero-slider{
        height:500px;
    }

    .slider-content{
        left:20px;
        right:20px;
        text-align:center;
        max-width:100%;
    }

    .slider-content h1{
        font-size:32px;
    }

    .slider-content p{
        font-size:16px;
    }

    .slider-btn{
        display:block;
        width:100%;
    }

}
.about-section{
    padding:20px 6%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about-content h2{
    font-size:30px;
    margin:15px 0;
}

.about-content p{
    line-height:1.8;
    margin-bottom:15px;
}

.more-btn{
    display:inline-block;
    padding:12px 25px;
    background:#f5a623;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    margin-top:10px;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:10px;
}

/* Mobile */

@media(max-width:768px){

    .about-section{
        grid-template-columns:1fr;
        gap:25px;
    }

    .about-content{
        order:1;
    }

    .about-image{
        order:2;
    }

    .about-content h2{
        font-size:28px;
    }
}
/* GALLERY */

.gallery-section{
    padding:30px 6%;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border:2px solid #f5a623;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

/* MOBILE */

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .gallery-item img{
        height:180px;
    }

}
/* TESTIMONIAL */

.testimonial-section{
    padding:30px 6%;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.testimonial-card{
    border:1px solid #f5a623;
    padding:20px;
    background:#fff;
}

.review-top{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.review-top img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.review-top h4{
    margin-bottom:5px;
}

.stars{
    color:#f5a623;
    font-size:18px;
}

.testimonial-card p{
    line-height:1.7;
    color:#555;
}

/* MOBILE */

@media(max-width:768px){

    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .testimonial-card{
        padding:15px;
    }

}
/* FOOTER */

.footer{
    background:#222;
    color:#fff;
    padding:60px 6%;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* Mobile */

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

}

.footer-box h3{
    margin-bottom:20px;
    color:#f5a623;
}

.footer-box p,
.footer-box li{
    line-height:1.8;
    color:#ddd;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:8px;
}

.footer-box a{
    color:#ddd;
    text-decoration:none;
}

.footer-box a:hover{
    color:#f5a623;
}

/* COPYRIGHT */

.copyright{
    background:#111;
    color:#fff;
    text-align:center;
    padding:15px;
    border-top:1px solid #333;
}

/* CREDIT */

.credit-line{
    background:#f5a623;
    color:#000;
    text-align:center;
    padding:12px;
    font-weight:600;
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:30px;
    width:100%;
	
}

.service-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.service-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.service-content{
    padding:20px;
}

.service-content h3{
    font-size:22px;
    margin-bottom:10px;
}

.service-content p{
    font-size:15px;
    line-height:1.7;
    color:#666;
    margin-bottom:15px;
}

.read-more{
    display:inline-block;
    padding:10px 18px;
    background:#f5a623;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
}

/* MOBILE */

@media (max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-card img{
        height:220px;
    }

    .service-content{
        padding:15px;
    }

    .service-content h3{
        font-size:18px;
    }
}
