/* abut */
html,
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f9f9f9 0%, #ececec 100%);
    font-family: Arial, sans-serif;
}

.about-page { /* */
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* intro of company */
.company-about {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.company-about h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.company-about p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* ""projects"" */
.project-section {
    max-width: 1100px;
    margin: 0 auto 60px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #2a7d2e;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* me */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* me x2 */
.member-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid #00c6ff;
}

.member-card .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    background: linear-gradient(270deg, red, orange, red);
    background-size: 400% 400%;
    animation: moveGradient 8s linear infinite;
}

.member-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ece3d0;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-info {
    text-align: center;
}

.member-info h3 {
    margin: 10px 0 5px;
    font-size: 22px;
    color: #333;
}

.member-info .role {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

@media (max-width: 600px) {
    .company-about h1 {
        font-size: 28px;
    }

    .member-card {
        padding: 20px;
    }
}

.indexLoaderimo {
    width: 84px;
    height: 84px;
    position: relative;
    overflow: hidden;
}

.indexLoaderimo:before,
.indexLoaderimo:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FFF;
    transform: translate(-50%, 100%) scale(0);
    animation: push 2s infinite ease-in;
}

.indexLoaderimo:after {
    animation-delay: 1s;
}

@keyframes push {
    0% {
        transform: translate(-50%, 100%) scale(1);
    }

    15%,
    25% {
        transform: translate(-50%, 50%) scale(1);
    }

    50%,
    75% {
        transform: translate(-50%, -30%) scale(0.5);
    }

    80%,
    100% {
        transform: translate(-50%, -50%) scale(0);
    }
}

.company-about .highlight {
    background: linear-gradient(90deg, #00FF00, #27A661, #4D4DC2, #4D4DC2, #27A661, #00FF00);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGradient 8s ease infinite;  
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 400% 50%;
    } 
}

.member-card .greenbadge {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    background: linear-gradient(270deg, green, rgb(0, 255, 0), green);
    background-size: 400% 400%;
    animation: moveGradient 8s linear infinite;
}

.member-card .bluegay {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    background: linear-gradient(270deg, blue, rgb(15, 150, 208), blue);
    background-size: 400% 400%;
    animation: moveGradient 8s linear infinite;
}

.member-card .purpletrans {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    background: linear-gradient(270deg, #770737, blue, purple, blue, #770737);
    background-size: 400% 400%;
    animation: moveGradient 15s linear infinite;
}