/* Custom Global Styles & Overrides */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
/* Remove white background from the logo and make it blend with the dark navbar */
/* .navbar-brand img {
    background-color: transparent !important;
    mix-blend-mode: multiply;
    filter: brightness(0) invert(1); /* This turns the dark text of your logo white so it pops on the dark navbar */
} */

.navbar-brand {
    letter-spacing: 0.5px;
}

/* Hover effects for service cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}