.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    padding: 4px 5px;
}

.hero-section::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    opacity: 0.6;
}

.hero-section .hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.hero-content h1, p {
    color: white;
}

.product-card {
    width: 100%;
    border: 1px solid #0d401c;
    border-radius: 8px;
    overflow: hidden;
}

.product-img-new {
    width: 100% !important;
    height: 300px !important;
    border-radius: 8px;
    overflow: hidden;
}

.product-img-new img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.product-card-body h4 {
    color: #0d401c;
}


.sample-form-section{
    background:#f6f8f5;
}

.sample-form-card{
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:6px solid #0d401c;
}

.form-header h2{
    color:#0d401c;
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
}

.form-header p{
    color:#666;
    line-height:1.8;
    margin-bottom:40px;
}

.form-label{
    font-weight:600;
    color:#0d401c;
    margin-bottom:10px;
}

.form-label i{
    margin-right:8px;
}

.form-control{
    border:1px solid #d9d9d9;
    border-radius:12px;
    height:55px;
    padding:12px 18px;
    transition:.3s;
    box-shadow:none;
}

textarea.form-control{
    height:auto;
    resize:vertical;
}

.form-control:focus{
    border-color:#0d401c;
    box-shadow:0 0 0 .2rem rgba(13,64,28,.15);
}

.quantity-options{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
    margin-top:15px;
}

.radio-box{
    border:1px solid #dfe5df;
    border-radius:12px;
    padding:18px;
    cursor:pointer;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
}

.radio-box:hover{
    border-color:#0d401c;
    background:#f7fbf8;
}

.radio-box input{
    width:18px;
    height:18px;
    accent-color:#0d401c;
}

.submit-btn{
    background:#0d401c;
    color:#fff;
    padding:14px 45px;
    border-radius:50px;
    font-weight:600;
    font-size:17px;
    transition:.35s;
    border:none;
}

.submit-btn:hover{
    background:#145827;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(13,64,28,.25);
}

@media(max-width:768px){

.sample-form-card{
    padding:30px 20px;
}

.form-header h2{
    font-size:28px;
}

.quantity-options{
    grid-template-columns:1fr;
}

.submit-btn{
    width:100%;
}

}