/* Services & Packages Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

li:hover {
  color: #0077cc; /* change to a blue shade on hover */
  cursor: pointer;
} 

header {
  display: flex;
  justify-content: space-between; /* pushes content apart */
  align-items: center;            /* keeps everything aligned vertically */
  padding: 10px;
  margin: auto;
}

.logo-image {
  width: 200px;   /* increase size */
  height: auto; 
  margin-right: 10px;  /* keep aspect ratio */
}

.logo {
  position: absolute;
  top: -20px;    /* distance from top */
  right: 10px;  /* distance from right */
  width: 150px;  /* adjust size */
  height: 115px;
  border-radius: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease;
}
.card ul {
  flex-grow: 1;
  margin-bottom: 1rem;
}
.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 0;
  color: #0077cc;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services ul li {
  margin: 0.5rem 0;
}

.btn {
  align-self: center;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #005fa3;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #2c3e50; /* dark blue */
  color: #fff;
}

section.services {
  background-color: #bdc3c7; /* grey for the services section */
  color: #333;
  padding: 2rem;
}

.star-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 4px;
  background: linear-gradient(white, rgba(255, 255, 255, 0));
  box-shadow: 0 0 6px white;
  animation: shoot 1s linear forwards;
}



@keyframes shoot {
  0% {
    transform: translate(0, 0);
    opacity: 2;
    
  }
  100% {
    transform: translate(300px, 100px);
    opacity: 0;
  }
  
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .logo {
    position: static;
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
  }

  .logo-image {
    width: 150px;
    margin-right: 0;
  }

  .services {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .price {
    font-size: 1.25rem;
  }

  .btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
  }

  .modal-content {
    width: 90%;
    margin: 30% auto;
  }

  .star-container {
    height: 100px;
  }

  .star {
    width: 1px;
    height: 3px;
  }
}


