:root {
    --primary-blue: #005a9c;
    --dark-navy: #003d66;
    --accent-blue: #00a3e0;
    --light-gray: #f4f7f9;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Bar */
.utility-bar {
    background: var(--dark-navy);
    color: var(--white);
    font-size: 0.7rem;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

/* Header */
.main-header {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container img {
    height: 55px;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-navy);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--primary-blue);
    letter-spacing: 1px;
    margin-top: 2px;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    margin-left: 30px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 61, 102, 0.85), rgba(0, 61, 102, 0.85)), 
                url('desk.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto 35px;
    font-weight: 300;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--dark-navy);
}

/* Grid & Cards */
.intro-text {
    text-align: center;
    padding: 80px 0 40px;
    max-width: 850px;
    margin: 0 auto;
}

.intro-text h2 {
    color: var(--dark-navy);
    font-size: 2rem;
    margin-bottom: 25px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.card {
    background: var(--light-gray);
    padding: 45px;
    border-radius: 10px;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-bottom: 4px solid var(--accent-blue);
}

.card-tag {
    color: var(--accent-blue);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--dark-navy);
    font-size: 1.4rem;
}

.card-link {
    display: inline-block;
    margin-top: 25px;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: var(--dark-navy);
    color: var(--white);
    padding: 100px 0;
}

.contact-section h2 {
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--accent-blue);
    text-decoration: none;
}

.staff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.staff-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 6px;
}

.staff-item h4 {
    color: var(--accent-blue);
    margin-bottom: 5px;
}

.staff-item span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Footer */
.site-footer {
    padding: 50px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: #fff;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-flex { flex-direction: column; text-align: center; }
    .logo-container { margin-bottom: 20px; }
    .main-nav a { margin: 0 10px; }
    .hero-content h1 { font-size: 2.2rem; }
    .staff-grid { grid-template-columns: 1fr; }
}
/* Update Staff Contact Text Color */
.staff-item p,
.staff-item a {
    color: var(--white); /* Makes text and links white */
    opacity: 1; /* Ensures full brightness */
}

.staff-item a:hover {
    color: var(--accent-blue); /* Optional: Change color on hover */
    text-decoration: underline; /* Optional: Add underline on hover */
}
html {
    scroll-behavior: smooth;
}