﻿body {
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.section-title {
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

    .section-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #007bff, #00d4ff);
        margin: 8px auto 0;
        border-radius: 2px;
    }

.gradient-border-card {
    position: relative;
    background: #0f0f0f;
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

    .gradient-border-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 2px;
        background: linear-gradient(90deg, #b06ab3, #4568dc, #00d4ff, #ff6ec7);
        background-size: 300% 300%;
        animation: gradientBorder 5s ease infinite;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
    }

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-border-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.gradient-border-card i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.gradient-border-card:hover i {
    transform: scale(1.2);
}

.team-img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    transition: all 0.3s ease;
}

    .team-img:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px #00d4ff;
    }
