/* Custom Styles */
:root {
    --hbc-blue: #0038A8;
    --hbc-red: #D52B1E;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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

/* Custom shadow */
.shadow-3xl {
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

/* Navbar scroll effect */
nav.scrolled {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Typography highlights */
.highlight-blue {
    color: var(--hbc-blue);
}

.highlight-red {
    color: var(--hbc-red);
}

/* Hide scrollbar but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Responsive Image Handling */
img {
    max-width: 100%;
    height: auto;
}

/* Selection color */
::selection {
    background: var(--hbc-blue);
    color: white;
}

/* Custom Button */
.btn-hbc-primary {
    background: linear-gradient(135deg, var(--hbc-blue) 0%, #1e40af 100%);
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hbc-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--hbc-blue);
}