/* Tiffany Blue Theme, Neumorphism + Modern Fade */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #e0f7f5;
  color: #333;
  transition: all 0.3s ease;
}

header {
  background: #a0e7e5;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 20px 20px;
}

nav a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #007c91;
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: #c8f3f2;
  border-radius: 30px;
  margin: 2rem;
  box-shadow: inset 5px 5px 15px #b0dfde, inset -5px -5px 15px #f0ffff;
}

.products, .contact, .content {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.product-card {
  background: #e0f7f5;
  margin: 1rem 0;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 6px 6px 12px #c5e6e4, -6px -6px 12px #ffffff;
  transition: transform 0.3s;
}

  .contact-card-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
  }
  .contact-card {
    flex: 1;
    max-width: 400px;
  }

.product-card:hover, .contact-card:hover {
  transform: translateY(-5px);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  text-align: center;
  padding: 1rem;
  background: #a0e7e5;
  margin-top: 2rem;
  border-radius: 20px 20px 0 0;
}


.hero {
  padding: 60px 20px;
  background-color: #f0f8f8;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image {
  flex: 1 1 40%;
  max-width: 100%;
  border-radius: 15px;
  margin-right: 30px;
}

.hero-text {
  flex: 1 1 55%;
}



.why-us {
  background-color: #e6f9f9;
  padding: 50px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.why-us ul {
  list-style: none;
  padding: 0;
}

.why-us li {
  font-size: 1.2rem;
  margin: 10px 0;
}



.cta {
  background-color: #d0f0f0;
  text-align: center;
  padding: 50px 20px;
}

.cta .btn {
  background-color: #00a6a6;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}
