@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background: #fff0ea;
  border-radius: 8px;
  padding: 1rem;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  animation: popIn 1s ease forwards;
  opacity: 0;
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background-color: #34495e;
}
.header {
  background-color: #34495e;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fff8f0;
  color: #333;
}


nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.main-services {
  background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 5rem 4rem;
  animation: fadeIn 1.5s ease-in;

}
.main-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 8rem;
 
  
}
.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.section {
  padding: 4rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.section h2 {
  color: #34495e;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  text-align: center;
}
.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card h3 {
  color: #34495e;
  margin-bottom: 0.5rem;
}

.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 2rem 0;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ecf0f1;
}

.footer-links {
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
display:flex;
gap: 2rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #677e96;
}

.footer-column a {
  text-decoration: none;
  color: #ecf0f1;
}

.footer-column a:hover {
  color: #677e96;
}

.footer-bottom {
  text-align: center;
  background-color: #34495e;
  padding: 1rem;
  margin-top: 2rem;
}

.footer-bottom p {
  font-size: 1rem;
  color: #bdc3c7;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    margin-bottom: 2rem;
  }
}
 
.header {
  background-color: #374d64;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}
.header h1 {
  font-size: 2.5rem;
}
