:root {
    --primary-color: #0568c3;
    --primary-dark: #0556a3;
    --text-color: #333;
    --bg-color: #fff;
    --section-padding: 5rem;
}
@keyframes profile__animate {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }

    50% {
        border-radius: 30% 60% 30% 40%/50% 60% 30%
    }

    to {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
    scroll-margin-top: 100px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.company-intro p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.headshot {
    width: 200px;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: profile_animate 8s ease-in-out infinite 1s;
}

.headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bio .title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio p {
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: left;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.client {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

.project-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--primary-dark);
}

/* Contact Section */
#contact {
    text-align: center;
    background-color: #f8f9fa;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }

    .headshot {
        width: 180px;
        height: 180px;
    }
}

@media screen and (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        height: auto;
        padding: 1rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--bg-color);
        z-index: 1000;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .logo {
        margin-bottom: 1rem;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    #about {
        padding-top: 140px;
    }

    h2 {
        font-size: 2rem;
    }

    .company-intro p {
        font-size: 1.1rem;
    }

    .team-members {
        gap: 2rem;
    }

    .headshot {
        width: 160px;
        height: 160px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-content {
        padding: 0.75rem;
    }

    .nav-links {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .headshot {
        width: 140px;
        height: 140px;
    }

    .bio h3 {
        font-size: 1.25rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .contact-link {
        font-size: 1.25rem;
    }
}