/* Animated text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-text {
    animation: fadeInUp 1s ease-out;
}

/* Hover effects */
.division-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Client slider animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.client-slider {
    animation: slide 20s linear infinite;
}

/* Button hover effect */
.btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Social icons hover effect */
.social-icons a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
    transform: translateY(-3px);
}

/* Animation for hero section */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-content {
    animation: fadeIn 1s ease-in;
}

.employee-card, .job-card {
    animation: fadeIn 1.5s ease-in;
}

/* Smooth Transition for Hover Effects */
a, .btn {
    transition: background-color 0.3s ease;
}

.employee-card:hover, .job-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.employee-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.employee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.employee-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
