/* additional custom styles */
@layer utilities {
    .text-ltr-placeholder::placeholder {
        direction: ltr;
        text-align: right; 
    }
}

html[dir="ltr"] .text-ltr-placeholder {
    text-align: left;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* start hidden */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #ebf1e8;
}
::-webkit-scrollbar-thumb {
    background: #263e26;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e4c350;
}
