/* gallery css start */

.gallery-tabs {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin: 30px auto 40px auto;
    max-width: 900px;
    padding: 10px 0;
}

.gallery-tabs .nav-link {
    color: #333;
    font-weight: 500;
    border: none;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
}

.gallery-tabs .nav-link.active,
.gallery-tabs .nav-link:hover {
    background: #f3e0c3;
    color: #c6076f;
}

.gallery-section {
    padding: 40px 0 30px 0;
    background: linear-gradient(135deg, #fff 0%, #f3e0c3 100%);
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
    text-align: center;
}

.gallery-btn {
    display: block;
    margin: 18px auto 0 auto;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-weight: 600;
    transition: background 0.2s;
}

.gallery-btn:hover {
    background: #c6076f;
    color: #fff;
}

.result-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding: 0;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 24px;
    overflow: hidden;
    min-height: unset;
    display: block;
}

.result-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 24px rgba(198, 7, 111, 0.1);
}

.result-img {
    width: 100%;
    padding: 10px;
    height: auto;
    display: block;
    border-radius: 12px;
    margin: 0;
    background: #fff;
    object-fit: contain;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 1.3rem;
    }
    .result-img {
        max-width: 100%;
        height: auto;
    }
    .gallery-section {
        padding: 25px 0 20px 0;
    }
    .result-card {
        min-height: unset;
    }
}

.modal-close-x {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1056;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #c6076f;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.modal-close-x:hover {
    background: #f3e0c3;
    color: #991b95;
}

@media (max-width: 768px) {
    .modal-close-x {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }
}

.gallery-action-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
}

.gallery-action-btns .gallery-btn,
.gallery-action-btns .whatsapp-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 10px 0;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    text-decoration: none;
    display: block;
}

.gallery-action-btns .gallery-btn {
    background: linear-gradient(45deg, #c6076f, #991b95);
    color: #fff;
}

.gallery-action-btns .gallery-btn:hover {
    background: linear-gradient(45deg, #991b95, #c6076f);
    color: #fff;
}

.gallery-action-btns .whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.gallery-action-btns .whatsapp-btn:hover {
    background: #1ebe57;
    color: #fff;
}

@media (max-width: 768px) {
    .gallery-action-btns {
        flex-direction: column;
        gap: 10px;
    }
    .gallery-action-btns .gallery-btn,
    .gallery-action-btns .whatsapp-btn {
        font-size: 0.98rem;
        padding: 10px 0;
        max-width: 95vw;
    }
}


/* gallery css end */


/* Logo Section Styles */

.logo-section {
    padding: 15px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-logo {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-section {
        padding: 10px 0;
    }
    .site-logo {
        max-height: 50px;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    position: relative;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.carousel-control-next-icon::after {
    transform: translate(-50%, -50%) rotate(45deg);
}