/*
Custom Css
*/
/* Sticky Navbar */
.sticky-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    animation: slideDown 0.3s ease-in-out;
}

/* Smooth animation */
@keyframes slideDown {
    from {
        top: -80px;
    }
    to {
        top: 0;
    }
}

/* Body padding to avoid content jump */
body.sticky-padding {
    padding-top: 90px;
}
/* Active menu = hover jevo color */
#templatemo_main_nav a.active {
    color: #1e8dab
    font-weight: 700 !important;
    border-bottom: 4px solid #1e8dab;
}




/* ===== GLOBAL SMOOTH EFFECT ===== */
* {
    scroll-behavior: smooth;
}

/* ===== FADE + SLIDE ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== CAROUSEL TEXT ===== */
.slide-title {
    animation: fadeLeft 1s ease forwards;
}

.slide-subtitle {
    animation: fadeUp 1.2s ease forwards;
}

/* ===== CAROUSEL IMAGE ===== */
.slide-img-animate {
    animation: fadeRight 1.4s ease forwards;
}

/* ===== SECTION ANIMATION (ON SCROLL) ===== */
.animate {
    opacity: 0;
}

.animate.show {
    animation: fadeUp 1s ease forwards;
}

/* ===== CARD HOVER (PRODUCTS) ===== */
.card {
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===== BUTTON EFFECT ===== */
.btn-success {
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25,135,84,0.4);
}

/* ===== IMAGE ZOOM HOVER ===== */
img {
    transition: transform 0.5s ease;
}

img:hover {
    transform: scale(1.03);
}

/* ===== NAVBAR LINK EFFECT ===== */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1e8dab;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

