@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  color: #333;
  background: #fff;
}
.main {
  min-height: 100vh;
}
.section {
  padding: 0.2rem 1.5rem;
  width: 100%;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #333;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero {
  background: #f3f4f6;
}
.alt {
  background: #f3f4f6;
}
.contact {
  background: #ffffff;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.about-us {
  background-color: #f3f4f6;
  width: 100%; /* Full width background */
}
.about-us-content {
  width: 60%;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #333;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 768px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
h2 {
  width: 60%;
  font-size: 2rem;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  text-align: center;
}

 
/*
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
  gap: 0.5rem;
  padding: 1rem;
}
*/
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.card {
  background: #fff;
  max-width: 400px;
  justify-content: center;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.button {
  display: inline-block;
  background: #1f2937;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
}
.button:hover {
  background: #374151;
}

.tagline {
  color:  #333; /* Softer gray */
  font-size: 1.25rem;
  width: 60%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 768px;
}

.hidden {
  display: none;
}
.detail {
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}

.fade-out {
  animation: fadeOut 0.5s ease-in-out forwards;
}
.logo-img {

  vertical-align: middle;

}

.navbar {
  background-color: #f8f9fa;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-list li a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}
.nav-list li a:hover {
  color: #374151;
}

.navbar {
  background-color: #e5e7eb; /* stylish light gray */
  border-radius: 1rem;
  margin: 1rem auto;
  max-width: fit-content;
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
}
.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

html {
  scroll-behavior: smooth;
}
