* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f6f4;
    color: #222;
    direction: rtl;
}


/* =========================
   HEADER
========================= */

.site-header {
    background: #146b3a;
    color: white;
    text-align: center;
    padding: 22px 20px 18px;
}

.logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.site-header p {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}


/* =========================
   NAVIGATION
========================= */

nav {
    background: #0e4d2b;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    padding: 16px 20px;
    position: relative;
    z-index: 10;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
}

nav a:hover {
    color: #ffd54f;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 570px;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.58)
        ),
        url("factory.jpg");

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-content {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
}

.hero h2 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: clamp(18px, 2vw, 25px);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.main-btn,
.outline-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
}

.main-btn {
    background: #146b3a;
    color: white;
}

.main-btn:hover {
    background: #0e4d2b;
    transform: translateY(-2px);
}

.outline-btn {
    border: 2px solid white;
    color: white;
    background: rgba(255,255,255,0.05);
}

.outline-btn:hover {
    background: white;
    color: #146b3a;
}


/* =========================
   GENERAL SECTIONS
========================= */

.home-about,
.home-products,
.why-us {
    padding: 90px 8%;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-label {
    color: #146b3a;
    font-size: 17px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    color: #173d29;
    font-size: 38px;
    margin-bottom: 12px;
}

.section-title p {
    color: #666;
    font-size: 18px;
}


/* =========================
   ABOUT
========================= */

.home-about {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.home-about-text {
    max-width: 650px;
}

.home-about-text h2 {
    font-size: 40px;
    color: #173d29;
    margin-bottom: 20px;
}

.home-about-text p {
    font-size: 19px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.read-more {
    color: #146b3a;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
}

.home-about-box {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.stat {
    background: #f3f7f4;
    border: 1px solid #dce9e0;
    border-radius: 14px;
    min-width: 145px;
    padding: 28px 20px;
    text-align: center;
}

.stat strong {
    display: block;
    color: #146b3a;
    font-size: 25px;
    margin-bottom: 5px;
}

.stat span {
    color: #666;
    font-size: 16px;
}


/* =========================
   PRODUCTS
========================= */

.home-products {
    background: #f5f6f4;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 15px;
    background: white;
}

.card h3 {
    font-size: 21px;
    color: #173d29;
    padding: 15px 10px 5px;
}

.card p {
    color: #777;
    padding: 0 10px 20px;
    font-size: 16px;
}

.products-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 13px 30px;
    background: #146b3a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.products-btn:hover {
    background: #0e4d2b;
}


/* =========================
   WHY US
========================= */

.why-us {
    background: white;
}

.features {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: #f7f9f7;
    border: 1px solid #e1e9e3;
    border-radius: 14px;
    padding: 30px 22px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: #146b3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 25px;
}

.feature-card h3 {
    color: #173d29;
    font-size: 21px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}


/* =========================
   CTA
========================= */

.home-cta {
    background: #146b3a;
    color: white;
    text-align: center;
    padding: 75px 20px;
}

.home-cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.home-cta p {
    font-size: 19px;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #146b3a;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ffd54f;
    color: #173d29;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #0b3820;
    color: white;
    text-align: center;
    padding: 35px 20px;
    font-size: 16px;
    line-height: 2;
}

footer h3 {
    font-size: 24px;
    margin-bottom: 5px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .products-grid,
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-about {
        flex-direction: column;
        text-align: center;
    }

    .home-about-box {
        justify-content: center;
    }
}


@media (max-width: 600px) {

    .site-header {
        padding: 18px 15px;
    }

    .logo {
        width: 90px;
        height: 90px;
    }

    .site-header p {
        font-size: 18px;
    }

    nav {
        gap: 20px;
        padding: 13px 10px;
    }

    nav a {
        font-size: 15px;
    }

    .hero {
        min-height: 520px;
        padding: 40px 15px;
    }

    .hero h2 {
        font-size: 34px;
    }

    .hero p {
        font-size: 17px;
    }

    .home-about,
    .home-products,
    .why-us {
        padding: 60px 20px;
    }

    .section-title h2,
    .home-about-text h2 {
        font-size: 30px;
    }

    .products-grid,
    .features {
        grid-template-columns: 1fr;
    }

    .home-cta h2 {
        font-size: 29px;
    }
}
.site-header{
    background:#146b3a;
    color:white;
    text-align:center;
    padding:10px 20px 8px;
}

.site-header .logo{
    width:110px;
    height:110px;
    object-fit:contain;
    display:block;
    margin:0 auto 2px;
}

.site-header p{
    font-size:18px;
    font-weight:bold;
    margin:0;
}
/* =========================
   ORDER PAGE
========================= */

.order-page{
    min-height:700px;
    padding:80px 20px;
    background:#f5f6f4;
}

.order-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 45px;
}

.order-title span{
    color:#146b3a;
    font-weight:bold;
    font-size:17px;
}

.order-title h1{
    color:#173d29;
    font-size:40px;
    margin:10px 0 15px;
}

.order-title p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.order-box{
    max-width:750px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    color:#173d29;
    font-size:17px;
    font-weight:bold;
    margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    font-family:inherit;
    outline:none;
    background:#fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#146b3a;
}

.form-group textarea{
    resize:vertical;
}

.order-btn{
    width:100%;
    border:0;
    background:#146b3a;
    color:white;
    padding:16px;
    border-radius:8px;
    font-family:inherit;
    font-size:19px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.order-btn:hover{
    background:#0e4d2b;
    transform:translateY(-2px);
}


/* ORDER MOBILE */

@media(max-width:600px){

    .order-page{
        padding:55px 15px;
    }

    .order-title h1{
        font-size:29px;
    }

    .order-title p{
        font-size:16px;
    }

    .order-box{
        padding:25px 18px;
    }

}
