*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Arial,sans-serif;background:#f5f6f8;color:#1b2430;line-height:1.6}

.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.hero h1{font-size: 41px;line-height:1.05;font-weight:800;margin:16px 0}
.eyebrow{color:#ef7d22;font-weight:700;letter-spacing:.08em}
.btn{display:inline-block;padding:14px 26px;border-radius:8px;text-decoration:none;margin-right:12px}
.primary{background:#f58220;color:#fff}
.secondary{border:1px solid #d9d9d9;color:#222}
.hero-image img{width:100%;border-radius:12px;background:#eee}
.card{background:#fff;border-radius:14px;padding:36px;box-shadow:0 2px 8px rgba(0,0,0,.06)}
/*==========================
FEATURE SECTION
===========================*/

.features-section{
    padding:40px 0;
    background:#f3f4f6;
}
.lea{
    margin-top: 40px;
}

.section-heading{
    font-size:30px;
    font-weight:800;
    margin-bottom:35px;
    color:#17212f;
}

.feature-grid{

    display:grid;

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

    gap:18px;

}

.feature-card{

    background:#fff;

    border-radius:10px;

    padding:18px 24px;

    font-size:17px;

    color:#444;

    box-shadow:0 1px 3px rgba(0,0,0,.08);

    border-left:4px solid #ff7a00;

}



/*==========================
SPECIFICATION
===========================*/

.specification-section{

    padding-bottom:40px;

    background:#f3f4f6;

}

.spec-card{

    background:#101d2f;

    border-radius:18px;

    padding:50px;

}

.spec-card h2{

    color:#fff;

    font-size:30px;

    margin-bottom:40px;

    font-weight:800;

}

.spec-grid{

    display:grid;

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

    column-gap:40px;

}

.spec-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:22px 0;

}

.spec-item span{

    color:#ff8a00;

    font-weight:700;

    font-size:16px;

}

.spec-item p{

    color:#fff;

    font-size:16px;

    text-align:right;

}

/*=========================
APPLICATIONS
=========================*/

.applications-section{
    background:#f4f5f7;
    padding:70px 0 40px;
}

.section-title{
    font-size:30px;
    font-weight:800;
    color:#17212f;
    margin-bottom:10px;
}

.section-subtitle{
    color:#666;
    font-size:17px;
    margin-bottom:35px;
    max-width:760px;
}

.applications-grid{

    display:grid;

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

    gap:18px;

}

.app-card{

    background:#fff;

    border:1px solid #e8e8e8;

    border-radius:10px;

    padding:22px;

    transition:.3s;

}

.app-card:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.app-card h4{

    font-size:19px;

    margin-bottom:10px;

    font-weight:700;

    color:#1d2430;

}

.app-card p{

    color:#666;

    font-size:15px;

}



/*=========================
BENEFITS
=========================*/

.benefits-section{

    padding:40px 0;

    background:#f4f5f7;

}

.benefits-box{

    background:#fff;

    border-radius:16px;

    padding:50px;

    box-shadow:0 3px 10px rgba(0,0,0,.05);

}

.benefits-box h2{

    font-size:30px;

    margin-bottom:45px;

    color:#17212f;

    font-weight:800;

}

.benefits-grid{

    display:grid;

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

    gap:40px;

}

.benefit h4{

    font-size:21px;

    margin-bottom:10px;

    color:#1d2430;

    font-weight:700;

}

.benefit p{

    color:#666;

    font-size:16px;

    line-height:1.8;

}

/*==========================
COMMON
==========================*/

.two-column{

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;

margin-bottom:40px;

}

.white-card{

background:#fff;

border:1px solid #e8e8e8;

border-radius:14px;

padding:38px;

box-shadow:0 2px 10px rgba(0,0,0,.04);

}

.white-card h2{

font-size:24px;

font-weight:800;

margin-bottom:25px;

color:#17212f;

}

/*==========================
LIST
==========================*/

.tick-list{

list-style:none;

padding:0;

margin:0;

}

.tick-list li{

position:relative;

padding-left:22px;

margin-bottom:18px;

font-size:16px;

color:#555;

line-height:1.7;

}

.tick-list li::before{

content:"›";

position:absolute;

left:0;

top:0;

color:#ff7a00;

font-weight:bold;

font-size:20px;

}

/*==========================
PROCESS
==========================*/

.process-list{

counter-reset:item;

list-style:none;

padding:0;

}

.process-list li{

counter-increment:item;

position:relative;

padding-left:52px;

margin-bottom:20px;

line-height:1.8;

font-size:16px;

}

.process-list li::before{

content:counter(item);

position:absolute;

left:0;

top:2px;

width:28px;

height:28px;

background:#182436;

color:#fff;

border-radius:6px;

display:flex;

align-items:center;

justify-content:center;

font-weight:700;

font-size:14px;

}

/*==========================
QUALITY
==========================*/

.quality-text{

color:#666;

font-size:16px;

line-height:1.8;

margin-bottom:28px;

}

/*==========================
CHIPS
==========================*/

.chips{

display:flex;

flex-wrap:wrap;

gap:12px;

margin-top:25px;

}

.chips span{

background:#f2f3f6;

padding:12px 20px;

border-radius:30px;

font-size:15px;

color:#555;

border:1px solid #e2e2e2;

transition:.3s;

}

.chips span:hover{

background:#ff7a00;

color:#fff;

border-color:#ff7a00;

cursor:pointer;

}

/*=========================
FAQ
=========================*/

.faq-section{
    padding: 30px 0 0px;
    background:#f4f5f7;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{

    background:#fff;

    border:1px solid #e7e7e7;

    border-radius:12px;

    padding:28px 30px;

    transition:.3s;

}

.faq-item:hover{

    box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.faq-item h4{

    font-size:22px;

    margin-bottom:15px;

    color:#182436;

}

.faq-item p{

    color:#666;

    line-height:1.8;

}



/*=========================
OTHER PRODUCTS
=========================*/

.other-products{

padding:40px 0 0px;

background:#f4f5f7;

}

.product-tags{

display:flex;

flex-wrap:wrap;

gap:15px;

margin-top:30px;

}

.product-tags a{

background:#fff;

border:1px solid #ddd;

padding:14px 24px;

border-radius:8px;

text-decoration:none;

color:#333;

font-weight:600;

transition:.3s;

}

.product-tags a:hover{

background:#ff7a00;

color:#fff;

border-color:#ff7a00;

}



/*=========================
BOTTOM CTA
=========================*/
.cta-buttons{
    display:flex;
    /* justify-content:center; */
    align-items:center;
    gap:20px;
    margin-top:40px;
}

/* Orange Button */
.cta-btn-orange{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:170px;
    height:54px;

    background:#F58220;
    color:#fff;
    font-size:16px;
    font-weight:600;
    text-decoration:none;

    border-radius:8px;
    transition:.3s;
}

.cta-btn-orange:hover{
    background:#e56d08;
}

/* White Outline Button */
.cta-btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:220px;
    height:54px;

    border:1px solid rgb(245 130 32);

    color:#f2811b;
    text-decoration:none;

    border-radius:8px;

    font-size:16px;
    font-weight:600;

    transition:.3s;

}

.cta-btn-outline:hover{

    background:#fff;

    color:#142033;

}

/* CTA Section */
.cta-section{
    padding:40px 15px;
}

.cta-box{
    max-width:1200px;
    margin:auto;
    background:#172536; /* Same Dark Navy */
    border-radius:14px;
    padding:55px 40px;
    text-align:center;

    /* Optional shadow */
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.cta-box h2{
    color:#fff;
    font-size: 35px;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.3;
}

.cta-box p{
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#ff7a18;
    color:#fff;
}

.btn-primary:hover{
    background:#e96c0d;
}

.btn-outline{
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    background:transparent;
}

.btn-outline:hover{
    background:rgba(255,255,255,.08);
}


@media(max-width:768px){

    .cta-box{
        padding:40px 25px;
    }

    .cta-box h2{
        font-size:30px;
    }

    .cta-box p{
        font-size:16px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }
    .hero-grid{
        display: block !important;
         margin-top: 20px;
    }
    .hero-image img{
        margin-top: 15px;
    }
    .primary{
        margin-bottom: 15px;
    }
    .spec-grid{
        display: block;
    }
    .lblcontainer{
        padding-right: 30px !important;
    padding-left: 30px !important;
    }
    .applications-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .benefits-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-box{
            padding: 20px;
    }
    .two-column{
            display: block;
    }
    .white-card{
            margin-bottom: 30px;
    }
    .lea {
    margin-top: 0px;
}
.amf-banner-title{
    position: relative;
}
.hero h1{
    font-size: 26px;
           
}
.amf-banner-title{
    top: 20%;
        left: 50%;
        width: 100%;
        margin-top: 45px !important;
}
}
.breadcrumb{
        padding: 0px 15px;
    color: #fff;
    margin-bottom: 20px;
    list-style: none;
    border-radius: 4px;
}

