*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
line-height:1.6;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.header{
background:#1C2539;
padding:20px 0;
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
color:white;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:20px;
}

nav ul li a{
color:white;
text-decoration:none;
}

.banner{
background:#7A2A25;
padding:100px 0;
text-align:center;
color:white;
}

.product-page{
padding:80px 0;
}

.product-layout{
display:grid;
grid-template-columns:280px 1fr;
gap:40px;
}

.sidebar{
background:#f5f5f5;
padding:25px;
}

.sidebar ul{
list-style:none;
margin-top:15px;
}

.sidebar li{
margin-bottom:10px;
}

.sidebar a{
text-decoration:none;
color:#333;
}

.product-content img{
width:100%;
border-radius:8px;
margin-bottom:25px;
}

.product-content h2{
margin-bottom:15px;
}

.feature-list{
padding-left:20px;
margin-bottom:20px;
}

table{
width:100%;
border-collapse:collapse;
margin:20px 0;
}

table th,
table td{
border:1px solid #ddd;
padding:12px;
text-align:left;
}

.applications{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.applications span{
background:#1C2539;
color:white;
padding:10px 15px;
border-radius:4px;
}

.cta{
background:#1C2539;
color:white;
text-align:center;
padding:70px 0;
}

button{
background:#7A2A25;
color:white;
border:none;
padding:15px 35px;
margin-top:20px;
cursor:pointer;
}

footer{
background:#111;
color:white;
padding:40px 0;
text-align:center;
}

.product-menu{
    list-style:none;
    padding:0;
}

.product-btn{
    width:100%;
    text-align:left;
    padding:12px 15px;
    border:none;
    background:#1C2539;
    color:#fff;
    cursor:pointer;
    margin-bottom:2px;
    font-size:15px;
}

.product-btn:hover{
    background:#7A2A25;
}

.product-btn.active{
    background:#7A2A25;
}

.sub-products{
    display:none;
    list-style:none;
    background:#f8f8f8;
    margin-bottom:10px;
}

.sub-products.show{
    display:block;
}

.sub-products li a{
    display:block;
    padding:10px 15px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
    font-size:14px;
}

.sub-products li a:hover{
    background:#f1f1f1;
    color:#7A2A25;
}

/* ===== Home / Hero ===== */
.hero{
    background:linear-gradient(rgba(28,37,57,0.85),rgba(28,37,57,0.85)),#1C2539;
    color:white;
    text-align:center;
    padding:120px 0;
}

.hero h1{
    font-size:42px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:0 auto;
    font-size:18px;
}

.intro{
    padding:70px 0;
    text-align:center;
}

.intro h2{
    margin-bottom:20px;
}

.intro p{
    max-width:850px;
    margin:0 auto;
}

/* ===== Product cards ===== */
.products-grid-section{
    background:#f5f5f5;
    padding:70px 0;
}

.products-grid-section h2,
.features-section h2{
    text-align:center;
    margin-bottom:40px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.product-card{
    background:white;
    padding:30px;
    text-decoration:none;
    color:#333;
    border-radius:8px;
    border-top:4px solid #7A2A25;
    transition:transform 0.2s, box-shadow 0.2s;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.product-card h3{
    color:#1C2539;
    margin-bottom:10px;
}

/* ===== Stats band ===== */
.stats-section{
    background:#7A2A25;
    color:white;
    padding:50px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    text-align:center;
}

.stat-box h3{
    font-size:40px;
    margin-bottom:5px;
}

/* ===== About teaser ===== */
.about-teaser{
    padding:70px 0;
}

.about-teaser-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:50px;
    align-items:center;
}

.about-teaser-text h2{
    margin-bottom:20px;
    color:#1C2539;
}

.about-teaser-text p{
    margin-bottom:15px;
}

.about-teaser-list{
    background:#f5f5f5;
    padding:30px;
    border-radius:8px;
    border-left:4px solid #7A2A25;
}

.about-teaser-list ul{
    list-style:none;
}

.about-teaser-list li{
    padding:10px 0 10px 28px;
    position:relative;
    border-bottom:1px solid #e5e5e5;
}

.about-teaser-list li:last-child{
    border-bottom:none;
}

.about-teaser-list li::before{
    content:"\2713";
    position:absolute;
    left:0;
    color:#7A2A25;
    font-weight:700;
}

/* ===== Grades ===== */
.grades-section{
    background:#f5f5f5;
    padding:70px 0;
    text-align:center;
}

.grades-section h2{
    margin-bottom:10px;
}

.section-sub{
    max-width:700px;
    margin:0 auto 40px;
    color:#666;
}

.grades-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
}

.grades-list span{
    background:white;
    color:#1C2539;
    padding:12px 22px;
    border-radius:4px;
    font-weight:500;
    border:1px solid #ddd;
}

/* ===== Industries ===== */
.industries-section{
    padding:70px 0;
    text-align:center;
}

.industries-section h2{
    margin-bottom:10px;
}

.industries-section .applications{
    justify-content:center;
}

/* ===== Process ===== */
.process-section{
    background:#f5f5f5;
    padding:70px 0;
}

.process-section h2{
    text-align:center;
    margin-bottom:40px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-step{
    background:white;
    padding:30px 20px;
    border-radius:8px;
    text-align:center;
}

.step-num{
    width:50px;
    height:50px;
    line-height:50px;
    margin:0 auto 15px;
    background:#1C2539;
    color:white;
    border-radius:50%;
    font-size:20px;
    font-weight:600;
}

.process-step h3{
    color:#7A2A25;
    margin-bottom:10px;
    font-size:18px;
}

/* ===== Feature boxes ===== */
.features-section{
    padding:70px 0;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-box{
    text-align:center;
    padding:30px 20px;
    background:#f5f5f5;
    border-radius:8px;
}

.feature-box h3{
    color:#7A2A25;
    margin-bottom:12px;
}

/* ===== Generic content page (About) ===== */
.content-page{
    padding:70px 0;
}

.content-page h2{
    margin:30px 0 15px;
    color:#1C2539;
}

.content-page p{
    margin-bottom:15px;
}

.content-page ul{
    padding-left:20px;
    margin-bottom:20px;
}

.content-page li{
    margin-bottom:8px;
}

/* ===== Contact ===== */
.contact-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-details{
    list-style:none;
    margin-top:20px;
}

.contact-details li{
    margin-bottom:20px;
}

.contact-details strong{
    display:block;
    color:#7A2A25;
    margin-bottom:4px;
}

.contact-form label{
    display:block;
    margin:15px 0 5px;
    font-weight:500;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:4px;
    font-size:15px;
}

.contact-form button{
    width:100%;
}

.form-status{
    display:none;
    padding:14px 16px;
    border-radius:4px;
    margin-bottom:15px;
    font-size:15px;
}

.form-status.success{
    display:block;
    background:#e6f4ea;
    color:#1e7e34;
    border:1px solid #b7dfc2;
}

.form-status.error{
    display:block;
    background:#fbeaea;
    color:#a12622;
    border:1px solid #f0c2c0;
}

.hp-field{
    display:none !important;
}

/* ===== Nav dropdown ===== */
.has-dropdown{
    position:relative;
}

.dropdown{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#1C2539;
    min-width:210px;
    padding:8px 0;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    z-index:100;
}

.has-dropdown:hover .dropdown{
    display:block;
}

.dropdown li{
    margin:0;
}

.dropdown li a{
    display:block;
    padding:10px 18px;
    color:#fff;
    white-space:nowrap;
}

.dropdown li a:hover{
    background:#7A2A25;
}

/* ===== Eyebrows ===== */
.section-eyebrow,
.hero-eyebrow{
    display:inline-block;
    color:#7A2A25;
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.hero-eyebrow{
    color:#e0b4b0;
}

/* ===== Hero extras ===== */
.hero-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    margin-top:25px;
    flex-wrap:wrap;
}

.hero-phone{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

/* ===== Company / Our Company ===== */
.company-section{
    padding:70px 0;
    text-align:center;
}

.company-section h2{
    margin-bottom:15px;
    color:#1C2539;
}

.company-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:40px;
    text-align:left;
}

.company-card{
    background:#f5f5f5;
    padding:35px;
    border-radius:8px;
    border-top:4px solid #7A2A25;
}

.company-card h3{
    color:#1C2539;
    margin-bottom:12px;
}

/* ===== Products header + card link ===== */
.products-grid-section{
    text-align:center;
}

.products-grid{
    text-align:left;
    margin-top:35px;
}

.card-link{
    display:inline-block;
    margin-top:12px;
    color:#7A2A25;
    font-weight:600;
    font-size:14px;
}

/* ===== Why choose us ===== */
.why-section{
    padding:70px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:50px;
    align-items:center;
}

.why-text h2{
    margin:5px 0 18px;
    color:#1C2539;
}

.mv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:25px;
}

.mv-box{
    background:#f5f5f5;
    padding:22px;
    border-radius:8px;
}

.mv-box h4{
    color:#7A2A25;
    margin-bottom:8px;
}

.why-list{
    background:#1C2539;
    padding:35px;
    border-radius:8px;
}

.why-list ul{
    list-style:none;
}

.why-list li{
    color:#fff;
    padding:12px 0 12px 28px;
    position:relative;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.why-list li:last-child{
    border-bottom:none;
}

.why-list li::before{
    content:"\2713";
    position:absolute;
    left:0;
    color:#e0b4b0;
    font-weight:700;
}

/* ===== Blog / Insights ===== */
.blog-section{
    padding:70px 0;
    background:#f5f5f5;
    text-align:center;
}

.blog-section h2{
    margin-bottom:40px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    text-align:left;
}

.blog-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.blog-thumb{
    background:#1C2539;
    color:#fff;
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    font-size:18px;
    letter-spacing:1px;
}

.blog-body{
    padding:25px;
}

.blog-body h3{
    font-size:17px;
    color:#1C2539;
    margin-bottom:10px;
    line-height:1.4;
}

.blog-body p{
    color:#666;
    font-size:14px;
    margin-bottom:12px;
}

/* ===== Footer (multi-column) ===== */
.site-footer{
    background:#1C2539;
    color:#fff;
    text-align:left;
    padding:0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:35px;
    padding:60px 0 40px;
}

.footer-col h3{
    margin-bottom:15px;
}

.footer-col h4{
    margin-bottom:15px;
    color:#e0b4b0;
}

.footer-col ul{
    list-style:none;
}

.footer-col li{
    margin-bottom:10px;
}

.footer-col a{
    color:#cfd3db;
    text-decoration:none;
}

.footer-col a:hover{
    color:#fff;
}

.footer-about p{
    color:#cfd3db;
    margin-bottom:15px;
    font-size:14px;
}

.footer-addr{
    font-size:14px;
}

.footer-contact li{
    color:#cfd3db;
    font-size:14px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:20px 0;
    text-align:center;
}

.footer-bottom p{
    color:#9aa1ad;
    font-size:14px;
}

/* ===== Responsive ===== */
@media(max-width:900px){
    .products-grid{grid-template-columns:repeat(2,1fr);}
    .features-grid{grid-template-columns:repeat(2,1fr);}
    .stats-grid{grid-template-columns:repeat(2,1fr);}
    .process-grid{grid-template-columns:repeat(2,1fr);}
    .about-teaser-grid{grid-template-columns:1fr;}
    .contact-layout{grid-template-columns:1fr;}
    .product-layout{grid-template-columns:1fr;}
    .company-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr;}
    .blog-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
}

@media(max-width:600px){
    .products-grid{grid-template-columns:1fr;}
    .features-grid{grid-template-columns:1fr;}
    .stats-grid{grid-template-columns:1fr;}
    .process-grid{grid-template-columns:1fr;}
    .company-grid{grid-template-columns:1fr;}
    .mv-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .header .container{flex-direction:column;gap:15px;}
    nav ul{flex-wrap:wrap;justify-content:center;}
    nav ul li{margin-left:12px;}
    .dropdown{position:static;box-shadow:none;min-width:auto;}
    .hero h1{font-size:32px;}
}