/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #82b1db, #00f2fe);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    background: #003366;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}

.navbar .logo {
    font-size: 24px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Design Team Container */
.design-team-container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Profile Section */
.team-resume {
    text-align: center;
}

.team-resume .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #003366;
    margin-bottom: 15px;
}

.profile-details ul {
    text-align: left;
    padding: 10px 20px;
}

.portfolio-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.portfolio-item {
    width: 100%;
    max-width: 300px;
    background: #f4f4f4;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.portfolio-item a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.portfolio-item a:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonials {
    margin: 20px 0;
}

.testimonials .testimonial {
    text-align: center;
    margin-bottom: 15px;
}

.testimonials cite {
    font-size: 14px;
    color: #555;
}

/* Footer */
footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 10px;
}