/* Orenza Healthcare Custom Styles */

/* Glass effect for the top navigation bar */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    /* backdrop-filter: blur(10px); */
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Custom modern scrollbar with your brand teal color */
::-webkit-scrollbar { 
    width: 8px; 
}
::-webkit-scrollbar-track { 
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb { 
    background: #0f766e; 
    border-radius: 4px; 
}
::-webkit-scrollbar-thumb:hover { 
    background: #0d5c56; 
}

/* Floating animation for images */
.animate-float {
    animation: float 6s ease-in-out infinite;
}
.big{
    height: 270px;
    width: 200px;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}