/* ===== DEVELOPERS PAGE ===== */

.developers-hero {
    text-align: center;
    padding: 120px 20px 60px;
}

.developers-hero h1 {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 10px;
}

.developers-hero p {
    color: #a8c7ff;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARD GRID ===== */
.developers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    padding: 50px 20px 100px;
}

.developer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 280px;
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.developer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
}

.developer-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: contain;
}

.developer-card h2 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.developer-card p {
    color: #c6c6c6;
    font-size: 0.95rem;
    margin: 5px 0;
    line-height: 1.4;
}

.developer-card p:first-of-type {
    color: #7fb0ff;
    font-weight: 500;
}

.developer-card .socials {
    margin-top: 10px;
}

.developer-card .socials a {
    display: inline-block;
    margin: 5px 8px;
    color: #7fb0ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.developer-card .socials a:hover {
    color: #fff;
}

/* ===== CTA ===== */
.cta {
    text-align: center;
    padding: 80px 20px;
    background: transparent; /* fully transparent */
    border: none; /* remove faint divider line */
}

.cta h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 25px;
}

.cta .btn {
    display: inline-block;
    background: #1971ff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .25s ease;
}

.cta .btn:hover {
    background: #3f8cff;
}

