/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
.samim {
    font-family: 'samim' !important;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c5a47e; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b08d66; 
}
.hero-bg {
    background-color: #f3f4f6;
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Hover underline animation */
.hover-underline {
    display: inline-block;
    position: relative;
}
.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
@font-face {
    font-family: samim;
    src: url(fonts/Samim-Bold.woff);
    src: url(fonts/Samim-Bold.eot);
    src: url(fonts/Samim.woff);
    src: url(fonts/Samim.woff2);
    src: url(fonts/Samim.eot);
}
.brder-radius-50 {
    border-top-left-radius: 50% !important;
    border-top-right-radius: 50% !important;
}