/* ==========================================================================
   TungAkshar Hard Metal - Shared / Common Design System Styles
   ========================================================================== */

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.clip-path-slant {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

/* Scroll reveal animation class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent text selection */
.prevent-select {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Custom Form Input Styling */
.form-input-styled:focus {
    box-shadow: 0 4px 14px 0 rgba(0, 26, 255, 0.1);
}

/* Grid overlay pattern */
.bg-grid-pattern {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Navigation Links Active State */
.nav-link.active,
.nav-link.active:hover {
    color: #001aff;
}

.nav-link.active span {
    transform: scaleX(1);
    background-color: #001aff;
}

/* Mobile Navigation Styling & Solid Drawer Overlay */
#mobile-menu {
    background-color: #ffffff !important;
    z-index: 60 !important;
}

#mobile-menu .mobile-nav-link {
    background-color: #f8fafc;
}

.mobile-nav-link.active {
    background-color: rgba(0, 26, 255, 0.08) !important;
    border-color: rgba(0, 26, 255, 0.3) !important;
}

.mobile-nav-link.active .mobile-nav-icon-box {
    background-color: #001aff !important;
    border-color: #001aff !important;
    color: #ffffff !important;
}

.mobile-nav-link.active .mobile-nav-icon-box i {
    color: #ffffff !important;
}

.mobile-nav-link.active span {
    color: #001aff !important;
}

/* Bottom Navigation Active State */
.bottom-nav-link.active {
    color: #001aff !important;
}

/* Aspect ratio 1:1 utility */
.aspect-square {
    aspect-ratio: 1 / 1;
}

/* ==========================================================================
   Spacing Utilities (Padding & Margin Helpers)
   ========================================================================== */
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.25rem !important; }
.p-6 { padding: 1.5rem !important; }

.pt-6 { padding-top: 1.5rem !important; }
.pb-3 { padding-bottom: 0.75rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-24 { padding-bottom: 6rem !important; }
.pb-28 { padding-bottom: 7rem !important; }

.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }

/* ==========================================================================
   Responsive Breakpoint Utilities (1024px Boundary)
   ========================================================================== */
@media (min-width: 1024px) {
    .lg\:flex {
        display: flex !important;
    }
    .lg\:hidden {
        display: none !important;
    }
    .lg\:justify-between {
        justify-content: space-between !important;
    }
    .lg\:justify-center {
        justify-content: center !important;
    }
}


