body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.hero {
    background: url('assets/images/hero-industrial.jpg') center/cover no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 35, 66, 0.5); /* Adjusted opacity for better visibility */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

.btn {
    background-color: #fff;
    color: #1a3c6b;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    font-size: 16px;
    z-index: 2;
}

.btn:hover {
    background-color: #0e2a4d;
    color: #fff;
}

.card {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

footer {
  font-size: 1rem;
}
