/* Global Styles for Nexus Fluidics website */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navbar styles */
.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 1rem;
}

.navbar-nav .nav-link.active {
    color: #00adef !important;
}

/* Hero section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Section titles */
.section-title {
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

/* Features */
.feature-icon {
    font-size: 2.5rem;
    color: #00adef;
    margin-bottom: 1rem;
}

/* Card images */
.card-img-top {
    object-fit: cover;
    height: 220px;
}

/* Industry cards */
.industry-card img {
    height: 200px;
    object-fit: cover;
}

/* Capabilities page */
.capability-section {
    margin-bottom: 3rem;
}
.capability-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Materials list */
.materials-list li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #041e42;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #00adef;
    text-decoration: none;
    margin: 0 0.5rem;
}

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