:root {
    --lbb-blue: #003366;
    --lbb-yellow: #ffcc00;
    --lbb-gray: #f4f4f4;
    --lbb-dark: #212529;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--lbb-dark);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.navbar {
    background-color: var(--lbb-blue);
    border-bottom: 4px solid var(--lbb-yellow);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 75px;
    width: auto;
    transition: transform 0.3s;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff !important;
    margin-left: 15px;
}

.nav-link:hover {
    color: var(--lbb-yellow) !important;
}

.hero {
    position: relative;
    background: url('header-bg.jpg') no-repeat center center/cover;
    height: 75vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,51,102,0.85) 0%, rgba(0,51,102,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.btn-lbb {
    background: var(--lbb-yellow);
    color: var(--lbb-blue);
    font-weight: 700;
    border: none;
    border-radius: 0;
    padding: 15px 35px;
    transition: 0.3s;
}

.btn-lbb:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-card {
    border: none;
    background: var(--lbb-gray);
    transition: 0.3s;
    padding: 40px;
    height: 100%;
    border-top: 5px solid transparent;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--lbb-yellow);
    transform: translateY(-5px);
}

.icon-box {
    font-size: 3.5rem;
    color: var(--lbb-blue);
    margin-bottom: 20px;
}

.contact-section {
    background: var(--lbb-blue);
    color: white;
    padding: 100px 0;
}

.contact-card {
    background: white;
    color: var(--lbb-dark);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    margin-top: -150px;
    position: relative;
    z-index: 20;
}

footer {
    background: #111;
    color: #888;
    padding: 40px 0;
}

footer a {
    color: var(--lbb-yellow);
    text-decoration: none;
}