/* Profile Section */
  .main-profile-container {
            background-color: #e5eaec;
            padding-top:170px;
            padding-bottom:40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-family: Arial, sans-serif;
        }

        .main-profile-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }

        .main-profile-card {
            max-width: 600px;
            width: 100%;
            background: #5c5e60;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .main-profile-social {
            display: flex;
            align-items: center;
            background: #d6d6d6;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
        }

        .main-profile-social i {
            font-size: 20px;
            width: 30px;
            text-align: center;
        }

        .main-profile-social:hover {
            background: #6c757d;
            color: white;
        }

        .main-profile-card-btn {
            width: 60%;
            padding: 12px;
            font-size: 16px;
            border-radius: 50px;
        }