* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('dd.jpg');
    background-size: cover;
    background-position: center;
    animation: move-background 10s linear infinite;
}

@keyframes move-background {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

header .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fefeff;
}

header nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.cta-button {
    background-color: #f79c42;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 4rem 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 5px;
    padding: 2rem;
    width: 30%;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-card img,
.service-card .service-video {
    width: 100%;
    height: auto;
    margin-top: 1rem;
}

.ats-section .ats-images {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.ats-section .ats-images .small-image {
    width: 30%;
    border-radius: 5px;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}
