/* Gallery Section Styles */
.gallery-section {
    width: 100%;
    padding: 20px;
    overflow: hidden;
    /* background-color: aqua; */
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    /* background-color: #007bff; */

}

.circulo {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: #ffb9bc93; /* Subtle blue tint */
    border-radius: 50%;
    transform: scale(0); /* Start small */
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: -1; /* Ensure it stays behind the text */
}

.filter-btn.active .circulo {
    transform: scale(1);
    opacity: 1;
    animation: moveCircle 4s linear infinite;
}


.filter-btn:not(.active) .circulo {
    transform: scale(0); /* Shrink back */
}
@keyframes moveCircle {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(0px, -10px);
    }
    50% {
        transform: translate(0, -13px);
    }
    75% {
        transform: translate(0px, -5px);
    }
    100% {
        transform: translate(0, 0);
    }
}
.filter-btn {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    margin: 10px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    overflow: hidden;
    z-index: 0;
    color: #3B0306;
    font-weight: 600;
    position: relative;
}

.filter-btn:hover{
    background-color: #ffffff;
    transform: scale(1.05);

}

.filter-btn.active {
    background-color: #5B0C10;
    color: white;
}

.image-gallery {
    max-width: 1200px;
    margin:0 auto;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    /* background-color: bisque; */
}

.gallery-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;

}

.gallery-item:hover img {
    transform: scale(1.1);
}


html,body
{
    overflow-x: hidden;
}

/* Call To Action Section Styles */
.cta-section {
    /* padding: 40px; */
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background: linear-gradient(135deg, #D2E1F6 50%, #ffffff 50%);
}

.cta-content {
    flex: 1;
    padding: 0px 40px;
    background-color: #D2E1F6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


.cta-content p {
    font-size: 1rem;
    color: #0E2340;
    margin-bottom: 20px;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.cta-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        background: none;
    }

    .cta-content {
        /* background: #e0f7fa; */
        text-align: left;
        padding: 30px;
    }

    .cta-image {
        padding: 20px;
    }
}