*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* Basic Styling */
body {
  font-family: cursive;
  line-height: 1.6;
  /* background-color: #eb247e16; */
}

header .bar-limit{
    background-color: #EB247E;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

header .bar{
    background-color: #EB247E;
    display: flex;
    margin: 0px auto;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    padding: 30px 80px;
}
header ul{
    list-style: none;
    display: flex;
    gap: 20px;
}
header nav a{
    text-decoration: none;
    color: black;
    padding: 12px;
    border-radius: 6px;
}

.bar a:hover{
    background: black;
    color: white;
}


.menu-toggle{
    display: none;
}

/* chage justfy to around and add max width */
.service-showcase {
  display: flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 20px;
  margin: 10px 0px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.2s ease;
  }

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

:root {
  --cycle-speed: 5s;
}

.imgbox:hover {
  --cycle-speed: 2s;
}
  
.imgbox {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.imgbox .img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(4px);
  animation: dissolve-cycle var(--cycle-speed) infinite steps(1, end);
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.imgbox .img:nth-child(1) { animation-delay: 0s; }
.imgbox .img:nth-child(2) { animation-delay: calc(var(--cycle-speed) / 3); }
.imgbox .img:nth-child(3) { animation-delay: calc(var(--cycle-speed) * 2 / 3); }

@keyframes dissolve-cycle {
  0% {
    opacity: 1;
    filter: blur(0px);
  }
  33.33% {
    opacity: 0;
    filter: blur(6px);
  }
  100% {
    opacity: 0;
    filter: blur(6px);
  }
}

.tag-head{
  text-align: center;
  color: rgb(190 24 93 / var(--tw-text-opacity, 1));
}




















/* footer */

.footer {
    display: flex;
    justify-content: center;
    gap: 150px;
  background: #EB247E;
  color: white;
  padding: 30px 20px;
  text-align: center;
  
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.footer-contact {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 1.1rem;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: black;
}

.footer-contact i {
  margin-right: 8px;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
.packit i{
  font-size: xx-large;
}



/* mobile */
@media (max-width: 768px) {

  .menu-toggle{
    display: block;
    font-size: 2rem;
    padding: 10px;
    color: white;
    background-color: #EB247E;
    border: none;
}

nav ul{
    display: none;
    position: absolute;
    height: 100%;
    right: 0;
    top: 124px;
    width: 100%;
    z-index: 2;
    padding: 20px;
    flex-direction: column;
    background: white;
    border-radius: 10px;
}

header .bar{
    padding: 30px 30px;
    justify-content: space-between;
}

.menu-toggle:hover{
    background-color: black;
    border-radius: 6px;
}
footer{
    display:block;
}

}



/* page 2 */
.contain-service{
  max-width: 1400px;
  margin: 10px auto;
  padding: 10px;
}
.service-show{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}