/* Reset & Base */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  background-color: #333;
  color: #eee;
}

/* Hero */
.hero {
  height: 150vh;
  background: url('https://i.imgur.com/9CPZ0Zz.png') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.overlay {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem; text-align: center; color: #fff;
}
.tagline {
  font-size: 3rem; margin-bottom: 1rem;
}

/* Navigation */
.nav {
  display: flex; gap: 1.5rem; justify-content: center;
}
.nav a {
  color: #fff; text-decoration: none; font-weight: bold;
}
.nav a:hover {
  text-decoration: underline;
}

/* Main Sections Wrapper */
main {
  padding: 2rem 1rem;
}

/* Global Content Wrapper */
.content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem;
}

/* About & Services & Contact Panels */
#about, #services, #contact {
  background-color: #333;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Section Headings */
#about h2, #services h2, #contact h2 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

/* About Content */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: center;
}
.about-content img {
  width: 200px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.about-text p {
  max-width: 600px;
  color: #eee;
  margin-bottom: 1rem;
}

/* Services Details */
#services {
  text-align: left;
}
#services h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 2rem;
  border-bottom: 1px solid #555;
  padding-bottom: 0.5rem;
}
#services p {
  margin: 0.75rem 0;
  color: #ddd;
}
#services ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
#services li {
  margin-bottom: 0.5rem;
  color: #eee;
}
#services li::marker {
  color: #1e90ff;
}
#services strong {
  color: #fff;
  font-weight: bold;
}

/* Contact Links */
#contact p {
  margin: 0.5rem 0;
  text-align: center;
}
#contact a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: bold;
}
#contact a:hover {
  text-decoration: underline;
}

/* Footer Links */
.footer-nav {
  text-align: center;
  padding: 1rem;
}
.footer-nav a {
  color: #1e90ff; text-decoration: none; font-weight: bold;
}
.footer-nav a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .tagline {
    font-size: 2rem;
  }
  .about-content {
    flex-direction: column;
    align-items: center;
  }
  .content-wrapper {
    padding: 1rem;
  }
}.team-member {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid #444;
}

.team-member:last-child {
  border-bottom: none;
}

.team-member img {
  width: 200px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-text {
  flex: 1;
  min-width: 250px;
  max-width: 600px;
}

.about-text p {
  color: #eee;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(5px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
