/* ================= RESET ================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
color:#222;
background:#ffffff;
}

/* ================= HEADER ================= */

header{
    
display:flex;
justify-content:space-between;
align-items:center;

padding:0px 120px;

background:rgb(1, 31, 6);

box-shadow:0 2px 15px rgba(1, 26, 9, 0);

}

.logo img{
width:100px;
height: 100px;
margin-top: 15px;
margin-bottom: 15px;

}

.navbar ul{

display:flex;
justify-content:space-around;
gap:60px;
margin-right: 20px;

list-style:none;

}

.navbar a{
text-decoration:none;
color:#ffffff;
font-size: medium;
font-weight:1000;

transition:0.3s;

}

.navbar a:hover{
color:#0f9b34;
}

/* =============== HERO ================= */

.hero-section{

    min-height:85vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:
    linear-gradient(
        rgba(255,255,255,0.65),
        rgba(255,255,255,0.65)
    ),
    url("../images/homebg2.jpeg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
}

.subtitle{

    font-size:1.5rem;

    color:#0c7c59;

    font-weight:600;

    margin-bottom:25px;
}

.hero-section h1{

font-size:4rem;
font-family: 'Arial Black', sans-serif;
margin-bottom:20px;

color:#000000;

}

.hero-section p{

max-width:900px;

font-size:1.2rem;

line-height:1.8;

color:#181818;

margin-bottom:35px;

}

/* ================= BUTTON ================= */

button{

border:none;

border-radius:50px;

    color:#ffffff;
padding:15px 35px;

background:#0c7c59;

cursor:pointer;

transition:0.3s;

box-shadow: 0 8px 20px rgba(12,124,89,0.25);

}

button:hover{

transform:translateY(-3px);

background:#095d43;

}

button a{

text-decoration:none;

color:white !important;

font-weight:bold;

}

/* ================= FOOTER ================= */

footer{

text-align:center;

padding:30px;

background:#111;

color:white;

}

footer p{

margin:8px 0;

}

/* ================= ABOUT PAGE ================= */


.about-section{

    padding:60px 120px 20px;
    gap: 40px;
    background:#f8f9fa;
}

.about{

    max-width:700px;
}

.about h1{

    font-size:3rem;

    color:#000000;

    margin-bottom:25px;

    font-weight:800;
}

.about p{

    font-size:1.15rem;

    line-height:1.9;

    color:#444;
}

/* ================= MISSION VISION ================= */

.vision-mission{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

    padding:0 120px 60px;
}

.card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.08);

    transition:0.3s;
}

.card:hover{

    transform:translateY(-5px);
}

.card img{

    width:60px;

    height:60px;

    margin-bottom:15px;
}

.card h2{

    color:#0c7c59;

    font-size:2rem;

    margin-bottom:15px;
}

.card p{

    line-height:1.8;

    color:#444;
}

/* ================= SERVICES ================= */

.services{

    background:white;

    

    border-radius:20px;

    
}

.services li{

    margin:15px 0;

    font-size:1.1rem;

    list-style:none;
}

.services li::before{

    content:"✓";

    color:#0c7c59;

    font-weight:bold;

    margin-right:12px;
}

/* ================= WHY CHOOSE US ================= */

.why-services{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

    padding:30px 120px;
}

.why{

    background:white;


    margin-bottom: auto;

    border-radius:20px;

    
}

.why li{

    margin:15px 0;

    font-size:1.1rem;

    list-style:none;
}

.why li::before{

    content:"✓";

    color:#0c7c59;

    font-weight:bold;

    margin-right:12px;
}

/* ================= HEADINGS ================= */

main > h2{

    margin-left:120px;

    margin-top:50px;

    color:#0c7c59;

    font-size:2.2rem;
}

/* ================= CTA BUTTON ================= */

main > button{

    display:block;

    margin:60px auto;
}

/* ================= PRODUCTS PAGE ================= */

.products{

    padding:80px 120px;

    background:#f8f9fa;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

.products-section{

    grid-column:1/-1;

    text-align:center;

    margin-bottom:20px;
}

.products-section h1{

    
    font-size:3rem;

    color:#000000;

    margin-bottom:25px;

    font-weight:800;
}

.pcard{

    background:white;

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    transition:0.3s;
}

.pcard:hover{

    transform:translateY(-8px);

    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.pcard img{

    width:100%;

    height:220px;

    object-fit:contain;

    margin-bottom:20px;
}

.pcard h2{

    font-size:1.2rem;

    min-height:70px;

    margin-bottom:20px;

    color:#222;
}

.pcard button{

    margin-top:auto;
}

/* ================= CONTACT PAGE ================= */
/* ================= CONTACT PAGE ================= */

.contact-page{

    padding:40px 80px;

    background:#f8f9fa;

    text-align:center;

    min-height:60vh;
}

.contact-page h1{

    margin-bottom:10px;
    font-size:3rem;

    color:#000000;


    font-weight:800;
}

.contact-subtitle{

    color:#666;

    margin-bottom:35px;

    font-size:1rem;
}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

    max-width:1000px;

    margin:auto;
}

.contact-card{

    background:white;

    padding:30px;

    border-radius:18px;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    transition:0.3s;
}

.contact-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.contact-card h2{

    color:#043224;

    margin-bottom:20px;

    font-size:1.5rem;
}

.contact-card p{

    color:#333;

    line-height:1.7;

    margin-bottom:15px;
}

.contact-card a{

    color:#0c7c59;

    text-decoration:none;

    font-weight:600;

    font-size:1.05rem;
}

.contact-card a:hover{

    text-decoration:underline;
}

/* ================= ADDRESS CARD ================= */

.address-card{

    grid-column:1 / -1;

    text-align:left;
}

.address-card h2{

    text-align:center;

    margin-bottom:25px;
}

.address-card p{

    margin-bottom:25px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .contact-page{

        padding:30px 20px;
    }

    .contact-grid{

        grid-template-columns:1fr;
    }

    .address-card{

        grid-column:auto;
}
}

/* ================= PRODUCT DETAIL PAGES ================= */

.product-detail-wrapper{

    background:#f0f2f5;

    min-height:100vh;

    padding:60px 40px;
}

.product-container{

    max-width:1400px;

    margin:0 auto;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,0.12);

    border:2px solid #0c7c59;
}

.product-header{

    background:#0c7c59;

    color:white;

    padding:50px 60px;

    text-align:center;

    border-bottom:3px solid #0c7c59;
}

.product-header h1{

    font-size:2.8rem;

    margin-bottom:0;

    font-weight:900;

    letter-spacing:0.3px;
}

.product-body{

    display:grid;

    grid-template-columns:minmax(280px, 420px) minmax(0, 1fr);

    grid-template-rows:auto auto auto;

    gap:50px;

    padding:60px 70px;

    align-items:start;
}

.product-image-section{

    display:flex;

    justify-content:center;

    align-items:center;

    align-self:start;

    background:#f8fafb;

    padding:40px;

    border-radius:15px;

    border:3px solid #0c7c59;

    grid-row:1 / 3;

    grid-column:1;
}

.product-image-section img{

    width:100%;

    max-width:450px;

    height:auto;

    border-radius:15px;

    box-shadow:0 10px 35px rgba(12, 124, 89, 0.3);

    transition:0.3s;

    filter:drop-shadow(5px 5px 10px rgba(0,0,0,0.15));
}

.product-image-section img:hover{

    transform:scale(1.05);

    box-shadow:0 15px 45px rgba(12, 124, 89, 0.4);
}

.product-content-section{

    display:contents;
}

.product-content-section h2:first-of-type{

    grid-row:1;

    grid-column:2;

    margin-top:0;
}

.product-content-section p{

    grid-row:1;

    grid-column:2;

    color:#555;

    line-height:2;

    margin-bottom:25px;

    text-align:justify;

    font-size:1.05rem;

    background:#f5f8fa;

    padding:20px;

    border-left:4px solid #0c7c59;

    border-radius:8px;
}

.product-content-section h2{

    color:#0c7c59;

    font-size:1.8rem;

    margin-bottom:20px;

    margin-top:35px;

    font-weight:700;

    border-bottom:2px solid #0c7c59;

    padding-bottom:12px;

    display:block;
}

.product-content-section h2:nth-of-type(2){

    grid-row:2;

    grid-column:1 / -1;

    margin-top:20px;
}

.product-content-section ul{

    list-style:none;

    margin-bottom:35px;

    padding:0;

    background:#f5f8fa;

    padding:25px;

    border-radius:10px;

    border-left:5px solid #0c7c59;

    column-count:2;

    column-gap:30px;

    grid-row:2;

    grid-column:1 / -1;
}

.product-content-section li{

    color:#333;

    line-height:2;

    margin-bottom:12px;

    padding-left:30px;

    position:relative;

    font-size:0.98rem;

    font-weight:500;

    transition:0.2s;

    break-inside:avoid;
}

.product-content-section li:hover{

    color:#0c7c59;

    padding-left:35px;
}

.product-content-section li::before{

    content:"●";

    color:#0c7c59;

    font-weight:bold;

    position:absolute;

    left:0;

    font-size:1.2rem;

    line-height:1;
}

.cta-button{

    display:inline-block;

    margin-top:30px;

    grid-column:1 / -1;

    grid-row:3;
}

.cta-button button{
    color:#ffffff;
    padding:18px 50px;
    font-size:1.1rem;
    font-weight:700;
    box-shadow:0 8px 25px rgba(12,124,89,0.3);
}

.cta-button button:hover{

    box-shadow:0 12px 35px rgba(12,124,89,0.5);

    background:#073a2d;
    color:#ffffff;
}

/* ================= RESPONSIVE PRODUCT DETAIL ================= */

@media(max-width:1024px){

    .product-detail-wrapper{

        padding:40px 30px;
    }

    .product-body{

        gap:40px;

        padding:50px;
    }

    .product-image-section{

        min-height:400px;
    }

    .product-image-section img{

        max-width:350px;
    }
}

@media(max-width:768px){

    .product-detail-wrapper{

        padding:20px 15px;
    }

    .product-body{

        grid-template-columns:1fr;

        grid-template-rows:auto auto auto auto;

        padding:30px 25px;

        gap:30px;
    }

    .product-header h1{

        font-size:2rem;
    }

    .product-header{

        padding:35px 25px;
    }

    .product-image-section{

        grid-row:1;

        grid-column:1;

        min-height:350px;

        margin-bottom:20px;
    }

    .product-image-section img{

        max-width:300px;
    }

    .product-content-section h2:first-of-type{

        grid-row:2;

        grid-column:1;
    }

    .product-content-section p{

        grid-row:2;

        grid-column:1;

        font-size:0.95rem;

        line-height:1.8;
    }

    .product-content-section h2{

        font-size:1.4rem;
    }

    .product-content-section ul{

        grid-row:3;

        grid-column:1;

        column-count:1;
    }

    .product-content-section li{

        font-size:0.95rem;

        line-height:1.7;

        margin-bottom:10px;
    }

    .cta-button{

        grid-row:4;

        grid-column:1;
    }

    .cta-button button{
        color:#ffffff;
        padding:18px 50px;
        font-size:1.1rem;
        font-weight:700;
        box-shadow:0 8px 25px rgba(12,124,89,0.3);
}


}
/* ================= MOBILE ================= */

@media (max-width:768px){

    header{

        flex-direction:column;

        padding:20px;
    }

    .navbar ul{

        gap:20px;

        flex-wrap:wrap;

        justify-content:center;

        margin-right:0;
    }

    .hero-section{

        padding:40px 20px;
    }

    .hero-section h1{

        font-size:2.3rem;
    }

    .subtitle{

        font-size:1.1rem;
    }

    .hero-section p{

        font-size:1rem;

        padding:0 10px;
    }

    .about-section{

        padding:40px 20px;
    }

    .vision-mission{

        grid-template-columns:1fr;

        padding:20px;
    }

    .why-services{

        grid-template-columns:1fr;

        padding:20px;
    }

    .products{

        grid-template-columns:1fr;

        padding:30px 20px;
    }

    .products-section h1{

        font-size:2.5rem;
    }

    .contact-page{

        padding:30px 20px;
    }

    .contact-grid{

        grid-template-columns:1fr;
    }

    .address-card{

        grid-column:auto;
    }

    footer{

        padding:20px;
    }
}

@media (max-width:768px){

    .product-body{

        flex-direction:column;

        padding:20px;
    }

    .product-image-section{

        width:100%;

        min-height:auto;

        padding:20px;
    }

    .product-image-section img{

        width:100%;

        max-width:500px;

        margin:auto;

        display:block;
    }

    .product-content-section{

        width:100%;
    }

    .product-content-section ul{

        column-count:1;
    }

    .cta-button{

        display:block;

        text-align:center;
    }

    .cta-button button{

        width:100%;

        max-width:300px;
    }
}