
/* CSS for animation */
@keyframes slideInLeft {
from {
    opacity: 0;
    transform: translateX(-100%);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}

/* Apply animation to anim class */
.anim {
animation: slideInLeft 3s ease forwards; /* Animation duration, timing function, and fill mode */
}

/* CSS for animation */
@keyframes bounce {
0%, 100% {
    transform: translateX(0);
}
50% {
    transform: translateX(5px);
}
}

.my-anim-right {
    animation-name: slideFromRight;
    animation-duration: 2s; /* Change this to adjust the duration */
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes slideFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.my-anim-left {
    animation-name: slideFromLeft;
    animation-duration: 2s; /* Change this to adjust the duration */
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.my-anim {
    animation-name: slideFromBottom;
    animation-duration: 2s; /* Change this to adjust the duration */
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes slideFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* CSS for animation */
@keyframes shake {
  0% { transform: translateY(-5px); }
  50% { transform: translateY(5px); }
  100% { transform: translateY(-5px); }
}

/* Apply animation to my-shake class */
.my-shake {
  animation: shake 1.5s infinite;
}

/* Shake background from here */
@keyframes sk {
    0% { transform: translate(0, 0); }
    10%, 30%, 50%, 70%, 90% { transform: translate(-5px, 0); }
    20%, 40%, 60%, 80% { transform: translate(5px, 0); }
    100% { transform: translate(0, 0); }
}

.my-shake-bg {
    /* background-image: url('path/to/your/image.jpg'); */
    animation: sk 1s infinite;
}

.jobs-class {
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for border color and box shadow */
}

.jobs-class:hover {
    border: 2px solid #000; /* Change #000 to the desired border color */
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add shadow effect on hover */
}