* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Section */
.hero {
    background-image: url('../img/testVendor4.jpg');
    background-size: cover;
    background-position: center;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5em;
    margin: 0;
}


/* service section */
.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.service-card h3 {
    margin: 15px 0;
    font-size: 1.5em;
}

.service-card p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.service-card a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.service-card a:hover {
    text-decoration: underline;
}

/* past event section */
.container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px;
}

.content {
    max-width: 40%;
}

.content h2 {
    font-size: 32px;
    color: #333;
}

.content h3 {
    font-size: 20px;
    color: #555;
    margin-top: 20px;
}

.content p {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
}
.slideshow-container {
    width: 100vw; /* Full width */
    max-width: 100%; /* Ensure it spans the full viewport width */
    max-height: 90vh; /* Reduce height */
    position: relative;
    margin: auto;
    overflow: hidden; /* Hide overflow if needed */
}


  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
    background-color: rgba(0,0,0,0.8);
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color: #fff;
    font-size: 20px;
    padding: 35px 12px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100px;
    text-align: center;
    background-color: #000;
    opacity: 70%;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #000;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  /* our client */

  .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 items per row */
    grid-gap: 1rem;
    justify-content: center; /* Center the grid horizontally */
    margin: auto; /* Center the grid in its container */
    max-width: 1000px; /* Optional: Set max width for grid container */

    > div {
        background: #fff;
        padding: 1rem;
        display: grid;
        place-items: center;

        &::before {
            content: "";
            display: block;
            padding-bottom: 100%;
            grid-area: 1 / 1 / 2 / 2;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            grid-area: 1 / 1 / 2 / 2;
        }
    }
}

