:root {
    --primary: #1a2a6c;
    --secondary: #b21f1f; 
    --brand-red: #631d27;
    --text: #333;
    --light: #f4f7f6;
    --white: #ffffff;
}

* { box-sizing: border-box; }

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
}

nav {
    background: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-nav {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    color: var(--primary);
    font-size: 1.4rem;
    text-decoration: none;
}

nav a:not(.logo-nav) {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

header {
    background: linear-gradient(rgba(26, 42, 108, 0.92), rgba(26, 42, 108, 0.92)), url('https://images.unsplash.com/photo-1584931423298-c576fda54bd2?auto=format&fit=crop&q=80&w=2000') center/cover;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

@keyframes syncPulse {
    0% { opacity: 0.85; filter: brightness(100%); }
    50% { 
        opacity: 1; 
        filter: brightness(130%); 
        text-shadow: 0 0 20px rgba(255,255,255,0.9);
    }
    100% { opacity: 0.85; filter: brightness(100%); }
}

.logo-badge {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 4px solid var(--brand-red);
    overflow: hidden;
    animation: syncPulse 2.5s infinite ease-in-out;
}

.hero-logo { width: 85%; height: auto; }

.brand-name-top {
    font-family: 'Times New Roman', Times, serif; 
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.credential-flash {
    animation: syncPulse 2.5s infinite ease-in-out;
    display: inline-block;
}

.cta-button {
    background: var(--brand-red);
    color: var(--white);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; color: var(--primary); margin-bottom: 3rem; }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: var(--white); padding: 2.5rem; border-radius: 8px; border-top: 5px solid var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.contact-container { background: var(--white); padding: 3rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
form { display: grid; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
label { font-weight: bold; margin-bottom: 0.5rem; color: var(--primary); }
input, textarea { padding: 0.8rem; border: 1px solid #ddd; border-radius: 4px; }
.submit-btn { background: var(--primary); color: var(--white); padding: 1rem; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; }

footer { text-align: center; padding: 3rem; background: #111; color: #888; font-size: 0.9rem; }
