@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* Custom styles and smooth animations for SMAT AI Edu */

body {
    font-family: 'Plus Jakarta Sans', 'Urbanist', sans-serif !important;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px -5px rgba(0, 40, 120, 0.12), 0 10px 12px -6px rgba(0, 40, 120, 0.08);
}

.hover-lift-green {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift-green:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px -5px rgba(0, 154, 68, 0.18), 0 10px 12px -6px rgba(0, 154, 68, 0.12);
}

/* Timeline Custom Elements */
.timeline-path {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: rgba(0, 40, 120, 0.1);
    z-index: 1;
}
@media(min-width: 640px) {
    .timeline-path {
        left: 24px;
    }
}

.timeline-dot {
    position: absolute;
    left: 17px;
    top: 24px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #002878;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 40, 120, 0.15);
    z-index: 2;
}
@media(min-width: 640px) {
    .timeline-dot {
        left: 21px;
    }
}

/* Custom Scrollbar for urban webapp aesthetics */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F8F8F8;
}
::-webkit-scrollbar-thumb {
    background: #AFB5C0;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #002878;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.nav-active {
    color: #009A44 !important; /* brand-accent / secondary */
    position: relative;
}

@media (min-width: 1024px) {
    .nav-active::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #009A44;
    }
}

@media (max-width: 1023px) {
    #mobile-drawer .nav-active {
        background-color: rgba(0, 154, 68, 0.08);
        border-radius: 8px;
        color: #009A44 !important;
        font-weight: 800 !important;
        display: block;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

