/* Custom CSS Enhancements for RK NAGA Website */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #1e40af;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* Glassmorphism utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-panel-dark {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 3D Book Tilt Effect on Hover */
.book-tilt {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.book-tilt:hover {
    transform: rotateY(-12deg) rotateX(6deg) scale(1.03);
}

/* Custom Animation Keyframes */
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* FAQ Active Accordion Styling */
.faq-item.active {
    border-color: #1e40af;
    box-shadow: 0 10px 25px -5px rgba(30, 64, 175, 0.1);
}

.faq-item.active .faq-toggle {
    color: #1e40af;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
    color: #1e40af;
}

/* Counter animation styles */
.counter {
    transition: all 0.5s ease-out;
}
