.hero h1{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 34px;
    line-height: 66px;
}
.hero{
    width: 100%;
    height: 70vh;
    background: no-repeat center center/cover;
    text-align: center;
    color: #FFFFFF;
    min-height: 502px;
    margin: 0 0 40px 0;
    position: relative;
}

.hero p{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 66px;
}

.hero-section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 70vh;
}


.container .image-container{
    columns:3 250px;
    gap:15px;
  }
  
  .container .image-container img{
    margin-bottom: 10px;
    border-radius: 5px;
    width: 100%;
  }
  .messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 300px;
    animation: slide-in 0.5s ease-out;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #069e69;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.alert.success .fa {
    margin-right: 10px;
    color: #1aee92;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


@media (max-width: 768px) {
    .gallery-title {
        font-size: 2em;
    }
}