* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: white;
    font-family: 'Inter', sans-serif;
}

.navbar {
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    overflow: hidden;
}

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

.logo-box {
    width: 40px;
    height: 40px;
    background: teal;
    color: black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    position: relative;
}

nav a.active {
    color: teal;
}

nav a.active::after {
    width: 100%;
}

nav a i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: teal;
    left: 0;
    bottom: -8px;
    transition: 0.3s;
}

nav a:hover {
    color: teal;
}

nav a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 12px 24px;
    background: teal;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* LIQUID CIRCLE MORPH ANIMATION */

.liquid-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(0, 200, 200, 0.2));
    border-radius: 35% 65% 45% 55% / 60% 40% 60% 40%;
    animation: liquidMorph 6s ease-in-out infinite;
    filter: blur(0.5px);
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0.6;
}

@keyframes liquidMorph {

    0%,
    100% {
        border-radius: 35% 65% 45% 55% / 60% 40% 60% 40%;
        background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(0, 200, 200, 0.2));
    }

    25% {
        border-radius: 60% 40% 40% 60% / 40% 60% 60% 40%;
        background: linear-gradient(225deg, rgba(0, 128, 128, 0.4), rgba(0, 150, 150, 0.25));
    }

    50% {
        border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
        background: linear-gradient(315deg, rgba(0, 128, 128, 0.35), rgba(0, 180, 180, 0.22));
    }

    75% {
        border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%;
        background: linear-gradient(45deg, rgba(0, 128, 128, 0.38), rgba(0, 200, 200, 0.2));
    }
}

.hero {
    padding: 100px 8%;
}

.tag {
    color: teal;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    max-width: 700px;
    line-height: 1.1;
}

.hero span {
    color: teal;
}

.hero-text {
    margin-top: 30px;
    max-width: 600px;
    color: #999;
    line-height: 1.8;
}

.developers-grid {
    padding: 50px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.developer-card {
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    transition: 0.3s;
}

.developer-card:hover {
    transform: translateY(-10px);
    border-color: teal;
}

.top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: teal;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.4rem;
}

.top p {
    color: #999;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.skills span {
    padding: 10px 16px;
    background: #111;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.stats h2 {
    color: teal;
}

.stats p {
    color: #888;
}

.view-btn {
    width: 100%;
    padding: 15px;
    background: teal;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
}