/* Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #e0f7fa, #ffffff);
  color: #333;
  line-height: 1.6;
}

/* Header & Navigation */
header {
  background: url('https://www.transparenttextures.com/patterns/bubbles.png') center/cover no-repeat;
  padding: 20px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  flex: 1 1 200px;
}

.logo img {
  width: 250px;
  height: auto;
  object-fit: contain;
}

nav {
  flex: 1 1 auto;
  text-align: right;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: #0077b6;
  font-weight: bold;
  font-size: 18px;
}

/* Hero Section */
.hero {
  padding: 100px 20px;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #0077b6;
}

.service-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-box {
  background: white;
  border-radius: 12px;
  padding: 30px;
  width: 300px;
  min-height: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0077b6;
}

.service-box p {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-price {
  font-size: 26px;
  color: #0077ff;
  font-weight: bold;
}

/* Footer */
footer {
  background: #0077b6;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}



