.navbar-light.sticky-top {
    height: 60px;
}
.wave-emoji {
    display: inline-block;
    animation: wave 1.5s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-10deg); }
    75% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}
.service-gif {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: 0.3s;
}

.service-item:hover .service-gif {
    transform: scale(1.1);
}

.feature-card {
    background: #ffffff;
    border-radius: 6px;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Smooth transition for text + icon */
.feature-card h5,
.feature-card p,
.feature-card i {
    transition: all 0.4s ease;
}

/* Hover Effect */
.feature-card:hover {
    background: #a8cf45 !important;
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Text white on hover */
.feature-card:hover h5,
.feature-card:hover p {
    color: #ffffff !important;
}

/* Icon white on hover */
.feature-card:hover i {
    color: #ffffff !important;
}
.gif-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.feature-card:hover .gif-icon {
    transform: scale(1.15);
}
.service-item:hover {
    margin-top: -10px;
    background: #a8cf45 !important;
}
.shadow-hover {
    transition: 0.3s ease;
}
.shadow-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff !important;
    }
    .navbar-toggler {
        position: relative;
        bottom: 20px; 
    }
    .cta-mobile{
        height: 40px !important;
    }
    .cta-login{
        height: 40px !important;
    }
}