* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

.header {
  background: #2c3e50;
  color: #fff;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header nav a {
  color: #fff;
  margin-left: 1em;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('images/Cleaning2.jpg') no-repeat center center/cover;
  color: white;
  padding: 5em 2em;
  text-align: center;
}

.hero .btn {
  background: linear-gradient(135deg, #6a11cb 60%, #2575fc);
  color: white;
  padding: 1em 2em;
  border: none;
  text-decoration: none;
  margin-top: 1em;
  display: inline-block;
}

.services {
  padding: 3em 2em;
  background: white;
}

.services h2 {
  text-align: center;
  margin-bottom: 2em;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}

.service {
  flex: 1 1 300px;
  background: #f1f1f1;
  padding: 1em;
  border-radius: 10px;
  text-align: center;
}

.service img {
  max-width: 100%;
  border-radius: 8px;
}

.about {
  padding: 3em 2em;
  background: #ecf0f1;
  text-align: center;
}

.contact {
  padding: 3em 2em;
  background: #fff;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.contact input,
.contact textarea {
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact button {
  padding: 1em;
  border: none;
  background: linear-gradient(135deg, #6a11cb 60%, #2575fc);
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

.footer {
  background: linear-gradient(135deg, #6a11cb 60%, #2575fc);
  color: white;
  text-align: center;
  padding: 20px 0;
}


.header-banner-bg {
  background-image: url('images/SparklesCleaningbanner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}


.header-gradient {
  background: linear-gradient(135deg, #6a11cb 60%, #2575fc);
  color: white;
  text-align: center;
  padding: 40px 0;
}

.sparkle-text {
  position: relative;
  display: inline-block;
  font-size: 2.5em;
  font-weight: bold;
  color: transparent;
  background-image: linear-gradient(
    120deg,
    #ffffff 20%,
    #e0c3fc 40%,
    #a18cd1 60%,
    #ffffff 80%
  );
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 300% 100%;
  animation: sparkle 2.5s ease-in-out infinite;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

@keyframes sparkle {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.sparkle-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
}

.star {
  position: absolute;
  color: white;
  font-size: 1em;
  opacity: 0;
  animation: twinkle 2s infinite ease-in-out;
  pointer-events: none;
}

/* Positioning stars randomly around the text */
.star1 { top: -10px; left: -20px; animation-delay: 0s; }
.star2 { top: 10px; right: -25px; animation-delay: 0.5s; }
.star3 { bottom: -10px; left: 10px; animation-delay: 1s; }
.star4 { bottom: -15px; right: 15px; animation-delay: 1.5s; }

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.facebook-icon {
  color: white;
  margin-left: 10px;
  font-size: 1.2em;
  text-decoration: none;
  transition: color 0.3s;
}

.facebook-icon:hover {
  color: #d1d1ff;
}

