﻿
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --archive-color: #27ae60;
    --outgoing-color: #9b59b6;
    --incoming-color: #f1c40f;
    --support-color: #9b59b6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --card-bg: #fff;
    --body-bg: #f8f9fa;
    --text-color: #333;
    --text-light: #7a7a7a;
    --border-radius: 16px;
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: var(--body-bg);
    background-image: linear-gradient(120deg, #f6f7f9 0%, #e9f0f8 100%);
    color: var(--text-color);
    min-height: 100vh;
    padding: 2rem 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-title {
    font-size: 2.4rem;
    color: #111;
    margin-bottom: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

    .page-title .highlight {
        color: var(--secondary-color);
        position: relative;
    }

        .page-title .highlight:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 8px;
            background-color: rgba(52, 152, 219, 0.15);
            bottom: 5px;
            z-index: -1;
            border-radius: 10px;
        }

    .page-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #111, var(--secondary-color), var(--support-color), #111);
        border-radius: 2px;
        animation: shimmer 2.5s infinite;
        background-size: 200% 100%;
    }

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-direction: row;
}

.profile-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px var(--shadow-color);
    padding: 2.5rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 450px;
    animation: fadeIn 0.8s ease-out forwards;
}

.developer-card {
    animation-delay: 0.1s;
}

.support-card {
    animation-delay: 0.3s;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.developer-card:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.support-card:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to left, var(--primary-color), var(--support-color));
    opacity: 0.8;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

    .profile-image:hover {
        transform: scale(1.05);
    }

.profile-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.profile-name {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.verified-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.developer-card .verified-badge {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
}

.support-card .verified-badge {
    background: linear-gradient(135deg, var(--support-color), #8e44ad);
}

.profile-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.developer-card .profile-subtitle {
    color: var(--secondary-color);
}

.support-card .profile-subtitle {
    color: var(--support-color);
}

.profile-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.developer-icon {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.support-icon {
    background: linear-gradient(135deg, var(--support-color), #8e44ad);
    box-shadow: 0 3px 10px rgba(155, 89, 182, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

    .social-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.telegram {
    background: linear-gradient(135deg, #0088cc, #0099e6);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.facebook {
    background: linear-gradient(135deg, #3b5998, #4c70ba);
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.3);
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

    .back-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    }

    .back-button:active {
        transform: translateY(-1px);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-container {
        gap: 2rem;
    }
}

@media (max-width: 850px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .profile-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .profile-card {
        padding: 1.5rem;
        max-width: 400px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .profile-name {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .contact-item {
        font-size: 0.95rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}


