body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

/* Colors based on MGL Logo */
.text-danger { color: #d32f2f !important; }
.btn-danger { background-color: #d32f2f; border-color: #d32f2f; }
.bg-dark { background-color: #0d2538 !important; } /* Professional Deep Blue/Teal */

/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(13, 37, 56, 0.8), rgba(13, 37, 56, 0.8)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
}

.nav-link {
    font-weight: 500;
    color: #444 !important;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: #d32f2f !important;
}

/* Hiring Card styling similar to the photo provided */
.hiring-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hiring-card:hover {
    transform: translateY(-10px);
}

.list-group-item strong {
    color: #0d2538;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        text-align: center;
    }
    .display-3 {
        font-size: 2.5rem;
    }
}

:root {
    --navy: #002147;
    --gold: #C5A059;
}

body {
    font-family: 'Poppins', sans-serif;
}

.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.bg-navy { background-color: var(--navy); }

/* Hero Slider */
.hero-img {
    height: 80vh;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 33, 71, 0.4);
    z-index: 1;
}
.carousel-caption {
    z-index: 2;
    bottom: 30%;
}

/* Lionel Hitchen Style Products */
.title-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 15px;
}

.product-card {
    background: #fff;
    padding: 30px;
    border-left: 5px solid var(--navy);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    border-left: 5px solid var(--gold);
    background: var(--navy);
    transform: translateX(10px);
}

.product-card:hover h4 { color: #fff; }
.product-card:hover p { color: var(--gold) !important; }

.btn-gold {
    background: var(--gold);
    color: #fff;
    border-radius: 0;
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: 0;
    transition: 0.3s;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
}