/* ==========================
   Global Styles
========================== */
body, html {
    height: 100%;
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

/* ==========================
   Hero Section
========================== */
#hero {
    background-position: center;
    background-size: cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

#hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

#hero .content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero img.logo {
    max-width: 250px;
    width: 50%;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.7));
}

/* ==========================
   Sections
========================== */
section {
    padding: 80px 0;
}

/* ==========================
   Service Cards
========================== */
.service-card {
    border: none;
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* ==========================
   Footer
========================== */
footer {
    background: #0a2c47;
    color: white;
    padding: 2rem 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ==========================
   Breadcrumb
========================== */
.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
