.admin-tasks-page {
    text-align: center;
    padding-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #76b5ff, #6f91ff);
    padding: 80px 20px;
    color: #fff;
}
.hero .robot-img {
    width: 150px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Services Section */
.admin-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card i {
    font-size: 40px;
    color: #6f91ff;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: #6f91ff;
    color: white;
    padding: 50px 20px;
    border-radius: 30px 30px 0 0;
    margin-top: 50px;
}
