/* Meet the Team Page Styles */
.team-section {
    padding: 3rem 1rem 2rem;
    background: #0a0a0a;
    text-align: center;
}

.team-section h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #090979, #ffffff, #ffffff);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.team-profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.profile-card {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #2c2c83bf;
    padding: 1.5rem 1rem;
    width: 320px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-photo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #090979;
}

.profile-card h2 {
    margin: 0.5rem 0 0.2rem 0;
    font-size: 1.3rem;
    color: #ffffff;
}

.profile-card h3 {
    margin: 0 0 0.7rem 0;
    font-size: 1rem;
    color: #090979;
    font-weight: 500;
}

.bio {
    font-size: 0.98rem;
    color: #a0a0a0;
}

.join-team-section {
    background: #0a0a0a;
    padding: 2rem 1rem 2.5rem;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.join-team-section h2 {
    background: linear-gradient(100deg, #090979, #ffffff, #090979);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
}
.join-team-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-col-full {
    flex-basis: 100%;
}

.join-team-form label {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: left;
    font-size: 0.95rem;
}

.join-team-form input,
.join-team-form textarea {
    padding: 0.8rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.join-team-form input::placeholder,
.join-team-form textarea::placeholder {
    color: #a0a0a0;
}

.join-team-form input:focus,
.join-team-form textarea:focus {
    border-color: #090979;
    background-color: #1a1a1a;
}

.submit-btn {
    background: #090979;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.9rem 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ffffff;
    color: #090979;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-section h1 {
        font-size: 2.5rem;
    }

    .team-profiles {
        gap: 1.5rem;
    }

    .profile-card {
        width: 280px;
        padding: 1.2rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 2rem 1rem 1.5rem;
    }

    .team-section h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .team-profiles {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .profile-card {
        width: 100%;
        max-width: 280px;
        padding: 1rem 0.8rem;
    }

    .profile-photo {
        width: 90px;
        height: 90px;
        margin-bottom: 0.8rem;
    }

    .profile-card h2 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .profile-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .bio {
        font-size: 0.9rem;
    }

    .join-team-section {
        padding: 1.5rem 1rem 2rem;
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }

    .join-team-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .join-team-form {
        gap: 0.8rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .join-team-form label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .join-team-form input,
    .join-team-form textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem 0;
        font-size: 0.95rem;
        margin-top: 0.3rem;
    }
}

@media (max-width: 600px) {
    .team-section {
        padding: 1.5rem 0.8rem 1rem;
    }

    .team-section h1 {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }

    .team-profiles {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .profile-card {
        max-width: 250px;
        padding: 0.9rem 0.7rem;
    }

    .profile-photo {
        width: 80px;
        height: 80px;
    }

    .bio {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 1.2rem 0.6rem 0.8rem;
    }

    .team-section h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .team-profiles {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .profile-card {
        width: 100%;
        max-width: 100%;
        padding: 0.8rem 0.6rem;
    }

    .profile-photo {
        width: 70px;
        height: 70px;
        margin-bottom: 0.6rem;
        border-width: 2px;
    }

    .profile-card h2 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .profile-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .bio {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .join-team-section {
        padding: 1.2rem 0.6rem 1.5rem;
        margin: 0 auto 1rem;
    }

    .join-team-section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .join-team-form {
        gap: 0.7rem;
    }

    .form-row {
        gap: 0.7rem;
    }

    .join-team-form label {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .join-team-form input,
    .join-team-form textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.7rem 0;
        font-size: 0.9rem;
    }
}
.logo-text{
    font-size: 9.2px;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(45deg, #090979, #ffffff, #ffffff);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title{
        background: linear-gradient(100deg, #090979, #090979, #ffffff, #090979);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}