html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    overflow-x:hidden;
}

/* HEADER */

header{
    background:#111;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:white;
    position:sticky;
    top:0;
    z-index:1000;
}
/* NAVIGATION */

nav ul{
    display:flex;
    list-style:none;
    align-items:center;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    text-decoration:none;
    color:white;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:gold;
}

/* MOBILE MENU */

@media(max-width:900px){

    nav ul{
        margin-top:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    nav ul li{
        margin:8px 12px;
    }

    nav ul li a{
        font-size:16px;
    }
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:50%;
    background:white;
    padding:5px;
}

.logo h2{
    font-size:30px;
    color:white;
    font-weight:bold;
}

.topBtn{
    position:fixed;
    bottom:20px;
    left:20px;
    background:gold;
    color:black;
    border:none;
    padding:15px 20px;
    font-size:22px;
    border-radius:50%;
    cursor:pointer;
    z-index:999;
}

/* HERO SLIDER */

.hero-slider{
    width:100%;
    height:90vh;
    position:relative;
    overflow:hidden;
}

.slides{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(45%);
}

/* CENTER TEXT */

.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    width:100%;
    max-width:900px;
    padding:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    animation:fadeUp 1s ease;
}

.slide-content h1{
    font-size:65px;
    margin-bottom:20px;
    font-weight:bold;
}

.slide-content p{
    font-size:24px;
    margin-bottom:25px;
}

@keyframes fadeUp{
    0%{
        opacity:0;
        transform:translate(-50%,-40%);
    }

    100%{
        opacity:1;
        transform:translate(-50%,-50%);
    }
}

/* BUTTON */

.btn{
    display:inline-block;
    padding:14px 35px;
    background:gold;
    color:black;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
    transition:0.3s;
}

.btn:hover{
    background:#111;
    color:white;
}

/* PAGE BANNER */

.page-banner{
    background:#222;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.page-banner h1{
    font-size:50px;
}

/* COMPANY DETAILS */

.company-details{
    padding:80px 8%;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    background:white;
}

.detail-box{
    background:#fff;
    width:220px;
    padding:40px 20px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.1);
    transition:0.4s;
}

.detail-box:hover{
    transform:translateY(-12px);
    background:#111;
    color:white;
}

.detail-box i{
    font-size:45px;
    color:gold;
    margin-bottom:20px;
}

.detail-box h2{
    font-size:40px;
    margin-bottom:10px;
}

.detail-box p{
    font-size:18px;
}

/* ABOUT */

.home-about{
    padding:80px 8%;
    display:flex;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:42px;
    margin-bottom:20px;
}

.about-text p{
    font-size:18px;
    line-height:1.8;
    color:#444;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
    transition:0.4s;
}

.about-image img:hover{
    transform:scale(1.03);
}

/* VIDEO SECTION */

.video-section{
    padding:60px 8%;
    text-align:center;
    background:#f5f5f5;
}

.video-section h2{
    font-size:35px;
    margin-bottom:40px; /* 350px ऐवजी 40px */
    color:#111;
}

.video-section video{
    width:45%;
    max-width:450px;
    height:auto;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.3);
}

.video-section video:hover{
    transform:scale(1.02);
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .video-section video{
        width:95%;
    }

    .video-section h2{
        font-size:28px; /* 28% ऐवजी 28px */
    }

}

/* =========================
   PRODUCT SLIDER
========================= */

/* Product Buttons */

.card-content{
    text-align:center;
    padding:15px;
}

.btn{
    display:inline-block;
    margin:5px;
    padding:10px 18px;
    background:#1d1612;
    color:#fff;
    text-decoration:none;
    border:none;
    border-radius:5px;
    font-size:14px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-2px);
    background:#0c0b0b;
}

.whatsapp-btn{
    background:#25D366;
}

.whatsapp-btn:hover{
    background:#1ea952;
}

/* Product Slider */

.product-slider{
    padding:80px 8%;
    background:#fff;
    text-align:center;
}

.product-slider h2{
    font-size:42px;
    margin-bottom:40px;
    color:#111;
}

.slider-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    position:relative;
}

#sliderImage{
    width:100%;
    max-width:750px;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.25);
    transition:0.4s;
}

#sliderImage:hover{
    transform:scale(1.02);
}

/* Slider Buttons */

.slide-btn{
    width:65px;
    height:65px;
    border:none;
    background:gold;
    color:black;
    font-size:32px;
    font-weight:bold;
    border-radius:50%;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.slide-btn:hover{
    background:#111;
    color:white;
    transform:scale(1.1);
}

/* Dropdown */

.dropdown{
    position:relative;
    display:inline-block;
    margin-top:10px;
}

.dropdown-content{
    display:none;
    position:absolute;
    background:#fff;
    min-width:160px;
    box-shadow:0 4px 8px rgba(0,0,0,0.2);
    border-radius:5px;
    z-index:1;
}

.dropdown-content a{
    color:black;
    padding:12px;
    text-decoration:none;
    display:block;
}

.dropdown-content a:hover{
    background:#f1f1f1;
}

.dropdown:hover .dropdown-content{
    display:block;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .product-slider{
        padding:50px 5%;
    }

    .product-slider h2{
        font-size:28px;
        margin-bottom:25px;
    }

    .slider-box{
        gap:10px;
    }

    #sliderImage{
        max-width:100%;
        height:250px;
        border-radius:15px;
    }

    .slide-btn{
        width:45px;
        height:45px;
        font-size:22px;
    }
}
/*/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:992px){

    #sliderImage{
        height:350px;
    }

}

/* BUTTON */

.btn{
    display:inline-block;
    margin-top:10px;
    padding:10px 20px;
    background:#0a0501;
    color:white;
    text-decoration:none;
    border-radius:25px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#927f12;
}

/* =========================
   AUTO SLIDE ANIMATION
========================= */

@keyframes sliderFade{

    0%{
        opacity:0.7;
    }

    100%{
        opacity:1;
    }

}

#sliderImage{
    animation:sliderFade 1s ease;
}

/* PRODUCTS */

.products-preview{
    padding:80px 8%;
}

.products-preview h2{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    z-index:9999;
}

.whatsapp-btn i{
    color:#ffffff !important;
    font-size:35px;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
    transition:0.3s;
}

/* PRODUCT CARDS */

.card{
    background:#fff;
    border:2px solid #e5e5e5;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:15px;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    flex-grow:1;
}

.card-content h3{
    min-height:80px;
    font-size:18px;
    color:#333;
    margin-bottom:15px;
    line-height:1.5;
}

.btn{
    display:inline-block;
    padding:15px 18px;
    background:#181310;
    color:#fff;
    text-decoration:none;
    border-radius:25px;
    font-weight:bold;
    margin-top:auto;
}

.btn:hover{
    background:#2b1703;
}
/* GALLERY */

.gallery{
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.imgbox{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.imgbox img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.4s;
}

.imgbox img:hover{
    transform:scale(1.08);
}

/* CONTENT */

.content{
    padding:80px 8%;
    line-height:2;
    font-size:18px;
}

.content h2{
    margin-top:20px;
    margin-bottom:15px;
    font-size:35px;
}

/* CONTACT */

.contact-section{
    padding:80px 8%;
}

.contact-container{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.contact-form,
.contact-info{
    flex:1;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.contact-form h2,
.contact-info h2{
    margin-bottom:25px;
    font-size:35px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:16px;
}

.contact-form textarea{
    height:150px;
    resize:none;
}

.contact-form button{
    width:100%;
    padding:15px;
    background:gold;
    border:none;
    font-size:18px;
    font-weight:bold;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#111;
    color:white;
}

.contact-info{
    background:#111;
    color:white;
}

.contact-info p{
    margin-bottom:20px;
    font-size:18px;
}

.contact-info iframe{
    width:100%;
    height:250px;
    border:none;
    border-radius:10px;
}

/* FOOTER */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:50px;
}

/* ANIMATION */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */

@media(max-width:900px){

    header{
        flex-direction:column;
    }

    nav ul{
        margin-top:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .slide-content h1{
        font-size:38px;
    }

    .slide-content p{
        font-size:18px;
    }

    .page-banner h1{
        font-size:35px;
    }

    .home-about{
        flex-direction:column;
    }

    .contact-container{
        flex-direction:column;
    }

    .products-preview{
        padding:80px 8%;
    }

    .product-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
        gap:30px;
    }

    .card{
        background:white;
        border-radius:15px;
        overflow:hidden;
        box-shadow:0 5px 20px rgba(0,0,0,0.15);
        transition:0.4s;
    }

    .card:hover{
        transform:translateY(-10px);
    }

    .card img{
        width:100%;
        height:250px;
        object-fit:cover;
        display:block;
        transition:0.4s;
    }

    .card img:hover{
        transform:scale(1.05);
    }

    .card-content{
        padding:25px;
    }

    .card-content h3{
        font-size:24px;
        margin-bottom:12px;
    }

    .card-content p{
        font-size:17px;
        line-height:1.7;
        color:#555;
    }

    .gallery{
        padding:80px 8%;
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
        gap:25px;
        background:#f5f5f5;
    }

    .imgbox{
        width:100%;
        height:250px;
        overflow:hidden;
        border-radius:15px;
        background:white;
        box-shadow:0 5px 20px rgba(0,0,0,0.15);
        transition:0.4s;
    }

    .imgbox:hover{
        transform:translateY(-10px);
    }

    .imgbox img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
        transition:0.4s;
    }

    .imgbox img:hover{
        transform:scale(1.1);
    }
}/* WHATSAPP BUTTON */

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:1000;
    animation:float 2s ease-in-out infinite;
}

.social-icons{
    text-align:center;
    padding:20px;
}

.social-icons a{
    margin:10px;
    text-decoration:none;
    font-size:20px;
    color:#111;
    font-weight:bold;
}

/* =========================
   FAQ
========================= */

.faq{
    padding:80px 8%;
    background:#fff;
}

.faq-box{
    background:#f8f8f8;
    padding:25px;
    margin-top:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* =========================
   REVIEWS
========================= */

.reviews{
    padding:80px 8%;
    text-align:center;
    background:#fff;
}

.reviews h2{
    font-size:40px;
    margin-bottom:40px;
}

.review-box{
    background:#f8f8f8;
    padding:30px;
    margin:20px auto;
    max-width:700px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-btn{
    position:fixed;
    bottom:90px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    font-size:32px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    z-index:999;
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
    background:#1ebe5d;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111;
    color:white;
    padding:50px 20px;
    text-align:center;
    margin-top:50px;
}

.footer-content h2{
    font-size:35px;
    margin-bottom:15px;
    color:gold;
}

.footer-content p{
    font-size:18px;
    margin-bottom:20px;
}

.social-icons a{
    display:inline-block;
    width:45px;
    height:45px;
    line-height:45px;
    background:#222;
    color:white;
    border-radius:50%;
    margin:10px;
    transition:0.4s;
    font-size:18px;
}

.social-icons a:hover{
    background:gold;
    color:black;
    transform:translateY(-5px);
}

.copyright{
    margin-top:20px;
    font-size:16px;
}

/* =========================
   FLOAT ANIMATION
========================= */

@keyframes float{
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }
}
