.banner-img {
    object-fit: cover;
}

.bg-brown {
    --bs-bg-opacity: 1;
    background-color: #7e411c;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #7e411c;
    color: aliceblue;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Square boxes */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.contact-text {
    display: inline-block;
    position: relative;
    color: #333;
    cursor: pointer;
    transition: color 0.4s, transform 0.4s;
    font-family: monospace;
    font-size: 1.5rem;
}

.contact-text::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff4081;
    transition: width 0.4s;
}

.contact-text:hover {
    color: #ff4081;
    transform: scale(1.05);
}

.contact-text:hover::after {
    width: 100%;
}

.developer-link:hover {
    color: #25D366;
    /* WhatsApp green */
    text-decoration: underline;
}

.about-img {
    width: 100%;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}
