@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f3fdf5;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #064d3c;
  padding: 1rem 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #50d890;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #a8f0c6;
}

/* Marquee */
.marquee {
  background-color: #e6ffe6;
  color: #064d3c;
  padding: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #064d3c, #56ab91);
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 1000;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  font-weight: 500;
  margin: auto;
}

.hero-image {
  max-width: 100%;
  margin-top: 2rem;
  border-radius: 12px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #50d890;
  color: #064d3c;
}

.btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(80, 216, 144, 0.6);
}

/* Section styling */
.section {
  padding: 4rem 0;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #064d3c;
  font-weight: 10000;
  margin-bottom: 2rem;
}

/* About */
.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.about-flex img {
  max-width: 480px;
  border-radius: 12px;
}

.about-text {
  max-width: 500px;
  font-size: 1.1rem;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  color: #50d890;
  font-weight: 1010;
}

/* Contact */
.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

/* Footer */
footer {
  background: #064d3c;
  color: #cce8dd;
  padding: 3rem 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.footer-links h4 {
  margin-bottom: 0.5rem;
  color: #a8f0c6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #cce8dd;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

footer p {
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .about-flex {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

