/* Fade-in animation for sections */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-section.fade-in {
  opacity: 1;
  transform: none;
}
/* Bold Color Blocking Style Additions */
body {
  background: #f5f6fa;
}
nav {
 
 
  background: #fff;
  box-shadow: 0 4px 24px rgba(26,34,56,0.10);
  border-radius: 0 0 18px 18px;
  margin-bottom: 2.5rem;
  max-width: 100vw;
  padding: 0.7rem 3.5vw 0.7rem 3.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
}
nav ul {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  gap: 2.5rem;
  display: flex;
  align-items: center;
  height: 100%;
 
/* Logo styles for larger logo and spacing */
.logo img {
  max-height: 64px;
  width: auto;
  display: block;
  margin-right: 2.5rem;
}
}

nav ul li a {
  background: none;
  color: #1a2238;
  white-space: nowrap;
  border-radius: 8px;
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: background 0.18s, color 0.18s;
  position: relative;
}

nav ul li a:hover, nav ul li a.active {
  background: #00994d;
  color: #fff;
}

/* Section backgrounds */

section, #core-competence, #what, #industries, #about, #why-work, #contact {
  background: #fff;
  color: #1a2238;
}

section {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,34,56,0.08);
  margin-bottom: 2.5rem;
  padding: 3rem 2rem;

}

.core-card, .what-card, .industry-card, .product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26,34,56,0.08);
  border: none;
  color: #1a2238;
}

#what .what-card, #industries .industry-card {
  background: rgba(255,255,255,0.92);
  color: #1a2238;
}

.cta {
  background: #1db954;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 8px rgba(233,69,96,0.12);
}

.cta:hover {
  background: #fff;
  color: #1db954;
  box-shadow: 0 2px 8px #1db95444;
}

section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-align: center;
  color: inherit;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

}

footer {
  background: #1a2238;
  color: #fff;
  border-radius: 12px 12px 0 0;
  margin-top: 2rem;
  padding: 1.2rem 0;
}
