body{
    margin: 0;
    padding: 0;
}

.page-banner{
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background: #f6fff9;
     margin-top: 50px;   /* small clean gap from navbar */
}

.page-banner img{
    width: 95%;
    height: auto;
    display: block;

    border-radius: 12px;
    border: 4px solid #0b3d2e;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


/* ================= FORM SECTION ================= */

.seo-contact-form{
    padding:40px 20px;
    background:#fff;
    text-align:center;
}

.my-form-wrapper{
    max-width:800px;
    margin:auto;
}

.my-inline-form{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
    align-items:center;
}

.my-inline-form .form-control{
    flex:1;
    min-width:220px;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
}

.my-inline-form .btn{
    padding:12px 20px;
    background:#0d5c3f;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.my-inline-form .btn:hover{
    background:#083b28;
}

.form-message{
    margin-top:15px;
    color:red;
}

/* ================= B2B SECTION ================= */

.b2b-section{
    padding:60px 20px;
    background:#f4f6f8;
}

.b2b-container{
    max-width:1300px;
    margin:auto;
}

/* INTRO */

.b2b-intro{
    text-align:center;
    margin-bottom:40px;
}

.b2b-intro h2{
    font-size:32px;
    margin-bottom:20px;
    color:#0d2f1f;
}

.b2b-intro p{
    max-width:900px;
    margin:10px auto;
    line-height:1.7;
    color:#555;
}

/* GRID (4x4 RESPONSIVE) */

.b2b-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

/* CARD */

.b2b-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
    transition:0.3s;
}

.b2b-card:hover{
    transform:translateY(-5px);
}

/* IMAGE */
.b2b-banner{
    width:100%;
    height:180px;
    background:#f8f8f8;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

/* image becomes "visual cover", but controlled */
.b2b-banner img{
    width:1050px;
    max-width:100%;
    height:auto;
    display:block;
    margin:auto;
}



/* CONTENT */

.b2b-content{
    padding:18px;
}

.b2b-content h3{
    font-size:18px;
    margin-bottom:8px;
    color:#0d2f1f;
}

.b2b-content p{
    font-size:13px;
    color:#666;
    margin-bottom:12px;
    line-height:1.5;
}

/* DETAILS */

.b2b-item{
    font-size:13px;
    margin-bottom:6px;
    color:#333;
}

.b2b-item b{
    color:#111;
}

/* BUTTON */

.b2b-btn{
    display:inline-block;
    margin-top:12px;
    padding:10px 14px;
    background:#0d5c3f;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:13px;
}

.b2b-btn:hover{
    background:#083b28;
}

/* ================= RESPONSIVE ================= */

@media (max-width:1200px){
    .b2b-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width:900px){
    .b2b-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:600px){
    .b2b-grid{
        grid-template-columns:1fr;
    }

    .my-inline-form{
        flex-direction:column;
    }

    .my-inline-form .form-control{
        width:100%;
    }
}