@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    /* Brand Colors Matched to Logo */
    --color-brand-deep: #2D4156;
    /* Deep slate from logo text */
    --color-brand-accent: #4A88A1;
    /* Ciel blue from logo icon */
    --color-text-body: #475569;
    /* Slate for readability */

    --color-white: #ffffff;
    --color-light-gray: #e1ecfb;
    --color-border: #808080;

    --font-main: 'Inter', sans-serif;

    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Layout --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: start;
}

/* --- Header & Nav --- */
header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--color-brand-deep);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--color-brand-accent);
}

/* --- Modern Typography --- */
h1,
h2,
h3 {
    color: var(--color-brand-deep);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

p {
    font-size: 1.1rem;
    font-weight: 400;
    /* Regular weight for better screen reading */
    margin-bottom: 1.5rem;
    max-width: none;
}

/* --- Section Styling --- */
.section-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
        url("HeroImage.png") center/cover no-repeat;
}

.hero-content {
    max-width: 850px;
}

.section-who {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.section-evolution {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
}

.section-help {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

/* Contact Section (Mist Background) */
.section-contact {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-white);
}

.years-badge {
    display: inline-block;
    border: 1px solid var(--color-brand-accent);
    color: var(--color-brand-accent);
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* --- Form (Black & White Minimalist) --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    font-family: inherit;
}

.contact-form button {
    padding: 1rem 2.5rem;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 600;
    width: fit-content;
    cursor: pointer;
    transition: 0.2s;
}

.contact-form button:hover {
    background: #333;
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .grid-two-col {
        grid-template-columns: 1fr;
    }

    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .section-hero {
        min-height: 60vh;
        text-align: center;
    }
}

.

/* outer 2-col like your other sections */
.two-col {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.clients-section {
    padding: 5rem 1.5rem;
     background: var(--color-light-gray);
}

.two-col {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
}

.two-col-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.client-group h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.client-group ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.client-group li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.35rem;
}

/* responsive */
@media(max-width:900px) {

    .two-col,
    .two-col-inner {
        grid-template-columns: 1fr;
    }
}

/* --- Portfolio / Who We've Helped --- */
.section-portfolio {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
}

.portfolio-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.client-group h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.client-group ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.client-group li {
    font-size: 0.9rem;
    color: var(--color-text-body);
    margin-bottom: 0.35rem;
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-two-col {
        grid-template-columns: 1fr;
    }
}