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


li:hover {
  color: #0077cc; /* change to a blue shade on hover */
  cursor: pointer;
} 
footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 0.5rem;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact-form input,
#contact-form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#contact-form button {
  background-color: #0077cc;
  color: #fff;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight:500;
  font-size: 20px;
}

.footer-note {
  text-align: center;
  padding: 5rem 1rem;
  background-color: #1f2d3a;
  color: #1c60e6;
  border-top: 3px solid #00cc30;
}

.footer-logo {
  width: 260px;
  height: 200px;
  margin-right: 700px;
  filter: drop-shadow(0 0 6px rgba(40, 240, 14, 0.679));
  margin-top: -200px;
}

.footer-note p {
  margin: 0.7rem 0;
  font-size: 29px;
  font-weight: 500;
}



header {
  display: flex;
  justify-content: space-between; /* pushes content apart */
  align-items: center;            /* keeps everything aligned vertically */
  padding: 0;
  margin: auto;
  
}
header h1 {
  margin-top: -300px; /* moves it UP */
}



.contact-form {
  margin: 2rem auto;
}   

.logo-image {
  width: 500px;   /* increase size */
  height: 350px; 
  margin-left: -100px;  /* keep aspect ratio */
  align-items: center;
  filter: drop-shadow(0 0 6px rgba(40, 240, 14, 0.679));
}

.logo {
  position: absolute;
  top: 10px;    /* distance from top */
  right: 0;  /* distance from right */
  width: 20px;  /* adjust size */
  height: 15px;
  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: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease;
}
.card ul {
  flex-grow: 1;
  margin-bottom: 2rem;
}
.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;
}

.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: #4589ee;
  font-size: 18px;
    padding: 18px;
    overflow-x: hidden;
}

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

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

.star {
  position: absolute;
  width: 3px;
  height: 6px;
  opacity: 25;
  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: 3;
    
  }
  100% {
    transform: translate(300px, 100px);
    opacity: 0;
  }
  
}
/* ============================
   TABLETS & MOBILE (≤768px)
   ============================ */
@media (max-width: 768px) {

  body {
    padding-top: 100px;
    overflow-x: hidden;
  }

  /* HEADER */
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }

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

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

  /* SERVICES SECTION */
  .services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .card {
    margin: 0 auto;
    max-width: 350px;
  }

  .card h3 {
    font-size: 1.3rem;
  }

  .price {
    font-size: 1.3rem;
  }

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

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

  /* STAR ANIMATION */
  .star-container {
    height: 80px;
  }

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



/* ============================
   SMALL PHONES (≤480px)
   ============================ */
@media (max-width: 480px) {

  .modal-content {
    margin: 20% auto;
  }

  .card {
    padding: 1rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .price {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .logo-image {
    width: 120px;
  }
}
