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

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f8f8;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    margin:auto;
}

/* =========================
HEADER
========================= */

header{
    width:100%;
    background:#8a4522;
    padding:18px 0;
    position:sticky;
    top:0;
    left:0;
    z-index:9999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

.logo{
    color:#fff;
    font-size:42px;
    font-weight:700;
}

.logo span{
    color:#ff7b00;
}

/* DESKTOP MENU */

nav{
    display:flex;
    align-items:center;
}

nav a{
    color:#fff;
    margin-left:30px;
    font-size:16px;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#ff7b00;
}

/* MENU ICON */

.menu-toggle{
    display:none;
    color:#fff;
    font-size:34px;
    cursor:pointer;
}

/* CLOSE ICON */

.close-menu{
    display:none;
}

/* =========================
MOBILE MENU
========================= */

@media(max-width:767px){

.logo{
    font-size:28px;
}

.menu-toggle{
    display:block;
}

nav{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#8a4522;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding-top:90px;
    transition:0.4s ease;
    z-index:99999;
    overflow-y:auto;
}

nav.active{
    right:0;
}

nav a{
    width:100%;
    padding:18px 25px;
    margin:0;
    border-bottom:1px solid rgba(255,255,255,0.1);
    font-size:18px;
}

.close-menu{
    display:block;
    position:absolute;
    top:25px;
    right:25px;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

}

/* =========================
HERO SECTION
========================= */

.hero{
    position:relative;
    width:100%;
    height:90vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    animation:slider 25s infinite;
}

.slide:nth-child(1){
    background-image:url('images/slider1.png');
    animation-delay:0s;
}

.slide:nth-child(2){
    background-image:url('images/slider2.png');
    animation-delay:5s;
}

.slide:nth-child(3){
    background-image:url('images/slider3.png');
    animation-delay:10s;
}

.slide:nth-child(4){
    background-image:url('images/slider4.png');
    animation-delay:15s;
}

.slide:nth-child(5){
    background-image:url('images/slider5.png');
    animation-delay:20s;
}

@keyframes slider{

0%{
    opacity:0;
}

10%{
    opacity:1;
}

20%{
    opacity:1;
}

30%{
    opacity:0;
}

100%{
    opacity:0;
}

}

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

.hero-content h1{
    font-size:65px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff7b00;
    color:#fff;
    border-radius:6px;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#8a4522;
}

/* MOBILE HERO */

@media(max-width:767px){

.hero{
    height:70vh;
}

.hero-content{
    left:5%;
    max-width:90%;
}

.hero-content h1{
    font-size:38px;
    line-height:1.2;
}

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

.btn{
    padding:12px 28px;
    font-size:16px;
}

}



/* =========================
SECTION TITLE
========================= */

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

.section-title h2{
    font-size:42px;
    color:#8a4522;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

/* =========================
ABOUT
========================= */

.about{
    padding:80px 0;
    background:#fff;
}

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-content img{
    width:100%;
    border-radius:12px;
}

.about-text h3{
    font-size:36px;
    margin-bottom:20px;
}

.about-text p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
}

@media(max-width:767px){

.about-content{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:30px;
}

.about-text h3{
    font-size:28px;
}

}

/* =========================
PRODUCTS
========================= */

.products{
    padding:80px 0;
}

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

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
}

.product-card:hover{
    transform:translateY(-10px);
}

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

.product-content{
    padding:25px;
}

.product-content h3{
    margin-bottom:12px;
    color:#8a4522;
}

.product-content p{
    line-height:1.7;
}

@media(max-width:991px){

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.product-grid{
    grid-template-columns:1fr;
}

}

/* =========================
GALLERY
========================= */

.gallery-section{
    padding:80px 0;
    background:#fff;
}

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

.gallery-box{
    width:100%;
    height:320px;
    overflow:hidden;
    border-radius:12px;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.gallery-box img,
.gallery-box video{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.gallery-box:hover img{
    transform:scale(1.08);
}

@media(max-width:991px){

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

}

@media(max-width:767px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-box{
    height:280px;
}

}

/* =========================
CONTACT
========================= */

.contact{
    padding:80px 0;
    background:#f8f8f8;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:16px;
}

.contact-form textarea{
    height:120px;
    resize:none;
}

.contact-info{
    background:#8a4522;
    color:#fff;
    padding:40px;
    border-radius:12px;
}

.contact-info h3{
    font-size:32px;
    margin-bottom:25px;
}

.contact-info p{
    margin-bottom:18px;
    line-height:1.8;
}

.social-icons{
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#ff7b00;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:0.3s;
}

.social-icons a:hover{
    background:#fff;
    color:#8a4522;
}

@media(max-width:767px){

.contact-wrapper{
    grid-template-columns:1fr;
}

}

/* =========================
FOOTER
========================= */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:22px 0;
}

/* =========================
SINGLE IMAGE SLIDER
========================= */

.hero-slider{
    position:relative;
    width:100%;
    height:100vh;

    /* SINGLE IMAGE */

    background-image:url('images/main.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;

    overflow:hidden;
}

/* DARK OVERLAY */

.hero-slider::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;

    background:;

    z-index:1;
}

/* CONTENT */

.slider-content{
    position:relative;
    z-index:2;

    max-width:750px;

    margin-left:8%;
    color:#fff;
}

/* HEADING */

.slider-content h1{
    font-size:82px;
    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;

    /* TEXT SHADOW */

    text-shadow:
    0px 0px 8px rgba(0,0,0,0.8),
    0px 0px 18px rgba(0,0,0,0.8),
    4px 4px 15px rgba(0,0,0,0.9);
}

/* ORANGE TEXT */

.slider-content h1 span{
    color:#ff7b00;
}

/* PARAGRAPH */

.slider-content p{
    font-size:28px;
    line-height:1.6;

    margin-bottom:35px;

    text-shadow:
    0px 0px 8px rgba(0,0,0,0.8),
    2px 2px 10px rgba(0,0,0,0.9);
}

/* BUTTON */

.slider-content .btn{
    display:inline-block;

    background:#ff7b00;
    color:#fff;

    padding:18px 42px;

    border-radius:8px;

    font-size:20px;
    font-weight:600;

    transition:0.3s ease;
}

.slider-content .btn:hover{
    background:#8a4522;
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width:1200px){

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

}

@media(max-width:991px){

.hero-slider{
    height:85vh;
}

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

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

}

@media(max-width:767px){

.hero-slider{
    height:75vh;

    background-position:center;
}

.slider-content{
    margin-left:5%;
    max-width:90%;
}

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

.slider-content p{
    font-size:17px;
    line-height:1.5;
}

.slider-content .btn{
    padding:14px 28px;
    font-size:16px;
}

}

/* =========================
PRODUCT BUTTONS
========================= */

.product-btns{
    display:flex;
    gap:12px;
    margin-top:25px;
    flex-wrap:wrap;
}

/* ENQUIRY BUTTON */

.enquiry-btn{
    background:#ff7b00;
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.enquiry-btn:hover{
    background:#0f5132;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    font-size:15px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#128C7E;
}

/* MOBILE */

@media(max-width:767px){

.product-btns{
    flex-direction:column;
}

.enquiry-btn,
.whatsapp-btn{
    width:100%;
    justify-content:center;
    text-align:center;
}

}
