/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fefefe;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #004d40;
  color: white;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.navbar ul li a:hover,
.navbar ul li a.active {
  text-decoration: underline;
}

/* Hero Slider */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  height: 100%;
}
.slide {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;
}
.slide.active {
  display: block;
  animation: fade 2s ease-in-out;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caption {
  position: absolute;
  bottom: 10%;
  left: 5%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.5rem;
}

/* Quick Info */
.quick-info {
  padding: 2rem;
  background: #e0f2f1;
  text-align: center;
}
.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}
.feature {
  background: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* About Snippet */
.about-snippet {
  padding: 2rem;
  text-align: center;
}
.about-snippet p {
  max-width: 800px;
  margin: auto;
  margin-top: 1rem;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: #00796b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.btn:hover {
  background: #004d40;
}

/* Footer */
footer {
  background: #263238;
  color: white;
  padding: 1rem;
  text-align: center;
}
footer .socials a {
  color: #80cbc4;
  margin: 0 0.5rem;
}

/* Animations */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }
  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }
}