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

body {
    line-height: 1.8;
    color: #333;
}

header {
    background: #0d3b66;
    color: #fff;
    padding: 15px 0;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* =========================
   HERO SECTION (NATURAL IMAGE)
   ========================= */

.hero {
    position: relative;
    background: url("../images/hero-bg.png") no-repeat center center/cover;
    padding: 120px 25px;
    text-align: center;
    overflow: hidden;
}

/* very subtle readability layer (keeps image natural) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12); /* very light overlay */
    z-index: 1;
}

/* content wrapper */
.hero-content {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

/* H1: keep strong but not pure white */
.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ffffff;
    /*color: #1a1a1a;  dark gray for readability on light areas */
}

/* H2: softer secondary text */
.hero h2 {
    font-size: 20px;
    font-weight: 400;
   /* color: #333333;  readable but natural */
    color: #e5e7eb;
    line-height: 1.6;
}

.section {
    padding: 30px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0d3b66;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /*grid-template-columns: repeat(3, 1fr); */
    gap: 20px;
}

.card {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}


.about-grid {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
}

/*.about-img {
    width: 100%;
    height: 100%;
    max-width: 420px;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}*/

/* Responsive stacking for mobile */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr; /* stack vertically */
        text-align: center;
    }

   /* .about-img {
        margin: 0 auto; /* center image on mobile 
    }*/
}

footer {
    background: #0d3b66;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0d3b66;
    color: white;
    text-decoration: none;
    margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

/* Contact Page Enhancements */
select {
    border: 1px solid #ccc;
    border-radius: 4px;
}

iframe {
    border-radius: 8px;
}

.card h3 {
    color: #0d3b66;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    text-align: center;
}

.logo-grid img {
    max-width: 140px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Inline logo next to heading */
.logo-icon {
    height: 55px;
    width: auto;
    vertical-align: middle;
    margin-right: 5px;
}

.section.cta h2 {
    margin-bottom: 10px;
}

.section.cta p {
    margin-top: 5px;
    margin-bottom: 20px;
}

/* --- UPDATED EXPORT IMAGE AND LAYOUT FOR PRODUCTS.HTML --- */

/* Flex container for export section to keep image and content on the same line */
.export-section .grid {
    display: flex;
    /* align-items: center; */  /* keep this commented for top alignment */
    align-items: flex-start;
    gap: 40px;            /* space between image and text */
}

/* Image container styling */
.export-img {
    flex: 1 1 50%;       /* image takes half the width */
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-top: -60px !important;  /* Nudge image upward to align with text - adjust this value as needed */
}

/* Text container takes remaining half */
.export-section .grid > div:last-child {
    flex: 1 1 50%;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .export-section .grid {
        flex-direction: column; /* stack image and content vertically */
        gap: 20px;
    }

    .export-img {
        max-width: 100%;
        flex: none;
        margin-top: 0;   /* remove negative margin on small screens */
    }

    .export-section .grid > div:last-child {
        flex: none;
    }
}

/* --- TRUST SECTION STYLING --- */

.trust-section {
    background: #f4f7fa;
    text-align: center;
}

.trust-img {
    max-width: 660px;     /* control size here */
    width: 100%;
    display: block;
    margin: 30px auto;    /* center + spacing */
}

.trust-text {
    margin-top: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

/* SIMPLE CONTACT FOOTER */
/* SIMPLE CONTACT FOOTER */
.footer {
    background: #0d3b66;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.footer-title {
    margin-bottom: 10px;
}

/* NEW GRID (replaces flex) */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 15px;
}

.footer-grid div {
    text-align: center;
}

.footer-grid p {
    margin: 5px 0;
    color: #ddd;
}

/* ✅ ADDED: LINK COLOR CONTROL (IMPORTANT) */
.footer-grid a {
    color: #ddd;              /* default white/gray like text */
    text-decoration: none;    /* remove underline */
}

.footer-grid a:visited {
    color: #ddd;              /* prevent purple visited color */
}

.footer-grid a:hover {
    color: #ffffff;           /* optional hover effect */
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #ffffff30;
    padding-top: 10px;
    font-size: 14px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: #0d3b66;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
    z-index: 1000;
}

.sidebar a {
    color: white;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #ffffff30;
}

.close-btn {
    font-size: 22px;
    cursor: pointer;
    margin-bottom: 20px;
    text-align: right;
}

.sidebar.active {
    right: 0;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}




/* =========================
   HOME ABOUT SECTION (IMPROVED)
   ========================= */

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr; /* image bigger */
    gap: 35px;
   /* align-items: center;*/
    align-items: flex-start;
}

.about-home-content {
    margin-top: 0;
    padding-top: 0;
}


/* IMAGE */
.about-home-image img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: contain;
    border-radius: 10px;
    /*box-shadow: 0 10px 25px rgba(0,0,0,0.08);*/
}

.about-home-image {
    display: flex;
    align-items: flex-start; /* ensures image sticks to top */
}

/* CONTENT */
.about-home-content {
    max-width: 580px;
    margin-top: 0;
    padding-top: 0;
}

/* Intro text */
.about-intro {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 6px;
}

/* Bullet points */
.about-points {
    list-style: none;
    padding: 0;
    /*margin-bottom: 20px;*/
    margin: 6px 0;
}

.about-points li {
    margin-bottom: 4px;
    font-size: 14.5px;
}

/* Button spacing */
.about-home .btn {
    margin-top: 10px;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {
    .about-home-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .about-home-image img {
        /*height: auto;*/
	height: 260px;   /* smaller but consistent */
    }

    .about-home-content {
        margin: auto;
    }
}



