body {
font-family: 'poppins', sans-serif;
margin: 0;
  background: linear-gradient(to right, #0072ff, #00c6ff);
  color: #fff;
  text-align: center;
}
header {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
}
.logo {
  width: 80px;
  border-radius: 50%;
}
h1 {
  margin: 10px 0;
}
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  background: #ff8800;
  border-radius: 20px;
  transition: 0.3s;
}
nav ul li a:hover, .active {
  background: #fff;
  color: #ff8800;
}
.intro {
  padding: 40px 10px;
}
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.service-card {
  display: inline-block;
  padding: 20px;
  background: white;
  color: #333;
  border-radius: 15px;
  width: 200px;
  text-decoration: none;
  transition: transform 0.3s;
  font-weight: bold;
}
.service-card:hover {
  transform: scale(1.1);
  background: #ff8800;
  color: #fff;
}
footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  font-size: 14px;
}
/* === GLOBAL LINK COLOR: GOLD === */
a {
  color: #d4af37;          /* gold */
  text-decoration: none;
}

a:hover {
  color: #ffd700;          /* bright gold */
