/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: #f1f1f1;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  padding: 15px 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #00b894;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  transition: all 0.4s ease;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00b894;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #f1f1f1;
}

/* Mobile Navbar */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: -250px;
    background: #111;
    flex-direction: column;
    width: 200px;
    text-align: center;
    padding: 20px 0;
    border-left: 2px solid #00b894;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #111, #0d0d0d);
  padding-top: 80px;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
}

.hero h1 span {
  color: #00b894;
}

.hero p {
  margin: 20px 0;
  font-size: 1.3rem;
  color: #ccc;
  min-height: 30px;
}

.hero-buttons {
  margin-top: 20px;
}

/* Responsive Hero Text */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  background: #00b894;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  background: #019170;
}

.btn-outline {
  background: transparent;
  border: 2px solid #00b894;
}

.btn-outline:hover {
  background: #00b894;
  color: #fff;
}

/* Features */
.features {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}

.features h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #00b894;
}

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

/* About */
.about {
  padding: 80px 20px;
  background: #0d0d0d;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  margin-bottom: 20px;
  color: #00b894;
}

.about-image img {
  border-radius: 10px;
  max-width: 100%;
}

/* CTA */
.cta {
  padding: 60px 20px;
  background: #00b894;
  color: #fff;
  text-align: center;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

/* Contact */
.contact {
  padding: 80px 20px;
  text-align: center;
  background: #111;
}

.contact h2 {
  margin-bottom: 20px;
  color: #00b894;
}

form {
  max-width: 500px;
  margin: auto;
}

.form-group {
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  outline: none;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #00b894;
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #019170;
}

/* Footer */
footer {
  padding: 20px;
  background: #111;
  text-align: center;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #00b894;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
