html{
    scroll-behavior: smooth;
}
.nav-link{
    transition: color 0.3s ease;
}
.nav-link:hover{
    color: #ffc107 !important;
}
.bg-cover{
    background-size: cover;
    background-position: center;
}
.shadow-gold{
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.5);
}
.btn-warning:hover{
    background-color: #e0a800 !important;
}
.min-vh-100{
    min-height: 100vh !important;
}
.service-card{
    background-color: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.25);
}
.service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.25);
}

.image-container{
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.image-container img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.image-container::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* adjust opacity here (0.3–0.6) */
    z-index: 1;
}
.service-card:hover .image-container img {
    transform: scale(1.1);
}
.service-title{
    position: absolute;
    bottom: 15px;
    left: 20px;
    display: flex;
    align-items: center;
    color: #fff;
    z-index: 2;
}
.service-title .icon{
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.5);
}
.text-secondary{
    color: #aaa !important;
}
.service-img{
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
.arrow-move{
    display: inline-block;
    animation: moveArrow 1.2s infinite ease-in-out;
}

@keyframes moveArrow{
    0%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(8px);
    }
    100%{
        transform: translateX(0);
    }
}
.social-fixed{
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1050;
}
.social-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
/* WhatsApp */
.social-icon.whatsapp{
    background-color: #25D366;
}
/* Facebook */
.social-icon.facebook{
    background-color: #1877F2;
}
/* Hover effects */
.social-icon:hover{
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.bg-black-nav{
    background-color: #090909 !important;
}
.pointer{
    cursor: pointer;
}
@media (max-width: 767.98px) {
    .logo-mobile-center {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}