﻿   :root {
            --primary: #6c63ff;
            --primary-dark: #564fcc;
            --dark: #2d3436;
            --light: #f5f6fa;
            --white: #ffffff;
            --gray: #7f8c8d;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.1);
            --transition: all 0.2s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
body {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

        /* Navigation */
        .navbar {
            background: var(--white);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--shadow);
            border-radius: 16px;
            margin: 15px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.2rem;
        }

        .navbar-brand img {
            height: 30px;
            margin-right: 10px;
        }

        .navbar-nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: var(--transition);
        }

        .nav-link:hover {
            background-color: rgba(108, 99, 255, 0.1);
            color: var(--primary-dark);
        }

        /* Main Content */
        .container {
            max-width: 900px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            width: 100%;
            margin-top: 60px;                            
         
             margin-top:180px;/* This centers content horizontally *
        }

        /* Profile Card */
        .profile-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 1.5rem;

            box-shadow: var(--shadow-lg);
        }

        .profile-header {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .photo-section {
            width: 120px;
            height: 120px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid var(--white);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            flex-shrink: 0;
        }

        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .profile-image.show {
            display: block;
        }

        .default-icon {
            font-size: 2.5rem;
            color: var(--white);
        }

        .profile-info {
            flex: 1;
        }

        .profile-label {
            display: block;
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 0.25rem;
        }

        .profile-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .profile-bio {
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .profile-website {
            margin-bottom: 0.5rem;
        }

        .profile-website a {
            color: var(--primary);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-weight: 500;
            gap: 8px;
        }

        /* Social Links Section */
        .links-heading {
            margin: 2rem 0 1.5rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* Social Links Container */
        .social-links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 1.5rem;
        }

        .social-link-item {
            display: inline-block;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            background: var(--white);
            color: var(--dark);
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
            gap: 10px;
            min-width: 120px;
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            background: var(--primary);
            color: var(--white);
        }

        .social-icon:hover i {
            color: var(--white) !important;
        }

        .social-icon i {
            font-size: 1.1rem;
            transition: var(--transition);
        }

        /* Platform Colors */
        .fa-whatsapp { color: #25D366; }
        .fa-facebook-f { color: #1877F2; }
        .fa-instagram { color: #E4405F; }
        .fa-twitter { color: #1DA1F2; }
        .fa-x-twitter { color: #000000; }
        .fa-linkedin-in { color: #0077B5; }
        .fa-youtube { color: #FF0000; }
        .fa-telegram { color: #0088CC; }
        .fa-github { color: #333333; }
        .fa-spotify { color: #1DB954; }
        .fa-tiktok { color: #000000; }
        .fa-pinterest { color: #E60023; }
        .fa-snapchat { color: #FFFC00; }
        .fa-globe { color: var(--primary); }
        .fa-envelope { color: #EA4335; }
        .fa-phone { color: #34A853; }

        /* Compact Visitor Counter */
     .visitor-count {
            background: #222;
            color: white;
            border-radius: 8px;
            padding: 6px 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            transition: var(--transition);
            border: 1px solid #444;
            box-shadow: var(--shadow);
            margin: 1rem auto 0;
            width: fit-content;
        }

        .visitor-count:hover {
            cursor: pointer;
            background: #8B4513;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        .visitor-count i {
            font-size: 0.7rem;
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .container {
                padding: 0 1rem;
            }

            .profile-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .profile-info {
                text-align: center;
            }

            .navbar {
                padding: 1rem;
            }

            .navbar-nav {
                gap: 1rem;
            }

            .social-links-container {
                gap: 10px;
            }

            .social-icon {
                padding: 0.6rem 1rem;
                min-width: 100px;
                font-size: 0.9rem;
            }
        }