   .gallery-heading {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding: 10px 0;
    animation: fadeIn 1s ease-in-out;
    background-color:#dda15e;
}

/* Heading Style */
.gallery-heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #333;
    letter-spacing: 1px;
}

/* Caption Style */
.gallery-heading p {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* Decorative bottom line */
.gallery-heading::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #f8c537);
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}