body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff8f5;
  color: #333;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
nav ul li a:hover {
  background-color:#385069;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}
header {
  text-align: center;
  background: #2E3A59;
  padding: 50px 20px 20px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #34495e;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
}

.service-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 20px;;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h2 {
  font-size: 1.3rem;
  margin: 15px;
  color: #34495e;
 
}

.service-card p {
  font-size: 1rem;
  margin: 0 15px 20px;
  color: #555;
}

.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;
}

.book-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #da3d71;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-weight: bold;
 
}

.book-btn:hover {
  background-color: #b30349;
}

.header {
  background-color: #34495e;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}
.header h1 {
  font-size: 2.5rem;
}
.main-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem;
  background-color: rgb(194, 72, 113) ;
  color:white
}
