* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
    line-height: 1.6;
}

/* GLOBAL CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
header {
    background: #0B5FA5;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

header h1 {
    font-size: 22px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    background: #ff6600;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn:hover {
    background: #e65c00;
}

/* SECTIONS */
.section {
    padding: 30px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0B5FA5;
    font-size: 28px;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* WHY CHOOSE LIST FIX */
.section ul {
    max-width: 600px;
    margin: auto;
    list-style: none;
}

.section ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}




/* FOOTER */
.footer {
    background: #111;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-box {
    flex: 1;
    min-width: 280px;
}

.footer-box h3 {
    margin-bottom: 20px;
    color: #0B5FA5;
}

.footer-contact {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* CENTER QUICK LINKS */
.center-box {
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
}



.industry-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.industry-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card h3 {
    color: #0B5FA5;
    margin-bottom: 10px;
}




/* Reduce gap between intro and products */
.section:first-of-type {
    padding-bottom: 20px;
}

.section+.section {
    padding-top: 20px;
}





.about-section {
    padding: 60px 40px;
}

.about-title {
    text-align: center;
    color: #0B5FA5;
    margin-bottom: 40px;
    font-size: 32px;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-left {
    width: 60%;
    text-align: justify;
    line-height: 1.8;
    font-size: 16px;
}

.about-right {
    width: 40%;
}

.about-box {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0B5FA5;
}

.about-box h3 {
    margin-top: 0;
    color: #083C6D;
}

.about-box ul {
    padding-left: 18px;
    line-height: 1.8;
}





.products-section {
    padding: 80px 0;
    background: #f8fafc;
}

.container {
    width: 85%;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 34px;
    color: #083c6d;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
    color: #555;
}

.product-card {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.product-card h2 {
    margin-bottom: 25px;
    color: #0B5FA5;
    font-size: 22px;
    border-left: 5px solid #0B5FA5;
    padding-left: 12px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.spec-table th,
.spec-table td {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.spec-table th {
    background-color: #0B5FA5;
    color: white;
    font-weight: 600;
}

.spec-table tr:nth-child(even) {
    background-color: #f4f7fa;
}

.note {
    margin-top: 10px;
    font-weight: 500;
    color: #444;
}

.accessories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accessories-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}





.process-section {
    padding: 100px 0;
    background: #ffffff;
}

.container {
    width: 85%;
    margin: auto;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-header h1 {
    font-size: 36px;
    color: #083c6d;
    margin-bottom: 15px;
}

.process-header p {
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
    color: #555;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.process-card {
    background: #f4f8fb;
    padding: 40px;
    border-left: 5px solid #0B5FA5;
    transition: 0.3s ease;
}

.process-card h3 {
    margin-bottom: 15px;
    color: #083c6d;
    font-size: 20px;
}

.process-card p {
    line-height: 1.8;
    color: #444;
}

.process-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.full-width {
    grid-column: span 2;
}




.contact-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 36px;
    color: #083c6d;
    margin-bottom: 15px;
}

.contact-header p {
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
    color: #555;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h3 {
    margin-top: 25px;
    color: #0B5FA5;
}

.contact-info p {
    line-height: 1.8;
    color: #444;
}

.map {
    margin-top: 30px;
    border-radius: 6px;
    overflow: hidden;
}

.contact-form {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 25px;
    color: #083c6d;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0B5FA5;
}

.submit-btn {
    background: #0B5FA5;
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #083c6d;
}