body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Font Awesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');


/* Lightbox Styling (Unchanged) */





.portfolio-item:hover .portfolio-image {
transform: scale(1.1);
}

/* Lightbox */
.lightbox {
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}

.lightbox-content {
max-width: 90%;
max-height: 90%;
margin: auto;
display: block;
}

#close-lightbox {
position: absolute;
top: 10px;
right: 20px;
font-size: 40px;
color: white;
cursor: pointer;
}

@media screen and (max-width: 1440px) {
    .portfolio-section {
        padding: 30px 50px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1280px) {
    .portfolio-section {
        padding: 30px 20px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1140px) {
    .portfolio-section {
        padding: 30px 160px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .portfolio-section {
        padding: 30px 20px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .portfolio-section {
        padding: 30px 10px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .portfolio-section {
        padding: 30px 5px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .portfolio-item {
        width: 550px; /* Larger width for container */
        height: 350px; /* Larger height for container */
    }
}

@media screen and (max-width: 630px) {
    nav .menu{
        display: none;
    }

    .product-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 20px 5px;
    }

    .product-card-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .portfolio-section {
        padding: 30px 5px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .portfolio-item {
        width: 450px; /* Larger width for container */
        height: 300px; /* Larger height for container */
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item {
        width: 350px; /* Larger width for container */
        height: 250px; /* Larger height for container */
    }
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 345px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item {
        width: 300px; /* Larger width for container */
        height: 200px; /* Larger height for container */
    }
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Responsive Design for Products */
/* @media (max-width: 768px) {
    .product-card {
        flex-basis: 48%;
    }
}

@media (max-width: 480px) {
    .product-card {
        flex-basis: 100%;
    }
} */


/* Event section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .card-wrapper {
    display: flex;
    justify-content: center; /* Center the card horizontally */
    align-items: center;     /* Center the card vertically */
    height: 60vh;    
    flex: 1 1 45%; /* Two cards in a row, adjust as needed */
    max-width: 45%;        /* Increase the height of the container */
  }

  @media (max-width: 768px) {
  .card-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
  
  .blog-card {
    width: 700px;            /* Increase the width of the card */
    height: 400px;           /* Increase the height of the card */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 12px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .card-header {
    padding: 20px;
    background-color: #009688;
    color: white;
  }
  
  .card-title {
    font-size: 20px;
    margin: 0;
  }
  
  .card-images {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    width: 100%;
    margin-bottom: 8px;
    border-radius: 4px;
  }
  
  .card-images img {
    width: 33%;
    border-radius: 4px;
    object-fit: cover;
    height: 130px; /* Increase the height of images */
  }
  
  .card-images img:hover {
    opacity: 0.8;
  }
  .card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

  
  a {
    text-decoration: none;
  }
  