
        :root {
            --primary-color: #4e54c8;
            --secondary-color: #8f94fb;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        body {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            font-family: 'Vazirmatn', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            padding: 40px 20px;
            margin: 0;
        }
        
        .profile-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }
        
        .profile-header {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            padding: 40px 30px 50px;
            position: relative;
            text-align: center;
            color: white;
        }
        
        .profile-image1 {
            width: 250px;
            height: 250px;
			background-size: cover;
            border-radius: 20%;
            border: 5px solid white;
            background-color: #e9ecef;
            background-image: url(img/user1.jpg);
            background-position: center;
            background-repeat: no-repeat;
            margin: 0 auto;
            position: relative;
            top: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			
        }
        .profile-image2 {
            width: 250px;
            height: 250px;
			background-size: cover;
            border-radius: 20%;
            border: 5px solid white;
            background-color: #e9ecef;
            background-image: url(img/user2.jpg);
            background-position: center;
            background-repeat: no-repeat;
            margin: 0 auto;
            position: relative;
            top: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			
        }
.profile-image3 {
            width: 250px;
            height: 250px;
			background-size: cover;
            border-radius: 20%;
            border: 5px solid white;
            background-color: #e9ecef;
            background-image: url(img/user3.jpg);
            background-position: center;
            background-repeat: no-repeat;
            margin: 0 auto;
            position: relative;
            top: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			
        }
.profile-image4 {
            width: 250px;
            height: 250px;
			background-size: cover;
            border-radius: 20%;
            border: 5px solid white;
            background-color: #e9ecef;
            background-image: url(img/user4.jpg);
            background-position: center;
            background-repeat: no-repeat;
            margin: 0 auto;
            position: relative;
            top: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			
        }
.profile-image5 {
            width: 250px;
            height: 250px;
			background-size: cover;
            border-radius: 20%;
            border: 5px solid white;
            background-color: #e9ecef;
            background-image: url(img/user5.jpg);
            background-position: center;
            background-repeat: no-repeat;
            margin: 0 auto;
            position: relative;
            top: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			
        }


        .profile-body {
            padding: 70px 30px 40px;
            background: var(--light-bg);
        }
        
        .profile-info {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .profile-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .profile-position {
            font-size: 18px;
            color: #6c757d;
            margin-bottom: 20px;
        }
        
        .contact-info {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 10px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background-color: rgba(78, 84, 200, 0.1);
            transform: translateX(5px);
        }
        
        .contact-item:last-child {
            margin-bottom: 0;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            color: white;
            font-size: 20px;
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-title {
            font-weight: 600;
            margin-bottom: 3px;
            color: var(--primary-color);
        }
        
        .contact-value {
            color: #6c757d;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 576px) {
            .profile-header {
                padding: 30px 20px 80px;
            }
            
            .profile-image {
                width: 120px;
                height: 120px;
            }
            
            .profile-body {
                padding: 60px 20px 30px;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-left: 0;
                margin-bottom: 10px;
            }
        }
    