/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grey-bg { background-color: #f9f9f9; }

/* Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #002147;
}

.b-logo {
    background: #F37021;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    margin-right: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #002147;
    margin: 0 15px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links li a:hover { color: #F37021; }

.btn-quote {
    background: #002147;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,33,71,0.8), rgba(0,33,71,0.8)), 
                url('https://images.unsplash.com/photo-1558444479-c8f01052478d?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 { font-size: 3rem; max-width: 800px; }
.hero-content h1 span { color: #F37021; }
.hero-content p { margin: 20px 0; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn-primary { background: #F37021; color: white; padding: 12px 30px; text-decoration: none; border-radius: 4px; display: inline-block; border: none; cursor: pointer; }
.btn-secondary { border: 2px solid #fff; color: white; padding: 10px 30px; text-decoration: none; border-radius: 4px; margin-left: 10px; }

/* Section Titles */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h5 { color: #F37021; letter-spacing: 2px; }
.section-title h2 { color: #002147; font-size: 2rem; }

/* About Section */
.about { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img img { width: 100%; border-radius: 10px; }
.about-text h5 { color: #F37021; }
.stats { display: flex; gap: 20px; margin-top: 30px; }
.stat-item { background: #f4f4f4; padding: 15px; border-radius: 8px; font-weight: 700; color: #002147; }
.stat-item i { color: #F37021; display: block; margin-bottom: 5px; }

/* Product Grid */
.products { padding: 80px 0; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.product-card { background: #fff; padding: 20px; text-align: center; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.product-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.product-card h3 { color: #002147; font-size: 1.2rem; }

/* Industries */
.industries { padding: 80px 0; text-align: center; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.industry-item { background: #002147; color: white; padding: 20px; border-radius: 5px; }

/* CTA Banner */
.cta-banner { background: #F37021; color: white; padding: 60px 0; text-align: center; }
.btn-dark { background: #002147; color: white; padding: 12px 30px; text-decoration: none; border-radius: 4px; display: inline-block; margin-top: 20px; }

/* Contact */
.contact { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; }

footer { background: #002147; color: white; padding: 20px 0; text-align: center; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .navbar { flex-direction: column; }
    .nav-links { margin: 20px 0; flex-wrap: wrap; justify-content: center; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
    .industry-grid { grid-template-columns: 1fr; }
}