.load-more-btn {
    background-color: #1d906e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover {
    background-color: #070b3b;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    transform: scale(1.05);
}

.animated-btn span {
    position: relative;
    z-index: 2;
}

.animated-btn::before {
    content: "";
    background: rgba(255,255,255,0.2);
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    transform: skewX(-20deg);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -75%; }
    50% { left: 125%; }
    100% { left: 125%; }
}

.navbar-brand {
    position: relative;
    display: flex;
    align-items: center;
    max-height: 100px; /* or your desired height */
    padding: 5px 10px;
}

.navbar-brand img {
    width: 116px;
    height: auto;
    object-fit: contain;
}
/*********gallery****************/
.gallery-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    object-fit: cover;
    height: 200px;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
