body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
}

h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 450;
  letter-spacing: -0.5px;
}

.header-nav {
  position: relative;

  overflow: visible;
  /* background-color: black; */
  background-color: #1a1a2e !important;
  justify-content: space-between;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 2.7px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.05),
    0 1px 3px rgba(255, 255, 255, 0.04) !important;
  transition: box-shadow 0.3s ease-in-out;
}
.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff !important;
}
.nav-toggler-background{
  background-color: #0f9d58;
}

.nav-item a.active {
  color: #06ee4cec !important;
  font-weight: bold;
  text-decoration: solid;
  text-transform: uppercase;
  font-size: 1.4rem;
}

@media (max-width: 990px) {
  /* stack nav links vertically and full width */
  #primaryNavbar .navba-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #primaryNavbar .nav-item + .nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
  }
  #primaryNavbar .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}
.toggler:hover,
.toggler-icon:hover {
  border-color: #c9dbd5;
  border: -40rem;
  transition: ease 0.5s;
}
.nav-link {
  color: #dcdcdc !important;
  transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: #00adb5 !important; /* bright cyan on hover */
}

/* Toggler icon */
.navbar-toggler-icon {
  filter: invert(1); /* make toggler icon white */
}

#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('static/plastic-waste-01.jpg') center/cover no-repeat;
  filter: blur(6px);
  transform: scale(1.05); /* Prevent edges from showing blur gap */
  z-index: -2;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 1;
  background: rgba(0, 0, 0, 0.25); /* Dark overlay for readability */
  z-index: -1;
}

.image-style {
  border-radius: 1.5rem;
  width: 100%;
}
.btn1 {
  margin-bottom: 20px;
  margin-top: -5px;
}

@media (max-width: 990px) {
  .image-machine-style {
    width: 100% !important;
    height: auto;
  }
  .image-style {
    width: 100% !important;
    height: auto;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
    font-size: 1.25rem;
  }
  .carousel-caption p {
    font-size: 0.95rem;
  }
  .image-machine-style {
    width: 100% !important;
    height: auto;
  }
  .image-logo-style {
    width: 40% !important;
    height: auto;
  }
  .image-style {
    width: 100% !important;
    height: 30vh;
  }
  h1 {
    font-size: 1.8rem !important;
  }
}

.card-1 {
  background-color: rgba(209, 196, 196, 0.007);
  padding: 1rem;
  border-radius: 12px;
}

.card {
  background-color: rgb(249, 248, 248);
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid hsl(210, 14%, 89%);
  box-shadow: 0 4px 12px lab(97.31% 0.34 0.11);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgb(231, 231, 231);
  cursor: default;
}
.text-justify {
  text-align: justify;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  gap: 30px;
  text-align: left;
}

/* Form */
.contact-form {
  flex: 1 1 45%;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  margin-bottom: 20px;
  background: #222;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.contact-form button:hover {
  background: #000;
}

/* Contact Info */
.contact-info {
  padding-left: 20px;
  flex: 1 1 30%;
  background: #f9f9f9;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}
.footer-a {
  text-decoration-line: none;
}
.material-symbols-outlined {
  background-color: #0f9d58;
  color: white;
  border-radius: 50%;
  padding: 8px;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
