/* /public/assets/css/style.css */

/* Custom Scrollbar for modern feel */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #070709;
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ffcc00;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float-delayed {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out 2s infinite;
}

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

.animate-marquee {
    animation: marquee 55s linear infinite;
}
.animate-marquee:hover {
    animation-play-state: paused;
}

/* Dark Glassmorphism */
.glass-panel-dark {
    background: rgba(17, 17, 21, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-nav {
    background: rgba(7, 7, 9, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Services Scrollspy Active State Glow */
.service-sidebar-item.active {
    color: #ffcc00;
    border-left-color: #ffcc00;
    background: rgba(255, 204, 0, 0.03);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

/* Hover Glow Effect */
.hover-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-glow:hover {
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.15);
    transform: translateY(-4px);
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffcc00, #ffe680);
    z-index: 100;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Hide Scrollbar for Horizontal Scroller */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Zoom Hover for masonry */
.masonry-item img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.masonry-item:hover img {
    transform: scale(1.05);
}

/* Custom Text Gradient */
.text-gradient-yellow {
    background: linear-gradient(135deg, #ffffff 30%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
