/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    line-height:1.7;
    background:#fff;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(8px);
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    z-index:9999;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:26px;
    font-weight:700;
    color:#f39c12;
}

.logo img{
    width:90px;
    height:60px;
    object-fit:contain;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#f39c12;
}

/* ===========================
   HERO
=========================== */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:20px;
    color:#fff;
}

.hero h1{
    font-size:68px;
    margin-bottom:20px;
}

.hero p{
    font-size:24px;
    margin-bottom:35px;
}

/* ===========================
   BUTTON
=========================== */

.btn{
    display:inline-block;
    padding:16px 38px;
    background:#f39c12;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#d98200;
    transform:translateY(-3px);
}

/* ===========================
   SECTIONS
=========================== */

.section{
    padding:100px 8%;
}

.gray{
    background:#f7f7f7;
}

.container{
    max-width:1300px;
    margin:auto;
}

.section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.section p{
    font-size:17px;
    margin-bottom:18px;
}

/* ===========================
   GENERAL CARDS
=========================== */

.cards{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}

.card{
    flex:1;
    min-width:280px;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.card h3{
    color:#f39c12;
    margin-bottom:15px;
}

/* ===========================
   PRODUCTS
=========================== */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.product-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.product-card h3{
    color:#f39c12;
    margin:20px 15px 10px;
}

.product-card p{
    padding:0 20px 25px;
    font-size:16px;
}

/* ===========================
   CONTACT
=========================== */

.contact-box{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:45px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.contact-box h3{
    color:#f39c12;
    margin-bottom:20px;
}

.contact-box p{
    margin-bottom:15px;
    font-size:18px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:30px;
}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#f39c12;
    border-radius:10px;
}

::-webkit-scrollbar-track{
    background:#eee;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1200px){

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:992px){

.hero h1{
    font-size:50px;
}

.hero p{
    font-size:20px;
}

}

@media(max-width:768px){

.navbar{
    flex-direction:column;
    gap:18px;
    padding:15px;
}

.nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.hero h1{
    font-size:38px;
}

.hero p{
    font-size:18px;
}

.section{
    padding:80px 6%;
}

.section h2{
    font-size:34px;
}

.contact-box{
    padding:30px;
}

.logo img{
    width:45px;
    height:45px;
}

.logo{
    font-size:22px;
}

.cards{
    flex-direction:column;
}

.product-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:500px){

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:16px;
}

.btn{
    padding:14px 28px;
}

.section h2{
    font-size:30px;
}

}