/* ================= NAVBAR ================= */

.site-header {
    background: #ffffff;               /* CLEAR WHITE */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;  /* subtle separation */
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.brand .logo {
    max-width: 170px;
    height: auto;
}

/* Navigation */
.nav a {
    margin-left: 26px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    color: #222;
}

/* Active nav link */
.nav a.active {
    color: #0066aa;
    position: relative;
}

/* Optional subtle underline */
.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #0066aa;
}


.nav a:hover {
    color: #0066aa;
}



/* Prevent anchor overlap with sticky nav */
section {
    scroll-margin-top: 90px;
}

/* ================= HERO ================= */

.hero {
    background: linear-gradient(135deg, #0066aa, #004f85);
    color: #ffffff;
    padding: 120px 20px 100px;
}

.hero-container {
    max-width: 1100px;
    margin: auto;
}

.hero h1 {
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-subtext {
    font-size: 1.1em;
    max-width: 760px;   /* was ~700 */
    opacity: 0.95;
}


/* ================= HERO CTA ================= */

.hero-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;

    border: 2px solid #ffffff;
    border-radius: 4px;

    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;

    transition: background 0.2s ease, color 0.2s ease;
}

.hero-cta:hover {
    background: #ffffff;
    color: #0066aa;
}

html {
    scroll-behavior: smooth;
}


/* Base */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
    padding-top: 0;
}

/* Sections */
section {
    padding: 50px 20px;   /* was 60px */
    max-width: 1000px;
    margin: auto;
}

section p {
    margin-top: 0;
    margin-bottom: 16px;
}


section:nth-of-type(even) {
    background: #f2f6fa;
}

h2 {
    color: #0066aa;
    margin-top: 0;          /* KEY FIX */
    margin-bottom: 16px;    /* tighter but readable */
}


/* Lists (fallback) */
ul {
    list-style-type: square;
    padding-left: 20px;
}

/* Services as cards (new) */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.card h3 {
    margin-top: 0;
    color: #004f85;
}

.card p {
    margin-bottom: 0;
}


/* Links */
a {
    color: #0066aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #003d66;
    color: #ffffff;
    text-align: center;
    padding: 25px 20px;
    font-size: 0.9em;
}

/* Logo */
.logo {
    max-width: 200px;   /* KEY FIX */
    height: auto;
}

/* ================= TRUST SIGNALS ================= */

#trust {
    background: #f9fbfd;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.trust-item h3 {
    color: #004f85;
    margin-bottom: 10px;
    font-size: 1.05em;
}

.trust-item p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
}
/* ================= TECH STACK ================= */

#tech {
    padding: 50px 20px;          /* match other sections */
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
}

/* Heading & text follow normal flow */
#tech h2 {
    margin-top: 0;
}

.tech-subtitle {
    max-width: 700px;
    margin-bottom: 30px;
    color: #555;
}

/* Icons row can still be centered */
.tech-icons {
    display: flex;
    flex-wrap: wrap;

    gap: 36px;
    margin-top: 20px;
}

.tech-icons img {
    height: 42px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.tech-icons img:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

.tech-desc {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 14px;
}

.tech-footnote {
    margin-top: 40px;
    font-size: 0.9em;
    color: #555;
    max-width: 800px;
}



.brand a {
    display: inline-block;
}

.brand a:hover {
    opacity: 0.9;
}

/* ================= INDUSTRIES SERVED ================= */

#industries {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
}

.industries-subtitle {
    max-width: 750px;
    margin-bottom: 40px;
    color: #555;
}

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

.industry-item h3 {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #004f85;
}

.industry-item p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
}

/* ================= SHARED SECTION STYLES ================= */

.section-subtitle {
    max-width: 750px;
    margin-bottom: 40px;
    color: #555;
}

/* ================= ENGAGEMENT MODELS ================= */

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

.engagement-item h3 {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #004f85;
}

.engagement-item p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
}

/* ================= WHY GMP ================= */

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

.why-item h3 {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #004f85;
}

.why-item p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
}
