.gallery-section {
    display: flex;
    overflow: hidden; /* Hide overflow to prevent scrolling */
    padding: 110px;
    position: relative; /* Position relative for absolute positioning of images */
}
.g_heading{
    color: #ff5f09;
  font-size: 24px;
    margin-bottom: 15px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    margin-left: 20px; /* Space between images */
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    position: relative; /* Needed for absolute positioning */
    
}

.gallery-item img {
    border: 2px solid black;
    width: 100%;
    height: auto;
}

.gallery-item h4 {
    padding: 15px;
    font-size: 1.2em;
}

/* Keyframes for the marquee effect */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-container {
    display: flex;
    animation: marquee 20s linear infinite; /* Desktop duration */
    position: absolute;
    top: 0;
    left: 0; /* Start from the left edge of the parent container */
    width: 100%; /* Occupy full width of the parent */
    white-space: nowrap; /* Prevent items from wrapping */
}

@media (max-width: 768px) {
    .gallery-item {
       /* width: 80%;
        margin-left: 10px;*/
        display:none;
    }
    .gallery-item img{
        display:none;
    }
    .g_heading{
        display:none;
    }
    
}