/* SOCIAL CORPS - GLOBAL CONSULTING THEME */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-navy: #002856;
    --accent-teal: #00b8d4;
    --light-bg: #f4f6f8;
    --text-dark: #1a1a1a;
    --text-grey: #555;
    --white: #ffffff;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Merriweather', serif;
    color: var(--primary-navy);
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* NAVIGATION */
.navbar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 900; color: var(--primary-navy); letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--text-grey); }
.nav-links a:hover, .nav-links a.active { color: var(--primary-navy); border-bottom: 2px solid var(--accent-teal); }

/* HERO SECTIONS */
.hero {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 20px; line-height: 1.2; max-width: 800px; }
.hero p { font-size: 1.25rem; opacity: 0.9; max-width: 700px; margin-bottom: 30px; font-weight: 300; }
.hero-sub { padding: 60px 0; background: var(--primary-navy); color: var(--white); text-align: center; } /* For sub-pages */

.btn-primary {
    background: var(--accent-teal);
    color: var(--primary-navy);
    padding: 15px 30px;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary:hover { background: #fff; }

/* SECTIONS & GRIDS */
.section-padding { padding: 80px 0; }
.bg-white { background: var(--white); }
.section-title { font-size: 2.2rem; margin-bottom: 50px; position: relative; display: inline-block; }
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px; background: var(--accent-teal); margin-top: 15px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

/* CARDS (Service & Logic) */
.card {
    background: var(--white);
    padding: 35px;
    border: 1px solid #e0e0e0;
    border-top: 4px solid var(--primary-navy);
    transition: transform 0.3s ease;
    height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.card p { font-size: 0.95rem; color: var(--text-grey); margin-bottom: 20px; }
.card-link { font-weight: 700; color: var(--primary-navy); font-size: 0.9rem; border-bottom: 1px solid var(--accent-teal); }

/* LISTS & TEXT */
.text-block p { margin-bottom: 20px; font-size: 1.1rem; color: #444; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.check-list li::before {
    content: '✔'; color: var(--accent-teal); position: absolute; left: 0; font-weight: bold;
}
.bullet-list li { margin-bottom: 8px; list-style-type: disc; margin-left: 20px; color: var(--text-grey); }

/* FOOTER */
footer { background: var(--primary-navy); color: #a0aec0; padding: 60px 0 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.copyright { text-align: center; border-top: 1px solid #ffffff20; padding-top: 20px; font-size: 0.85rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .grid-2 { grid-template-columns: 1fr; }
}