/* Custom CSS for VKT Logistics */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for the sticky 80px top navbar */
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.kinetic-gradient {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.8) 100%);
}

.hero-overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.4) 100%);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.nav-item-active {
    border-bottom: 2px solid #002b5b;
    color: #001736;
    font-weight: 700;
    padding-bottom: 4px;
}

/* Custom animation curve for mobile slide-over */
#mobile-menu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.bento-item {
    background: white;
    border: 1px solid #E6E8EA;
    transition: all 0.3s ease;
}
.bento-item:hover {
    border-color: #002b5b;
}

/* WhatsApp Floating Button Position */
.whatsapp-float {
    position: fixed;
    bottom: 80px !important;
    right: 24px;
    z-index: 60;
}

/* Infinite Marquee Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: scroll 40s linear infinite;
    display: flex;
    width: max-content;
}

.animate-marquee:hover {
    animation-play-state: paused;
}
