body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #f4f6fb;
    
}

/* ===== TEAM SECTION ===== */

.team-section {
    text-align: center;
    padding: 40px 20px;
     background: #ffffff; 
}

.team-section__title {
    font-size: 40px;
    color: #0d1b3f;
    margin-bottom: 20px;
}

.team-section__subtitle {
    margin-bottom: 20px;
}

/* Buttons */

.team-section__btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: 0.3s;
}

.team-section__btn-primary {
    background: linear-gradient(45deg,#ff9f00,#ff6a00);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-section__btn-primary:hover {
    transform: translateY(-3px);
}

.team-section__btn-danger {
    background: #ff4d4d;
    color: white;
}

/* Team Container */

.team-section__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
}

/* Profile Card */

.team-section__card {
    text-align: center;
}

.team-section__img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    background: #e0e0e0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-section__img:hover {
    transform: scale(1.05);
}

.team-section__name {
    margin-top: 15px;
}

/* ===== PROFILE PAGE ===== */

.profile-header {
    text-align: center;
    padding: 40px;
}

.profile-header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.task-container {
    width: 70%;
    margin: auto;
}

.task-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.pending {
    background: #ffe5b4;
    color: #b36b00;
}

.completed {
    background: #d4edda;
    color: #155724;
}

/* ===== FORM UI ===== */

.form-box {
    width: 400px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-box input,
.form-box textarea,
.form-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
