.hero{

    position:relative;
    background:url("../images/hero/hero.jpeg") center center/cover no-repeat;
    min-height:680px;
    display:flex;
    align-items:center;

}

.hero-wrapper{

    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:70px;
    align-items:center;

}

.hero h1{

    font-size:62px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;

}

.hero-form{

    background:white;
    border-radius:30px;
    padding:32px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);

}
.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(17,34,28,.72);

}

.hero-content{

    color:white;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.12);

    padding:12px 24px;

    border-radius:50px;

    margin-bottom:30px;

    font-weight:600;

}

.hero h1 span{

    color:#D4A547;

}

.hero p{

    font-size:20px;

    max-width:650px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.4);

    color:var(--white);

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:rgba(255,255,255,.12);

    transform:translateY(-3px);

}

.hero-stats{

    display:flex;

    gap:30px;

}

.stat{

    background:rgba(255,255,255,.08);

    padding:16px 24px;

    border-radius:18px;

    backdrop-filter:blur(6px);

}

.stat h3{

    font-size:40px;

}

.hero-form h2{

    font-size:32px;

    margin-bottom:8px;

}

.hero-form p{

    color:#777;

    margin-bottom:30px;

}

.hero-form input,
.hero-form select,
.hero-form textarea{

    width:100%;

    padding:16px;

    margin-bottom:18px;

    border:1px solid #ddd;

    border-radius:15px;

    font-family:Poppins;

    transition: var(--transition);

}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus{

    outline:none;

    border-color:var(--secondary);

    box-shadow:0 0 0 4px rgba(212,165,71,.15);

}

.submit-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    background:#173F2C;

    color:white;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition: var(--transition);

}

.submit-btn:hover{

    background:#1E5439;

    transform:translateY(-3px);

}
/* ===========================
   CATEGORIES
=========================== */

.categories{

    background:#fff;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#D4A547;

    font-weight:700;

    letter-spacing:1px;

}

.section-title h2{

    font: size 28px;

    margin:10px 0;

    color:#111;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.category-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.category-card:hover{

    transform:translateY(-12px);

}

.category-card img{

    width:100%;
    height:350px;
    object-fit:cover;
    transition: var(--transition);

}
.category-card:hover img{

    transform:scale(1.06);

}
.category-content{

    padding:28px;

}

.category-content h3{

    font-size:24px;

    margin-bottom:12px;

}

.category-content p{

    color:#666;

    margin-bottom:22px;

    line-height:1.7;

}

.category-content a{

    color:#173F2C;

    font-weight:700;

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

.about-company{

    background:#fff;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;

}

.experience-box{

    position:absolute;

    right:-20px;

    bottom:40px;

    background:white;

    padding:30px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    text-align:center;

}

.experience-box h2{

    font-size:54px;

    color:#173F2C;

}

.about-content span{

    color:#D4A547;

    font-weight:700;

}

.about-content h2{

    font-size:54px;

    margin:15px 0 25px;

}

.about-content p{

    color:#666;

    margin-bottom:25px;

    line-height:1.9;

}

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin:40px 0;

}

.feature{

    background:#F8F6F2;

    padding:18px;

    border-radius:15px;

    font-weight:600;

}
/*============================
STATS
=============================*/

.stats-strip{

    background:#fff;
    padding:70px 0 0;
    margin-bottom:-70px;
    position:relative;
    z-index:10;

}
.stats-wrapper{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
    border-radius:30px;
    background:#173F2C;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.single-stat{

    text-align:center;
    padding:45px 20px;
    color:white;
    border-right:1px solid rgba(255,255,255,.08);

}

.single-stat:last-child{

    border-right:none;

}

.single-stat i{

    font-size:42px;
    color:#D4A547;
    margin-bottom:18px;

}

.single-stat h2{

    font-size:52px;
    margin-bottom:8px;

}

.single-stat p{

    font-size:18px;
}



/*============================
WHY US
=============================*/

.why-us{

    background:#173F2C;
    padding-top:150px;

}

.why-us .section-title h2{

    color:white;

}

.why-us .section-title p{

    color:#ddd;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.why-card{

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    color:white;
    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    background:#214B36;

}

.why-card i{

    width:90px;
    height:90px;
    background:#D4A547;
    color:#111;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:34px;
    margin-bottom:25px;

}

.why-card h3{

    font-size:24px;
    margin-bottom:18px;

}

.why-card p{

    color:#ddd;
    line-height:1.8;

}
/*==============================
FEATURED PRODUCTS
===============================*/

.featured-products{

    background:#ffffff;

}

.product-grid{

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

}

.product-card{

    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;

}

.product-card:hover{

    transform:translateY(-10px);

}

.category-card img{

    width:100%;
    height:350px;
    object-fit:cover;
    transition: var(--transition);

}
.product-card img{

    height:340px;
    object-fit:cover;
    transition:var(--transition);

}

.product-content{

    padding:25px;

}

.product-content h3{

    font-size:28px;
    margin-bottom:12px;

}

.product-content p{

    color:#666;
    margin-bottom:25px;

}

.product-content .btn-primary{

    width:100%;

}

.view-products{

    margin-top:60px;
    text-align:center;

}
/*=========================
TESTIMONIALS
=========================*/

.testimonials{

    background:#ffffff;

}

.testimonial-grid{

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

}

.testimonial-card{

    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.stars{

    color:#D4A547;
    font-size:24px;
    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;
    line-height:1.8;
    margin-bottom:25px;

}

.testimonial-card h4{

    font-size:22px;
    margin-bottom:5px;

}

.testimonial-card span{

    color:#777;

}
/*=========================
CTA
=========================*/

.cta-section{

    background:#123D72;
    color:white;
    text-align:center;

}

.cta-wrapper{

    padding:30px 0;

}

.cta-wrapper h2{

    font-size:48px;
    margin-bottom:20px;

}

.cta-wrapper p{

    font-size:20px;
    margin-bottom:35px;

}